public static byte[] RIPEMD160(byte[] data, int offset, int count) { RipeMD160Digest ripemd = new RipeMD160Digest(); ripemd.BlockUpdate(data, offset, count); byte[] rv = new byte[20]; ripemd.DoFinal(rv, 0); return(rv); }
private void CopyIn(RipeMD160Digest t) { base.CopyIn(t); this.H0 = t.H0; this.H1 = t.H1; this.H2 = t.H2; this.H3 = t.H3; this.H4 = t.H4; Array.Copy(t.X, 0, this.X, 0, t.X.Length); this.xOff = t.xOff; }
/** * Copy constructor. This will copy the state of the provided * message digest. */ public RipeMD160Digest(RipeMD160Digest t) : base(t) { CopyIn(t); }