org.bouncycastle.jcajce.provider.digest.Blake3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.jcajce.provider.digest;
import org.bouncycastle.asn1.misc.MiscObjectIdentifiers;
import org.bouncycastle.crypto.digests.Blake3Digest;
import org.bouncycastle.jcajce.provider.config.ConfigurableProvider;
public class Blake3
{
private Blake3()
{
}
static public class Blake3_256
extends BCMessageDigest
implements Cloneable
{
public Blake3_256()
{
super(new Blake3Digest(256));
}
public Object clone()
throws CloneNotSupportedException
{
Blake3_256 d = (Blake3_256)super.clone();
d.digest = new Blake3Digest((Blake3Digest)digest);
return d;
}
}
public static class Mappings
extends DigestAlgorithmProvider
{
private static final String PREFIX = Blake3.class.getName();
public Mappings()
{
}
public void configure(ConfigurableProvider provider)
{
provider.addAlgorithm("MessageDigest.BLAKE3-256", PREFIX + "$Blake3_256");
provider.addAlgorithm("Alg.Alias.MessageDigest." + MiscObjectIdentifiers.blake3_256, "BLAKE3-256");
}
}
}