Ejemplo n.º 1
0
		private void CopyIn(MD2Digest t)
		{
            Array.Copy(t.X, 0, X, 0, t.X.Length);
            xOff = t.xOff;
            Array.Copy(t.M, 0, M, 0, t.M.Length);
            mOff = t.mOff;
            Array.Copy(t.C, 0, C, 0, t.C.Length);
            COff = t.COff;
        }
Ejemplo n.º 2
0
 private void CopyIn(MD2Digest t)
 {
     Array.Copy(t.X, 0, X, 0, t.X.Length);
     xOff = t.xOff;
     Array.Copy(t.M, 0, M, 0, t.M.Length);
     mOff = t.mOff;
     Array.Copy(t.C, 0, C, 0, t.C.Length);
     COff = t.COff;
 }
Ejemplo n.º 3
0
        public MD2Digest(MD2Digest t)
		{
			CopyIn(t);
		}
Ejemplo n.º 4
0
 public MD2Digest(MD2Digest t)
 {
     CopyIn(t);
 }
Ejemplo n.º 5
0
        public void Reset(IMemoable other)
        {
            MD2Digest d = (MD2Digest)other;

            CopyIn(d);
        }