org.bouncycastle.cms.BaseDigestCalculator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcmail Show documentation
Show all versions of bcmail Show documentation
A patched bouncycastle-mail
The newest version!
package org.bouncycastle.cms;
import org.bouncycastle.util.Arrays;
class BaseDigestCalculator
implements IntDigestCalculator
{
private final byte[] digest;
BaseDigestCalculator(byte[] digest)
{
this.digest = digest;
}
public byte[] getDigest()
{
return Arrays.clone(digest);
}
}