Exemple #1
0
        private void CopyIn(RipeMD256Digest t)
        {
            base.CopyIn(t);

            H0 = t.H0;
            H1 = t.H1;
            H2 = t.H2;
            H3 = t.H3;
            H4 = t.H4;
            H5 = t.H5;
            H6 = t.H6;
            H7 = t.H7;

            Array.Copy(t.X, 0, X, 0, t.X.Length);
            xOff = t.xOff;
        }
Exemple #2
0
        public override void Reset(IMemoable other)
        {
            RipeMD256Digest d = (RipeMD256Digest)other;

            CopyIn(d);
        }
Exemple #3
0
 /// <summary> Copy constructor.  This will copy the state of the provided
 /// message digest.
 /// </summary>
 public RipeMD256Digest(RipeMD256Digest t) : base(t)
 {
     CopyIn(t);
 }