@ -1,6 +1,8 @@
namespace WhiteRabbit
namespace WhiteRabbit
{
{
using System ;
using System ;
using System.Linq ;
using System.Reflection ;
/ * *
/ * *
* Code taken from BouncyCastle and optimized for specific constraints ( e . g . input is always larger than 4 bytes and smaller than 5 2 bytes ) .
* Code taken from BouncyCastle and optimized for specific constraints ( e . g . input is always larger than 4 bytes and smaller than 5 2 bytes ) .
@ -11,45 +13,29 @@
* /
* /
internal static class MD5Digest
internal static class MD5Digest
{
{
public static uint [ ] Compute ( byte [ ] input )
public static unsafe uint [ ] Compute ( Phrase input )
{
{
var length = input . Length ;
var xUints = stackalloc uint [ 8 ] ; // it seems that alignment helps
* ( long * ) xUints = * ( long * ) input . Buffer ;
var xUints = new uint [ 8 ] ; // it seems that alignment helps
* ( long * ) ( xUints + 2 ) = * ( long * ) ( input . Buffer + 8 ) ;
#if BIG_ENDIAN
* ( long * ) ( xUints + 4 ) = * ( long * ) ( input . Buffer + 1 6 ) ;
xUints [ 0 ] = LE_To_UInt32 ( xBytes , 4 * 0 ) ;
* ( long * ) ( xUints + 6 ) = * ( long * ) ( input . Buffer + 2 4 ) ;
xUints [ 1 ] = LE_To_UInt32 ( xBytes , 4 * 1 ) ;
( ( byte * ) xUints ) [ 3 1 ] = 0 ;
xUints [ 2 ] = LE_To_UInt32 ( xBytes , 4 * 2 ) ;
( ( byte * ) xUints ) [ input . Buffer [ 3 1 ] ] = 1 2 8 ;
xUints [ 3 ] = LE_To_UInt32 ( xBytes , 4 * 3 ) ;
xUints [ 7 ] = ( uint ) ( input . Buffer [ 3 1 ] < < 3 ) ;
xUints [ 4 ] = LE_To_UInt32 ( xBytes , 4 * 4 ) ;
xUints [ 5 ] = LE_To_UInt32 ( xBytes , 4 * 5 ) ;
xUints [ 6 ] = LE_To_UInt32 ( xBytes , 4 * 6 ) ;
# else
Buffer . BlockCopy ( input , 0 , xUints , 0 , length ) ;
# endif
xUints [ length > > 2 ] | = ( uint ) 1 2 8 < < ( 8 * ( length & 3 ) ) ;
var x0 = xUints [ 0 ] ;
var x1 = xUints [ 1 ] ;
var x2 = xUints [ 2 ] ;
var x3 = xUints [ 3 ] ;
var x4 = xUints [ 4 ] ;
var x5 = xUints [ 5 ] ;
var x6 = xUints [ 6 ] ;
var x14 = ( uint ) ( length < < 3 ) ;
uint a = 0x67452301 ;
uint a = 0x67452301 ;
uint b = 0xefcdab89 ;
uint b = 0xefcdab89 ;
uint c = 0x98badcfe ;
uint c = 0x98badcfe ;
uint d = 0x10325476 ;
uint d = 0x10325476 ;
a = LeftRotate ( x0 + 0xd76aa478 + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
a = LeftRotate ( xUints [ 0 ] + 0xd76aa478 + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
d = LeftRotate ( x1 + 0xe8c7b756 + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
d = LeftRotate ( xUints [ 1 ] + 0xe8c7b756 + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
c = LeftRotate ( x2 + 0x242070db + c + ( ( d & a ) | ( ~ d & b ) ) , 1 7 , 3 2 - 1 7 ) + d ;
c = LeftRotate ( xUints [ 2 ] + 0x242070db + c + ( ( d & a ) | ( ~ d & b ) ) , 1 7 , 3 2 - 1 7 ) + d ;
b = LeftRotate ( x3 + 0xc1bdceee + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
b = LeftRotate ( xUints [ 3 ] + 0xc1bdceee + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
a = LeftRotate ( x4 + 0xf57c0faf + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
a = LeftRotate ( xUints [ 4 ] + 0xf57c0faf + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
d = LeftRotate ( x5 + 0x4787c62a + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
d = LeftRotate ( xUints [ 5 ] + 0x4787c62a + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
c = LeftRotate ( x6 + 0xa8304613 + c + ( ( d & a ) | ( ~ d & b ) ) , 1 7 , 3 2 - 1 7 ) + d ;
c = LeftRotate ( xUints [ 6 ] + 0xa8304613 + c + ( ( d & a ) | ( ~ d & b ) ) , 1 7 , 3 2 - 1 7 ) + d ;
b = LeftRotate ( 0xfd469501 + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
b = LeftRotate ( 0xfd469501 + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
a = LeftRotate ( 0x698098d8 + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
a = LeftRotate ( 0x698098d8 + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
d = LeftRotate ( 0x8b44f7af + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
d = LeftRotate ( 0x8b44f7af + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
@ -57,58 +43,58 @@
b = LeftRotate ( 0x895cd7be + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
b = LeftRotate ( 0x895cd7be + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
a = LeftRotate ( 0x6b901122 + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
a = LeftRotate ( 0x6b901122 + a + ( ( b & c ) | ( ~ b & d ) ) , 7 , 3 2 - 7 ) + b ;
d = LeftRotate ( 0xfd987193 + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
d = LeftRotate ( 0xfd987193 + d + ( ( a & b ) | ( ~ a & c ) ) , 1 2 , 3 2 - 1 2 ) + a ;
c = LeftRotate ( x14 + 0xa679438e + c + ( ( d & a ) | ( ~ d & b ) ) , 1 7 , 3 2 - 1 7 ) + d ;
c = LeftRotate ( xUints [ 7 ] + 0xa679438e + c + ( ( d & a ) | ( ~ d & b ) ) , 1 7 , 3 2 - 1 7 ) + d ;
b = LeftRotate ( 0x49b40821 + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
b = LeftRotate ( 0x49b40821 + b + ( ( c & d ) | ( ~ c & a ) ) , 2 2 , 3 2 - 2 2 ) + c ;
a = LeftRotate ( x1 + 0xf61e2562 + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
a = LeftRotate ( xUints [ 1 ] + 0xf61e2562 + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
d = LeftRotate ( x6 + 0xc040b340 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
d = LeftRotate ( xUints [ 6 ] + 0xc040b340 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
c = LeftRotate ( 0x265e5a51 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
c = LeftRotate ( 0x265e5a51 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
b = LeftRotate ( x0 + 0xe9b6c7aa + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
b = LeftRotate ( xUints [ 0 ] + 0xe9b6c7aa + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
a = LeftRotate ( x5 + 0xd62f105d + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
a = LeftRotate ( xUints [ 5 ] + 0xd62f105d + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
d = LeftRotate ( 0x2441453 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
d = LeftRotate ( 0x2441453 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
c = LeftRotate ( 0xd8a1e681 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
c = LeftRotate ( 0xd8a1e681 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
b = LeftRotate ( x4 + 0xe7d3fbc8 + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
b = LeftRotate ( xUints [ 4 ] + 0xe7d3fbc8 + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
a = LeftRotate ( 0x21e1cde6 + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
a = LeftRotate ( 0x21e1cde6 + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
d = LeftRotate ( x14 + 0xc33707d6 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
d = LeftRotate ( xUints [ 7 ] + 0xc33707d6 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
c = LeftRotate ( x3 + 0xf4d50d87 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
c = LeftRotate ( xUints [ 3 ] + 0xf4d50d87 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
b = LeftRotate ( 0x455a14ed + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
b = LeftRotate ( 0x455a14ed + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
a = LeftRotate ( 0xa9e3e905 + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
a = LeftRotate ( 0xa9e3e905 + a + ( ( b & d ) | ( c & ~ d ) ) , 5 , 3 2 - 5 ) + b ;
d = LeftRotate ( x2 + 0xfcefa3f8 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
d = LeftRotate ( xUints [ 2 ] + 0xfcefa3f8 + d + ( ( a & c ) | ( b & ~ c ) ) , 9 , 3 2 - 9 ) + a ;
c = LeftRotate ( 0x676f02d9 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
c = LeftRotate ( 0x676f02d9 + c + ( ( d & b ) | ( a & ~ b ) ) , 1 4 , 3 2 - 1 4 ) + d ;
b = LeftRotate ( 0x8d2a4c8a + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
b = LeftRotate ( 0x8d2a4c8a + b + ( ( c & a ) | ( d & ~ a ) ) , 2 0 , 3 2 - 2 0 ) + c ;
a = LeftRotate ( x5 + 0xfffa3942 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
a = LeftRotate ( xUints [ 5 ] + 0xfffa3942 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
d = LeftRotate ( 0x8771f681 + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
d = LeftRotate ( 0x8771f681 + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
c = LeftRotate ( 0x6d9d6122 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
c = LeftRotate ( 0x6d9d6122 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
b = LeftRotate ( x14 + 0xfde5380c + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
b = LeftRotate ( xUints [ 7 ] + 0xfde5380c + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
a = LeftRotate ( x1 + 0xa4beea44 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
a = LeftRotate ( xUints [ 1 ] + 0xa4beea44 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
d = LeftRotate ( x4 + 0x4bdecfa9 + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
d = LeftRotate ( xUints [ 4 ] + 0x4bdecfa9 + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
c = LeftRotate ( 0xf6bb4b60 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
c = LeftRotate ( 0xf6bb4b60 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
b = LeftRotate ( 0xbebfbc70 + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
b = LeftRotate ( 0xbebfbc70 + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
a = LeftRotate ( 0x289b7ec6 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
a = LeftRotate ( 0x289b7ec6 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
d = LeftRotate ( x0 + 0xeaa127fa + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
d = LeftRotate ( xUints [ 0 ] + 0xeaa127fa + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
c = LeftRotate ( x3 + 0xd4ef3085 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
c = LeftRotate ( xUints [ 3 ] + 0xd4ef3085 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
b = LeftRotate ( x6 + 0x4881d05 + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
b = LeftRotate ( xUints [ 6 ] + 0x4881d05 + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
a = LeftRotate ( 0xd9d4d039 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
a = LeftRotate ( 0xd9d4d039 + a + ( b ^ c ^ d ) , 4 , 3 2 - 4 ) + b ;
d = LeftRotate ( 0xe6db99e5 + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
d = LeftRotate ( 0xe6db99e5 + d + ( a ^ b ^ c ) , 1 1 , 3 2 - 1 1 ) + a ;
c = LeftRotate ( 0x1fa27cf8 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
c = LeftRotate ( 0x1fa27cf8 + c + ( d ^ a ^ b ) , 1 6 , 3 2 - 1 6 ) + d ;
b = LeftRotate ( x2 + 0xc4ac5665 + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
b = LeftRotate ( xUints [ 2 ] + 0xc4ac5665 + b + ( c ^ d ^ a ) , 2 3 , 3 2 - 2 3 ) + c ;
a = LeftRotate ( x0 + 0xf4292244 + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
a = LeftRotate ( xUints [ 0 ] + 0xf4292244 + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
d = LeftRotate ( 0x432aff97 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
d = LeftRotate ( 0x432aff97 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
c = LeftRotate ( x14 + 0xab9423a7 + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
c = LeftRotate ( xUints [ 7 ] + 0xab9423a7 + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
b = LeftRotate ( x5 + 0xfc93a039 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
b = LeftRotate ( xUints [ 5 ] + 0xfc93a039 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
a = LeftRotate ( 0x655b59c3 + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
a = LeftRotate ( 0x655b59c3 + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
d = LeftRotate ( x3 + 0x8f0ccc92 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
d = LeftRotate ( xUints [ 3 ] + 0x8f0ccc92 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
c = LeftRotate ( 0xffeff47d + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
c = LeftRotate ( 0xffeff47d + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
b = LeftRotate ( x1 + 0x85845dd1 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
b = LeftRotate ( xUints [ 1 ] + 0x85845dd1 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
a = LeftRotate ( 0x6fa87e4f + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
a = LeftRotate ( 0x6fa87e4f + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
d = LeftRotate ( 0xfe2ce6e0 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
d = LeftRotate ( 0xfe2ce6e0 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
c = LeftRotate ( x6 + 0xa3014314 + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
c = LeftRotate ( xUints [ 6 ] + 0xa3014314 + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
b = LeftRotate ( 0x4e0811a1 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
b = LeftRotate ( 0x4e0811a1 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
a = LeftRotate ( x4 + 0xf7537e82 + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
a = LeftRotate ( xUints [ 4 ] + 0xf7537e82 + a + ( c ^ ( b | ~ d ) ) , 6 , 3 2 - 6 ) + b ;
d = LeftRotate ( 0xbd3af235 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
d = LeftRotate ( 0xbd3af235 + d + ( b ^ ( a | ~ c ) ) , 1 0 , 3 2 - 1 0 ) + a ;
c = LeftRotate ( x2 + 0x2ad7d2bb + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
c = LeftRotate ( xUints [ 2 ] + 0x2ad7d2bb + c + ( a ^ ( d | ~ b ) ) , 1 5 , 3 2 - 1 5 ) + d ;
b = LeftRotate ( 0xeb86d391 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
b = LeftRotate ( 0xeb86d391 + b + ( d ^ ( c | ~ a ) ) , 2 1 , 3 2 - 2 1 ) + c ;
return new [ ]
return new [ ]
@ -120,15 +106,7 @@
} ;
} ;
}
}
private static uint LE_To_UInt32 ( byte [ ] bs , int off )
private static uint LeftRotate ( uint x , int left , int right )
{
return ( uint ) bs [ off ]
| ( uint ) bs [ off + 1 ] < < 8
| ( uint ) bs [ off + 2 ] < < 1 6
| ( uint ) bs [ off + 3 ] < < 2 4 ;
}
private static uint LeftRotate ( uint x , int left , int right )
{
{
return ( x < < left ) | ( x > > right ) ;
return ( x < < left ) | ( x > > right ) ;
}
}