org.bouncycastle.tls.crypto.impl.bc.BcTlsEd448Signer Maven / Gradle / Ivy
package org.bouncycastle.tls.crypto.impl.bc;
import java.io.IOException;
import org.bouncycastle.crypto.params.Ed448PrivateKeyParameters;
import org.bouncycastle.crypto.signers.Ed448Signer;
import org.bouncycastle.tls.HashAlgorithm;
import org.bouncycastle.tls.SignatureAlgorithm;
import org.bouncycastle.tls.SignatureAndHashAlgorithm;
import org.bouncycastle.tls.TlsUtils;
import org.bouncycastle.tls.crypto.TlsStreamSigner;
public class BcTlsEd448Signer
extends BcTlsSigner
{
public BcTlsEd448Signer(BcTlsCrypto crypto, Ed448PrivateKeyParameters privateKey)
{
super(crypto, privateKey);
}
public byte[] generateRawSignature(SignatureAndHashAlgorithm algorithm, byte[] hash) throws IOException
{
throw new UnsupportedOperationException();
}
public TlsStreamSigner getStreamSigner(SignatureAndHashAlgorithm algorithm)
{
if (algorithm == null
|| algorithm.getSignature() != SignatureAlgorithm.ed448
|| algorithm.getHash() != HashAlgorithm.Intrinsic)
{
throw new IllegalStateException("Invalid algorithm: " + algorithm);
}
Ed448Signer signer = new Ed448Signer(TlsUtils.EMPTY_BYTES);
signer.init(true, privateKey);
return new BcTlsStreamSigner(signer);
}
}