Example #1
0
 public MD5Managed()
 {
     _base = XLabs.Cryptography.MD5.Create();
     //_base.HashSizeValue = 0x80;
     this.HashSizeValue = 0x80;
     this.Initialize();
 }
 public MD5Managed()
 {
     _base = XLabs.Cryptography.MD5.Create();
     //_base.HashSizeValue = 0x80;
     this.HashSizeValue = 0x80;
     this.Initialize();
 }
 private void Init(string algorithmName)
 {
     //_algorithm = HashAlgorithm.Create(algorithmName);
     _algorithm = XLabs.Cryptography.MD5.Create(algorithmName);
 }
 private void Init(string algorithmName)
 {
     //_algorithm = HashAlgorithm.Create(algorithmName);
     _algorithm = XLabs.Cryptography.MD5.Create(algorithmName);
 }