コード例 #1
0
ファイル: SM3Digest.cs プロジェクト: PHAISON88/My2C2PPKCS7
 private void CopyIn(SM3Digest t)
 {
     Array.Copy(t.V, 0, this.V, 0, this.V.Length);
     Array.Copy(t.inwords, 0, this.inwords, 0, this.inwords.Length);
     xOff = t.xOff;
 }
コード例 #2
0
ファイル: SM3Digest.cs プロジェクト: PHAISON88/My2C2PPKCS7
 /// <summary>
 /// Copy constructor.  This will copy the state of the provided
 /// message digest.
 /// </summary>
 public SM3Digest(SM3Digest t)
     : base(t)
 {
     CopyIn(t);
 }