コード例 #1
0
ファイル: MD5Managed.cs プロジェクト: sadiqj/aws-sdk-xamarin
 public MD5Managed()
 {
     _base = XLabs.Cryptography.MD5.Create();
     //_base.HashSizeValue = 0x80;
     this.HashSizeValue = 0x80;
     this.Initialize();
 }
コード例 #2
0
 public MD5Managed()
 {
     _base = XLabs.Cryptography.MD5.Create();
     //_base.HashSizeValue = 0x80;
     this.HashSizeValue = 0x80;
     this.Initialize();
 }
コード例 #3
0
 private void Init(string algorithmName)
 {
     //_algorithm = HashAlgorithm.Create(algorithmName);
     _algorithm = XLabs.Cryptography.MD5.Create(algorithmName);
 }
コード例 #4
0
 private void Init(string algorithmName)
 {
     //_algorithm = HashAlgorithm.Create(algorithmName);
     _algorithm = XLabs.Cryptography.MD5.Create(algorithmName);
 }