aQute.libg.cryptography.SHA256 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
package aQute.libg.cryptography;
import java.io.File;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class SHA256 extends Digest {
public final static String ALGORITHM = "SHA-256";
public static Digester getDigester(OutputStream... out) throws NoSuchAlgorithmException {
MessageDigest md = MessageDigest.getInstance(ALGORITHM);
return new Digester(md, out) {
@Override
public SHA256 digest() throws Exception {
return new SHA256(md.digest());
}
@Override
public SHA256 digest(byte[] bytes) {
return new SHA256(bytes);
}
@Override
public String getAlgorithm() {
return ALGORITHM;
}
};
}
public SHA256(byte[] b) {
super(b, 32);
}
@Override
public String getAlgorithm() {
return ALGORITHM;
}
public static SHA256 digest(byte[] data) throws Exception {
return getDigester().from(data);
}
public static SHA256 digest(File f) throws NoSuchAlgorithmException, Exception {
return getDigester().from(f);
}
public static SHA256 digest(InputStream f) throws NoSuchAlgorithmException, Exception {
return getDigester().from(f);
}
}