List of usage examples for org.bouncycastle.crypto.digests MD5Digest MD5Digest
public MD5Digest(MD5Digest t)
From source file:com.sun.midp.crypto.MD5.java
License:Open Source License
/** * Clones the MessageDigest object./*www . j av a 2 s .com*/ * @return a clone of this object */ public Object clone() { return new MD5(new MD5Digest(impl)); }