Package org.bouncycastle.crypto.signers
Class PSSSigner
java.lang.Object
org.bouncycastle.crypto.signers.PSSSigner
- All Implemented Interfaces:
Signer
RSA-PSS as described in PKCS# 1 v 2.1.
Note: the usual value for the salt length is the number of bytes in the hash function.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPSSSigner(AsymmetricBlockCipher cipher, Digest digest, byte[] salt) PSSSigner(AsymmetricBlockCipher cipher, Digest digest, int sLen) basic constructorPSSSigner(AsymmetricBlockCipher cipher, Digest digest, int sLen, byte trailer) PSSSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, byte[] salt) PSSSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, byte[] salt, byte trailer) PSSSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, int sLen) PSSSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, int sLen, byte trailer) -
Method Summary
Modifier and TypeMethodDescriptionstatic PSSSignercreateRawSigner(AsymmetricBlockCipher cipher, Digest digest) static PSSSignercreateRawSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, byte[] salt, byte trailer) static PSSSignercreateRawSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, int sLen, byte trailer) byte[]generate a signature for the message we've been loaded with using the key we were initialised with.voidinit(boolean forSigning, CipherParameters param) Initialise the signer for signing or verification.voidreset()reset the internal statevoidupdate(byte b) update the internal digest with the byte bvoidupdate(byte[] in, int off, int len) update the internal digest with the byte array inbooleanverifySignature(byte[] signature) return true if the internal state represents the signature described in the passed in array.
-
Field Details
-
TRAILER_IMPLICIT
public static final byte TRAILER_IMPLICIT- See Also:
-
-
Constructor Details
-
PSSSigner
basic constructor- Parameters:
cipher- the asymmetric cipher to use.digest- the digest to use.sLen- the length of the salt to use (in bytes).
-
PSSSigner
-
PSSSigner
-
PSSSigner
public PSSSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, int sLen, byte trailer) -
PSSSigner
-
PSSSigner
-
PSSSigner
public PSSSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, byte[] salt, byte trailer)
-
-
Method Details
-
createRawSigner
-
createRawSigner
public static PSSSigner createRawSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, int sLen, byte trailer) -
createRawSigner
public static PSSSigner createRawSigner(AsymmetricBlockCipher cipher, Digest contentDigest, Digest mgfDigest, byte[] salt, byte trailer) -
init
Description copied from interface:SignerInitialise the signer for signing or verification. -
update
public void update(byte b) update the internal digest with the byte b -
update
public void update(byte[] in, int off, int len) update the internal digest with the byte array in -
reset
public void reset()reset the internal state -
generateSignature
generate a signature for the message we've been loaded with using the key we were initialised with.- Specified by:
generateSignaturein interfaceSigner- Throws:
CryptoExceptionDataLengthException
-
verifySignature
public boolean verifySignature(byte[] signature) return true if the internal state represents the signature described in the passed in array.- Specified by:
verifySignaturein interfaceSigner
-