/* Java Crypto Functions Source Code */ /* Placed into Public Domain 2015, Karl-Uwe Frank */ import java.io.IOException; import java.security.MessageDigest; // ----------------------------------------- // HMAC // // H(K XOR opad, H(K XOR ipad, text)) // // MD5(key XOR opad, MD5(key XOR ipad, text)) // // ipad = 0x36, opad = 0x5c // // Test Vectors at https://tools.ietf.org/html/rfc4231 // https://datatracker.ietf.org/doc/rfc2202/?include_text=1 // https://en.wikipedia.org/wiki/Hmac#Examples // public static byte[] hmac(String hashType, byte[] key, byte[] message) throws Exception { // md5, sha-1, sha-256 = 64 // sha-384, sha-512 = 128 // int blocksize = 64; int keylength = (int)key.length; if (hashType.toLowerCase().equals("sha-384") || hashType.toLowerCase().equals("sha-512")) { blocksize = 128; } byte[] Hmac_key = new byte[blocksize]; byte[] inner_pad = new byte[blocksize]; byte[] outer_pad = new byte[blocksize]; byte[] byteHMac = new byte[blocksize]; // If the Key is to long use it's Hash if (keylength > blocksize){ // adjust the Key Length keylength = MessageDigest.getInstance(hashType).getDigestLength(); byte[] temp = new byte[keylength]; temp = hashByte(hashType, key); for (int i=0; i dkLen-1) break; DK[k] = T_i[T_i_count++]; } DK_offset += hLen; // Return the finaly derived Key return DK; } //----------------------------------------- // // Convert Int32 to Byte Array // public static byte[] int32ToByteArray(int int32) { byte[] b = new byte[4]; b[0] = (byte)((int32 >> 24) & 0xff); b[1] = (byte)((int32 >> 16) & 0xff); b[2] = (byte)((int32 >> 8) & 0xff); b[3] = (byte)( int32 & 0xff); return b; } //----------------------------------------- // // Calculate Hash Value // public static byte[] hashByte(String hashType, byte[] byteArray) throws Exception { MessageDigest md = MessageDigest.getInstance(hashType); md.reset(); md.update(byteArray); byte[] digestBytesArray = md.digest(); return digestBytesArray; } //----------------------------------------- // // Concatenate two Byte Arrays // public static byte[] concatByteArrays(byte[] a, byte[] b) throws Exception { ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); outputStream.write( a ); outputStream.write( b ); return outputStream.toByteArray(); }