コード例 #1
0
ファイル: Sha256Digest.cs プロジェクト: shojayxt/NStratis
 /**
  * Copy constructor.  This will copy the state of the provided
  * message digest.
  */
 public Sha256Digest(Sha256Digest t) : base(t)
 {
     CopyIn(t);
 }
コード例 #2
0
ファイル: Sha256Digest.cs プロジェクト: shojayxt/NStratis
        public override void Reset(IMemoable other)
        {
            Sha256Digest d = (Sha256Digest)other;

            CopyIn(d);
        }