org.bouncycastle.tls.crypto.impl.bc.BcTlsEd448Verifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
package org.bouncycastle.tls.crypto.impl.bc;
import java.io.IOException;
import org.bouncycastle.crypto.params.Ed448PublicKeyParameters;
import org.bouncycastle.crypto.signers.Ed448Signer;
import org.bouncycastle.tls.DigitallySigned;
import org.bouncycastle.tls.SignatureAndHashAlgorithm;
import org.bouncycastle.tls.SignatureScheme;
import org.bouncycastle.tls.TlsUtils;
import org.bouncycastle.tls.crypto.TlsStreamVerifier;
public class BcTlsEd448Verifier
extends BcTlsVerifier
{
public BcTlsEd448Verifier(BcTlsCrypto crypto, Ed448PublicKeyParameters publicKey)
{
super(crypto, publicKey);
}
public boolean verifyRawSignature(DigitallySigned signature, byte[] hash) throws IOException
{
throw new UnsupportedOperationException();
}
public TlsStreamVerifier getStreamVerifier(DigitallySigned signature)
{
SignatureAndHashAlgorithm algorithm = signature.getAlgorithm();
if (algorithm == null || SignatureScheme.from(algorithm) != SignatureScheme.ed448)
{
throw new IllegalStateException("Invalid algorithm: " + algorithm);
}
Ed448Signer verifier = new Ed448Signer(TlsUtils.EMPTY_BYTES);
verifier.init(false, publicKey);
return new BcTlsStreamVerifier(verifier, signature.getSignature());
}
}