Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/sun/security/provider/MD5.java
38830 views
/*1* Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.security.provider;2627import java.util.Arrays;2829import static sun.security.provider.ByteArrayAccess.*;3031/**32* The MD5 class is used to compute an MD5 message digest over a given33* buffer of bytes. It is an implementation of the RSA Data Security Inc34* MD5 algorithim as described in internet RFC 1321.35*36* @author Chuck McManis37* @author Benjamin Renaud38* @author Andreas Sterbenz39*/40public final class MD5 extends DigestBase {4142// state of this object43private int[] state;44// temporary buffer, used by implCompress()45private int[] x;4647// rotation constants48private static final int S11 = 7;49private static final int S12 = 12;50private static final int S13 = 17;51private static final int S14 = 22;52private static final int S21 = 5;53private static final int S22 = 9;54private static final int S23 = 14;55private static final int S24 = 20;56private static final int S31 = 4;57private static final int S32 = 11;58private static final int S33 = 16;59private static final int S34 = 23;60private static final int S41 = 6;61private static final int S42 = 10;62private static final int S43 = 15;63private static final int S44 = 21;6465// Standard constructor, creates a new MD5 instance.66public MD5() {67super("MD5", 16, 64);68state = new int[4];69x = new int[16];70resetHashes();71}7273// clone this object74public Object clone() throws CloneNotSupportedException {75MD5 copy = (MD5) super.clone();76copy.state = copy.state.clone();77copy.x = new int[16];78return copy;79}8081/**82* Reset the state of this object.83*/84void implReset() {85// Load magic initialization constants.86resetHashes();87// clear out old data88Arrays.fill(x, 0);89}9091private void resetHashes() {92state[0] = 0x67452301;93state[1] = 0xefcdab89;94state[2] = 0x98badcfe;95state[3] = 0x10325476;96}9798/**99* Perform the final computations, any buffered bytes are added100* to the digest, the count is added to the digest, and the resulting101* digest is stored.102*/103void implDigest(byte[] out, int ofs) {104long bitsProcessed = bytesProcessed << 3;105106int index = (int)bytesProcessed & 0x3f;107int padLen = (index < 56) ? (56 - index) : (120 - index);108engineUpdate(padding, 0, padLen);109110i2bLittle4((int)bitsProcessed, buffer, 56);111i2bLittle4((int)(bitsProcessed >>> 32), buffer, 60);112implCompress(buffer, 0);113114i2bLittle(state, 0, out, ofs, 16);115}116117/* **********************************************************118* The MD5 Functions. The results of this119* implementation were checked against the RSADSI version.120* **********************************************************121*/122123private static int FF(int a, int b, int c, int d, int x, int s, int ac) {124a += ((b & c) | ((~b) & d)) + x + ac;125return ((a << s) | (a >>> (32 - s))) + b;126}127128private static int GG(int a, int b, int c, int d, int x, int s, int ac) {129a += ((b & d) | (c & (~d))) + x + ac;130return ((a << s) | (a >>> (32 - s))) + b;131}132133private static int HH(int a, int b, int c, int d, int x, int s, int ac) {134a += ((b ^ c) ^ d) + x + ac;135return ((a << s) | (a >>> (32 - s))) + b;136}137138private static int II(int a, int b, int c, int d, int x, int s, int ac) {139a += (c ^ (b | (~d))) + x + ac;140return ((a << s) | (a >>> (32 - s))) + b;141}142143/**144* This is where the functions come together as the generic MD5145* transformation operation. It consumes sixteen146* bytes from the buffer, beginning at the specified offset.147*/148void implCompress(byte[] buf, int ofs) {149b2iLittle64(buf, ofs, x);150151int a = state[0];152int b = state[1];153int c = state[2];154int d = state[3];155156/* Round 1 */157a = FF ( a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */158d = FF ( d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */159c = FF ( c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */160b = FF ( b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */161a = FF ( a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */162d = FF ( d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */163c = FF ( c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */164b = FF ( b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */165a = FF ( a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */166d = FF ( d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */167c = FF ( c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */168b = FF ( b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */169a = FF ( a, b, c, d, x[12], S11, 0x6b901122); /* 13 */170d = FF ( d, a, b, c, x[13], S12, 0xfd987193); /* 14 */171c = FF ( c, d, a, b, x[14], S13, 0xa679438e); /* 15 */172b = FF ( b, c, d, a, x[15], S14, 0x49b40821); /* 16 */173174/* Round 2 */175a = GG ( a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */176d = GG ( d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */177c = GG ( c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */178b = GG ( b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */179a = GG ( a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */180d = GG ( d, a, b, c, x[10], S22, 0x2441453); /* 22 */181c = GG ( c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */182b = GG ( b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */183a = GG ( a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */184d = GG ( d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */185c = GG ( c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */186b = GG ( b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */187a = GG ( a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */188d = GG ( d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */189c = GG ( c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */190b = GG ( b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */191192/* Round 3 */193a = HH ( a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */194d = HH ( d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */195c = HH ( c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */196b = HH ( b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */197a = HH ( a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */198d = HH ( d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */199c = HH ( c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */200b = HH ( b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */201a = HH ( a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */202d = HH ( d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */203c = HH ( c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */204b = HH ( b, c, d, a, x[ 6], S34, 0x4881d05); /* 44 */205a = HH ( a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */206d = HH ( d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */207c = HH ( c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */208b = HH ( b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */209210/* Round 4 */211a = II ( a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */212d = II ( d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */213c = II ( c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */214b = II ( b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */215a = II ( a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */216d = II ( d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */217c = II ( c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */218b = II ( b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */219a = II ( a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */220d = II ( d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */221c = II ( c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */222b = II ( b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */223a = II ( a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */224d = II ( d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */225c = II ( c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */226b = II ( b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */227228state[0] += a;229state[1] += b;230state[2] += c;231state[3] += d;232}233234}235236237