Example usage for org.bouncycastle.crypto.digests MD5Digest MD5Digest

List of usage examples for org.bouncycastle.crypto.digests MD5Digest MD5Digest

Introduction

In this page you can find the example usage for org.bouncycastle.crypto.digests MD5Digest MD5Digest.

Prototype

public MD5Digest(MD5Digest t) 

Source Link

Document

Copy constructor.

Usage

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));
}