Package gnu.crypto.hash

Examples of gnu.crypto.hash.MD5


        return hash;
    }
   
    final byte[] md5Hash(String p) {
        //ripemd 160 hash
        final MD5 md5 = new MD5();
        final byte[] data = p.getBytes();
        md5.update(data, 0, data.length);
        final byte[] hash = md5.digest();
        return hash;
    }
View Full Code Here

TOP

Related Classes of gnu.crypto.hash.MD5

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.