Class DigestSignatureSpi
java.lang.Object
java.security.SignatureSpi
org.bouncycastle.jcajce.provider.asymmetric.rsa.DigestSignatureSpi
- Direct Known Subclasses:
DigestSignatureSpi.MD5,DigestSignatureSpi.SHA1,DigestSignatureSpi.SHA256,DigestSignatureSpi.SHA384,DigestSignatureSpi.SHA512
public class DigestSignatureSpi extends SignatureSpi
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDigestSignatureSpi.MD5static classDigestSignatureSpi.SHA1static classDigestSignatureSpi.SHA256static classDigestSignatureSpi.SHA384static classDigestSignatureSpi.SHA512 -
Field Summary
Fields inherited from class java.security.SignatureSpi
appRandom -
Constructor Summary
Constructors Modifier Constructor Description protectedDigestSignatureSpi(ASN1ObjectIdentifier objId, Digest digest, AsymmetricBlockCipher cipher)protectedDigestSignatureSpi(Digest digest, AsymmetricBlockCipher cipher) -
Method Summary
Modifier and Type Method Description protected ObjectengineGetParameter(String param)Deprecated.protected AlgorithmParametersengineGetParameters()Returns theAlgorithmParametersof thisSignatureSpiinstance.protected voidengineInitSign(PrivateKey privateKey)Initializes thisSignatureSpiinstance for signing, using the private key of the identity whose signature is going to be generated.protected voidengineInitVerify(PublicKey publicKey)Initializes thisSignatureSpiinstance for signature verification, using the public key of the identity whose signature is going to be verified.protected voidengineSetParameter(String param, Object value)Deprecated.replaced withprotected voidengineSetParameter(AlgorithmParameterSpec params)Sets the specifiedAlgorithmParameterSpec.protected byte[]engineSign()Generates and returns the signature of all updated data.protected voidengineUpdate(byte b)Updates the data to be verified or to be signed, using the specifiedbyte.protected voidengineUpdate(byte[] b, int off, int len)Updates the data to be verified or to be signed, using the givenbyte[], starting form the specified index for the specified length.protected booleanengineVerify(byte[] sigBytes)Indicates whether the givensigBytescan be verified using the public key or a certificate of the signer.Methods inherited from class java.security.SignatureSpi
clone, engineInitSign, engineSign, engineUpdate, engineVerify
-
Constructor Details
-
DigestSignatureSpi
-
DigestSignatureSpi
protected DigestSignatureSpi(ASN1ObjectIdentifier objId, Digest digest, AsymmetricBlockCipher cipher)
-
-
Method Details
-
engineInitVerify
Description copied from class:SignatureSpiInitializes thisSignatureSpiinstance for signature verification, using the public key of the identity whose signature is going to be verified.- Specified by:
engineInitVerifyin classSignatureSpi- Parameters:
publicKey- the public key.- Throws:
InvalidKeyException- ifpublicKeyis not valid.
-
engineInitSign
Description copied from class:SignatureSpiInitializes thisSignatureSpiinstance for signing, using the private key of the identity whose signature is going to be generated.- Specified by:
engineInitSignin classSignatureSpi- Parameters:
privateKey- the private key.- Throws:
InvalidKeyException- ifprivateKeyis not valid.
-
engineUpdate
Description copied from class:SignatureSpiUpdates the data to be verified or to be signed, using the specifiedbyte.- Specified by:
engineUpdatein classSignatureSpi- Parameters:
b- the byte to update with.- Throws:
SignatureException- if thisSignatureSpiinstance is not initialized properly.
-
engineUpdate
Description copied from class:SignatureSpiUpdates the data to be verified or to be signed, using the givenbyte[], starting form the specified index for the specified length.- Specified by:
engineUpdatein classSignatureSpi- Parameters:
b- the byte array to update with.off- the start index inbof the data.len- the number of bytes to use.- Throws:
SignatureException- if thisSignatureSpiinstance is not initialized properly.
-
engineSign
Description copied from class:SignatureSpiGenerates and returns the signature of all updated data.This
SignatureSpiinstance is reset to the state of its last initialization for signing and thus can be used for another signature from the same identity.- Specified by:
engineSignin classSignatureSpi- Returns:
- the signature of all updated data.
- Throws:
SignatureException- if thisSignatureSpiinstance is not initialized properly.
-
engineVerify
Description copied from class:SignatureSpiIndicates whether the givensigBytescan be verified using the public key or a certificate of the signer.This
SignatureSpiinstance is reset to the state of its last initialization for verifying and thus can be used to verify another signature of the same signer.- Specified by:
engineVerifyin classSignatureSpi- Parameters:
sigBytes- the signature to verify.- Returns:
trueif the signature was verified,falseotherwise.- Throws:
SignatureException- if thisSignatureSpiinstance is not initialized properly.
-
engineSetParameter
Description copied from class:SignatureSpiSets the specifiedAlgorithmParameterSpec.- Overrides:
engineSetParameterin classSignatureSpi- Parameters:
params- the parameter to set.
-
engineSetParameter
Description copied from class:SignatureSpiSets the specified parameter to the given value.- Specified by:
engineSetParameterin classSignatureSpi- Parameters:
param- the name of the parameter.value- the parameter value.
-
engineGetParameter
Deprecated.Description copied from class:SignatureSpiReturns the value of the parameter with the specified name.- Specified by:
engineGetParameterin classSignatureSpi- Parameters:
param- the name of the requested parameter value.- Returns:
- the value of the parameter with the specified name, maybe
null.
-
engineGetParameters
Description copied from class:SignatureSpiReturns theAlgorithmParametersof thisSignatureSpiinstance.- Overrides:
engineGetParametersin classSignatureSpi- Returns:
- the
AlgorithmParametersof thisSignatureSpiinstance, maybenull.
-