September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -1,3 +1,31 @@
|
|||
/// Represent digest with ABCD
|
||||
sealed public class Digest
|
||||
{
|
||||
public uint A;
|
||||
public uint B;
|
||||
public uint C;
|
||||
public uint D;
|
||||
|
||||
public Digest()
|
||||
{
|
||||
A=(uint)MD5InitializerConstant.A;
|
||||
B=(uint)MD5InitializerConstant.B;
|
||||
C=(uint)MD5InitializerConstant.C;
|
||||
D=(uint)MD5InitializerConstant.D;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
string st ;
|
||||
st= MD5Helper.ReverseByte(A).ToString("X8")+
|
||||
MD5Helper.ReverseByte(B).ToString("X8")+
|
||||
MD5Helper.ReverseByte(C).ToString("X8")+
|
||||
MD5Helper.ReverseByte(D).ToString("X8");
|
||||
return st;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public class MD5
|
||||
{
|
||||
/***********************VARIABLES************************************/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue