SHA384 Hash Generator Online Tool


UpperCase


About SHA384 Hash Generator Online Tool:

This online SHA384 Hash Generator tool helps you to encrypt one input string into a fixed 384 bits SHA384 String.

Paste your Input String or drag text file in the first textbox, then press "SHA384 Encrypt" button, and the result will be displayed in the second textbox.

comic sha384

About SHA384:

SHA-384 is very similar to SHA-512 algorithm. Though SHA-384 only produce 384 bits length result, so SHA-384 is not as secure as SHA-512.

Does SHA384 Hash Generator Online Tool log my data?

Absolutely NOT, this SHA384 Hash Generator doing all the formatting work on the client side, all logic are implemented by Javascript. There are 2 major advantages: 1.Your data never transmitted in the Open Internet, so you know it's secure; 2.It's much faster than doing all the work in the server side, because there is no Internet Delay.

More information about SHA384:

RFC 4634: https://tools.ietf.org/html/rfc4634

Python Implementation of SHA384 (hashlib): https://docs.python.org/3/library/hashlib.html

Java Implementation of SHA384: https://docs.oracle.com/javase/7/docs/api/java/security/MessageDigest.html

SHA384 Generator with Python (with package hashlib):

import hashlib

def sha384_generator(str):
    m = hashlib.sha384()
    m.update(str.encode())
    return m.hexdigest()
    

SHA384 Generator with Java (with package MessageDigest):

import java.math.BigInteger;
import java.security.MessageDigest;

public String generate(String str){
    MessageDigest md = MessageDigest.getInstance("SHA-384");
    md.update(str.getBytes());
    byte[] digest = md.digest();
    String result = new BigInteger(1, digest).toString(16).toUpperCase();
    return result;
}
    

SHA384 Generator with Linux (with OpenSSL):

root@instance-4:/var/log/apache2# openssl dgst -sha384 access.log
SHA384(access.log)= c27e5a92a9589b5c6bb61dbc47856e2aa94e4e2915e0ff211234a6a600496e49ed0261304eeb5e7bdabdb74fbc185c58