edu.vt.middleware.crypt.digest.SHA512 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vt-crypt Show documentation
Show all versions of vt-crypt Show documentation
Library for performing common cryptographic operations
/*
$Id$
Copyright (C) 2007-2011 Virginia Tech.
All rights reserved.
SEE LICENSE FOR MORE INFORMATION
Author: Middleware Services
Email: [email protected]
Version: $Revision$
Updated: $Date$
*/
package edu.vt.middleware.crypt.digest;
import java.security.SecureRandom;
import org.bouncycastle.crypto.digests.SHA512Digest;
/**
* SHA512
contains functions for hashing data using the SHA-512
* algorithm. This algorithm outputs a 512 bit hash.
*
* @author Middleware Services
* @version $Revision: 3 $
*/
public class SHA512 extends DigestAlgorithm
{
/** Creates an uninitialized instance of an SHA512 digest. */
public SHA512()
{
super(new SHA512Digest());
}
/**
* Creates a new SHA512 digest that may optionally be initialized with random
* data.
*
* @param randomize True to randomize initial state of digest, false
* otherwise.
*/
public SHA512(final boolean randomize)
{
super(new SHA512Digest());
if (randomize) {
setRandomProvider(new SecureRandom());
setSalt(getRandomSalt());
}
}
/**
* Creates a new SHA512 digest and initializes it with the given salt.
*
* @param salt Salt data used to initialize digest computation.
*/
public SHA512(final byte[] salt)
{
super(new SHA512Digest());
setSalt(salt);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy