Inheritance: IDigest, IMemoable
Example #1
0
        protected void CopyIn(GeneralDigest t)
        {
            Array.Copy(t.xBuf, 0, xBuf, 0, t.xBuf.Length);

            xBufOff   = t.xBufOff;
            byteCount = t.byteCount;
        }
Example #2
0
		protected void CopyIn(GeneralDigest t)
		{
            Array.Copy(t.xBuf, 0, xBuf, 0, t.xBuf.Length);

            xBufOff = t.xBufOff;
            byteCount = t.byteCount;
        }
Example #3
0
 internal GeneralDigest(GeneralDigest t)
 {
     xBuf = new byte[t.xBuf.Length];
     CopyIn(t);
 }
Example #4
0
        internal GeneralDigest(GeneralDigest t)
		{
			xBuf = new byte[t.xBuf.Length];
			CopyIn(t);
		}
Example #5
0
		public GeneralDigest(GeneralDigest t)
		{
			xBuf = new byte[t.xBuf.Length];
			CopyIn(t);
		}
 public GeneralDigest(GeneralDigest t)
 {
     xBuf = new byte[t.xBuf.Length];
     CopyIn(t);
 }