public class OpenSSLSignatureRawRSA extends SignatureSpi
appRandom| Constructor and Description |
|---|
OpenSSLSignatureRawRSA() |
| Modifier and Type | Method and Description |
|---|---|
protected Object |
engineGetParameter(String param)
Returns the value of the parameter with the specified name.
|
protected void |
engineInitSign(PrivateKey privateKey)
Initializes this
SignatureSpi instance for signing, using the
private key of the identity whose signature is going to be generated. |
protected void |
engineInitVerify(PublicKey publicKey)
Initializes this
SignatureSpi instance for signature
verification, using the public key of the identity whose signature is
going to be verified. |
protected void |
engineSetParameter(String param,
Object value)
Sets the specified parameter to the given value.
|
protected byte[] |
engineSign()
Generates and returns the signature of all updated data.
|
protected void |
engineUpdate(byte input)
Updates the data to be verified or to be signed, using the specified
byte. |
protected void |
engineUpdate(byte[] input,
int offset,
int len)
Updates the data to be verified or to be signed, using the given
byte[], starting form the specified index for the specified length. |
protected boolean |
engineVerify(byte[] sigBytes)
Indicates whether the given
sigBytes can be verified using the
public key or a certificate of the signer. |
clone, engineGetParameters, engineInitSign, engineSetParameter, engineSign, engineUpdate, engineVerifyprotected void engineUpdate(byte input)
SignatureSpibyte.engineUpdate in class SignatureSpiinput - the byte to update with.protected void engineUpdate(byte[] input,
int offset,
int len)
SignatureSpibyte[], starting form the specified index for the specified length.engineUpdate in class SignatureSpiinput - the byte array to update with.offset - the start index in b of the data.len - the number of bytes to use.protected Object engineGetParameter(String param) throws InvalidParameterException
SignatureSpiengineGetParameter in class SignatureSpiparam - the name of the requested parameter value.null.InvalidParameterException - if param is not a valid parameter for this SignatureSpi or an other error occurs.protected void engineInitSign(PrivateKey privateKey) throws InvalidKeyException
SignatureSpiSignatureSpi instance for signing, using the
private key of the identity whose signature is going to be generated.engineInitSign in class SignatureSpiprivateKey - the private key.InvalidKeyException - if privateKey is not valid.protected void engineInitVerify(PublicKey publicKey) throws InvalidKeyException
SignatureSpiSignatureSpi instance for signature
verification, using the public key of the identity whose signature is
going to be verified.engineInitVerify in class SignatureSpipublicKey - the public key.InvalidKeyException - if publicKey is not valid.protected void engineSetParameter(String param, Object value) throws InvalidParameterException
SignatureSpiengineSetParameter in class SignatureSpiparam - the name of the parameter.value - the parameter value.InvalidParameterException - if the parameter is invalid, already set or is not allowed to
be changed.protected byte[] engineSign()
throws SignatureException
SignatureSpi
This SignatureSpi instance is reset to the state of its last
initialization for signing and thus can be used for another signature
from the same identity.
engineSign in class SignatureSpiSignatureException - if this SignatureSpi instance is not initialized
properly.protected boolean engineVerify(byte[] sigBytes)
throws SignatureException
SignatureSpisigBytes can be verified using the
public key or a certificate of the signer.
This SignatureSpi instance is reset to the state of its last
initialization for verifying and thus can be used to verify another
signature of the same signer.
engineVerify in class SignatureSpisigBytes - the signature to verify.true if the signature was verified, false
otherwise.SignatureException - if this SignatureSpi instance is not initialized
properly.