Generate SHA384 Hash

Include salt

What is the SHA384 hash generator?

SHA384 is different than SHA256 because it's on 384 bits, so the message diggest is 96 chars long. Also, this mathematic function has 80 rounds more than SHA256, which has 64 rounds.

Frequently asked questions

  1. What are the steps for SHA384 Hasher?

    The steps are similar for all hash function:

    1. Enter your text
    2. Optional: Select the checkbox to include salt and specify the salt or use the default value
    3. Select the get hash button
    4. Optional: Register to use our free REST API to get the hash
  2. What does SHA384 stand for?

    It stands for Secure Hash Algorithm on 384 bits.

  3. What's the difference between hashing and encryption?

    The biggest difference is that hashing is a one-way function and encryption can be two ways. This means that from the result of hashing, you cannot get the initial value, so it's irreversible. Encryption can be decrypted.

  4. What is salt?

    The salt is a sequence of random characters combined with the initial password and the result is hashed. This is a more secure way to store passwords because the hacker cannot use the dictionary method to crack the hashes.

    For example, if a user's password is 123456, using a random salt will secure his passwords from a dictionary attack because password hash is different using salt than without salt.

  5. Is it safe to use?

    Yes, but to sure use it always with salt. If you use salt, dictionary and rainbow table attacks are harder to succeed.

  6. Can someone decrypt it?

    The idea of the process behind hash is not to be reversible.

  7. Is it free?

    Yes, it's 100% free to use.

  8. Do you store the results?

    No, we only generate it and we don't keep anything.

  9. There is an API available?

    Yes, register for an API key and read the documentation.