コード例 #1
0
ファイル: GeneralDigest.cs プロジェクト: sonofsatoshi2020/xds
        protected void CopyIn(GeneralDigest t)
        {
            Array.Copy(t.xBuf, 0, this.xBuf, 0, t.xBuf.Length);

            this.xBufOff   = t.xBufOff;
            this.byteCount = t.byteCount;
        }
コード例 #2
0
ファイル: GeneralDigest.cs プロジェクト: sonofsatoshi2020/xds
 internal GeneralDigest(GeneralDigest t)
 {
     this.xBuf = new byte[t.xBuf.Length];
     CopyIn(t);
 }