Class BcTlsSM2Signer
- java.lang.Object
-
- org.bouncycastle.tls.crypto.impl.bc.BcTlsSigner
-
- org.bouncycastle.tls.crypto.impl.bc.BcTlsSM2Signer
-
- All Implemented Interfaces:
TlsSigner
public class BcTlsSM2Signer extends BcTlsSigner
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]
identifier
-
Fields inherited from class org.bouncycastle.tls.crypto.impl.bc.BcTlsSigner
crypto, privateKey
-
-
Constructor Summary
Constructors Constructor Description BcTlsSM2Signer(BcTlsCrypto crypto, org.bouncycastle.crypto.params.ECPrivateKeyParameters privateKey, byte[] identifier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
generateRawSignature(SignatureAndHashAlgorithm algorithm, byte[] hash)
Generate an encoded signature based on the passed in hash.TlsStreamSigner
getStreamSigner(SignatureAndHashAlgorithm algorithm)
-
-
-
Constructor Detail
-
BcTlsSM2Signer
public BcTlsSM2Signer(BcTlsCrypto crypto, org.bouncycastle.crypto.params.ECPrivateKeyParameters privateKey, byte[] identifier)
-
-
Method Detail
-
generateRawSignature
public byte[] generateRawSignature(SignatureAndHashAlgorithm algorithm, byte[] hash) throws java.io.IOException
Description copied from interface:TlsSigner
Generate an encoded signature based on the passed in hash.- Parameters:
algorithm
- the signature algorithm to use.hash
- the hash calculated for the signature.- Returns:
- an encoded signature.
- Throws:
java.io.IOException
- in case of an exception processing the hash.
-
getStreamSigner
public TlsStreamSigner getStreamSigner(SignatureAndHashAlgorithm algorithm)
- Specified by:
getStreamSigner
in interfaceTlsSigner
- Overrides:
getStreamSigner
in classBcTlsSigner
-
-