/** * Copy constructor. This will copy the state of the provided * message digest. */ public Sha384Digest( Sha384Digest t) : base(t) { }
public override void Reset(IMemoable other) { Sha384Digest d = (Sha384Digest)other; CopyIn(d); }