com.github.jscancella.hash.standard.SHA512Hasher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagging Show documentation
Show all versions of bagging Show documentation
This is a software library intended to support the creation, manipulation, and validation of "bags" from the bagit specification. It currently supports version 0.93 through 1.0.
package com.github.jscancella.hash.standard;
/**
* A default implementation for the SHA1 with 512 bit checksum
*/
public final class SHA512Hasher extends AbstractMessageDigestHasher {
/**
* the bagit algorithm name
*/
public static final String BAGIT_ALGORITHM_NAME = "sha512";
/**
* A default implementation for the SHA1 with 512 bit checksum
*/
public SHA512Hasher() {
super("SHA-512", BAGIT_ALGORITHM_NAME);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy