
org.spongycastle.cert.crmf.PKMACValueVerifier Maven / Gradle / Ivy
Go to download
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle intended for Android.
Android ships with a stripped-down version of Bouncy Castle - this causes classloader collisions if you try to add
an alternative (updated/complete) Bouncy Castle jar.
This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5.
The newest version!
package org.spongycastle.cert.crmf;
import java.io.IOException;
import java.io.OutputStream;
import org.spongycastle.asn1.cmp.PBMParameter;
import org.spongycastle.asn1.crmf.PKMACValue;
import org.spongycastle.asn1.x509.SubjectPublicKeyInfo;
import org.spongycastle.operator.MacCalculator;
import org.spongycastle.util.Arrays;
class PKMACValueVerifier
{
private final PKMACBuilder builder;
public PKMACValueVerifier(PKMACBuilder builder)
{
this.builder = builder;
}
public boolean isValid(PKMACValue value, char[] password, SubjectPublicKeyInfo keyInfo)
throws CRMFException
{
builder.setParameters(PBMParameter.getInstance(value.getAlgId().getParameters()));
MacCalculator calculator = builder.build(password);
OutputStream macOut = calculator.getOutputStream();
try
{
macOut.write(keyInfo.getDEREncoded());
macOut.close();
}
catch (IOException e)
{
throw new CRMFException("exception encoding mac input: " + e.getMessage(), e);
}
return Arrays.areEqual(calculator.getMac(), value.getValue().getBytes());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy