Example #1
0
		private void CopyIn(MD5Digest t)
		{
			base.CopyIn(t);
            H1 = t.H1;
            H2 = t.H2;
            H3 = t.H3;
            H4 = t.H4;

            Array.Copy(t.X, 0, X, 0, t.X.Length);
            xOff = t.xOff;
        }
Example #2
0
        private void CopyIn(MD5Digest t)
        {
            base.CopyIn(t);
            H1 = t.H1;
            H2 = t.H2;
            H3 = t.H3;
            H4 = t.H4;

            Array.Copy(t.X, 0, X, 0, t.X.Length);
            xOff = t.xOff;
        }
Example #3
0
        /**
        * Copy constructor.  This will copy the state of the provided
        * message digest.
        */
        public MD5Digest(MD5Digest t)
            : base(t)
		{
			CopyIn(t);
		}
Example #4
0
        public override void Reset(IMemoable other)
        {
            MD5Digest d = (MD5Digest)other;

            CopyIn(d);
        }
Example #5
0
 /**
  * Copy constructor.  This will copy the state of the provided
  * message digest.
  */
 public MD5Digest(MD5Digest t)
     : base(t)
 {
     CopyIn(t);
 }