コード例 #1
0
ファイル: Sha512Digest.cs プロジェクト: zyltntking/Lenneth
        public override void Reset(IMemoable other)
        {
            Sha512Digest d = (Sha512Digest)other;

            CopyIn(d);
        }
コード例 #2
0
ファイル: Sha512Digest.cs プロジェクト: zyltntking/Lenneth
 /**
  * Copy constructor.  This will copy the state of the provided
  * message digest.
  */
 public Sha512Digest(
     Sha512Digest t)
     : base(t)
 {
 }