Modifier and Type | Field and Description |
---|---|
private final int | |
private final P11Cipher | |
private final String | |
private final PBEUtil. | |
private final P11SecretKeyFactory. | |
private final Token |
Access | Constructor and Description |
---|---|
pack-priv |
Modifier and Type | Method and Description |
---|---|
protected byte[] | engineDoFinal(byte[]
the input buffer input, int the offset in inputOffset, int input where the input startsthe input length inputLen)Implements abstract javax. Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation. |
protected int | engineDoFinal(byte[]
the input buffer input, int the offset in inputOffset, int input where the input
startsthe input length inputLen, byte[] the buffer for the result output, int the offset in outputOffset)output where the result
is storedImplements abstract javax. Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation. |
protected int | engineGetBlockSize()
Implements abstract javax. Returns the block size (in bytes). |
protected byte[] | engineGetIV()
Implements abstract javax. Returns the initialization vector (IV) in a new buffer. |
protected int | engineGetKeySize(Key
the key object key)Overrides javax. Returns the key size of the given key object in bits. |
protected int | engineGetOutputSize(int
the input length (in bytes) inputLen)Implements abstract javax. Returns the length in bytes that an output buffer would
need to be in order to hold the result of the next |
protected AlgorithmParameters | engineGetParameters()
Implements abstract javax. Returns the parameters used with this cipher. |
protected void | engineInit(int
the operation mode of this opmode, Key CipherSpi object
(this is one of the following:
ENCRYPT_MODE , DECRYPT_MODE ,
WRAP_MODE or UNWRAP_MODE )the encryption key key, SecureRandom the source of randomness random)Implements abstract javax. Initializes this |
protected void | engineInit(int
the operation mode of this opmode, Key CipherSpi object
(this is one of the following:
ENCRYPT_MODE , DECRYPT_MODE ,
WRAP_MODE , or UNWRAP_MODE )the encryption key key, AlgorithmParameterSpec the algorithm parameters params, SecureRandom the source of randomness random)Implements abstract javax. Initializes this |
protected void | engineInit(int
the operation mode of this opmode, Key CipherSpi object
(this is one of the following:
ENCRYPT_MODE , DECRYPT_MODE ,
WRAP_MODE , or UNWRAP_MODE )the encryption key key, AlgorithmParameters the algorithm parameters params, SecureRandom the source of randomness random)Implements abstract javax. Initializes this |
protected void | engineSetMode(String
the cipher mode mode)Implements abstract javax. Sets the mode of this cipher. |
protected void | engineSetPadding(String
the padding mechanism padding)Implements abstract javax. Sets the padding mechanism of this cipher. |
protected byte[] | engineUpdate(byte[]
the input buffer input, int the offset in inputOffset, int input where the input startsthe input length inputLen)Implements abstract javax. Continues a multiple-part encryption or decryption operation
(depending on how this |
protected int | engineUpdate(byte[]
the input buffer input, int the offset in inputOffset, int input where the input
startsthe input length inputLen, byte[] the buffer for the result output, int the offset in outputOffset)output where the result
is storedImplements abstract javax. Continues a multiple-part encryption or decryption operation
(depending on how this |
blkSize | back to summary |
---|---|
private final int blkSize |
cipher | back to summary |
---|---|
private final P11Cipher cipher |
pbeAlg | back to summary |
---|---|
private final String pbeAlg |
pbes2Params | back to summary |
---|---|
private final PBEUtil. |
svcPbeKi | back to summary |
---|---|
private final P11SecretKeyFactory. |
token | back to summary |
---|---|
private final Token token |
P11PBECipher | back to summary |
---|---|
pack-priv P11PBECipher(Token token, String pbeAlg, long cipherMech) throws PKCS11Exception, NoSuchAlgorithmException |
engineDoFinal | back to summary |
---|---|
protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) throws IllegalBlockSizeException, BadPaddingException Implements abstract javax. Doc from javax. Encrypts or decrypts data in a single-part operation,
or finishes a multiple-part operation.
The data is encrypted or decrypted, depending on how this
The first Upon finishing, this method resets this Note if any exception is thrown, this
|
engineDoFinal | back to summary |
---|---|
protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws ShortBufferException, IllegalBlockSizeException, BadPaddingException Implements abstract javax. Doc from javax. Encrypts or decrypts data in a single-part operation,
or finishes a multiple-part operation.
The data is encrypted or decrypted, depending on how this
The first If the Upon finishing, this method resets this Note if any exception is thrown, this
|
engineGetBlockSize | back to summary |
---|---|
protected int engineGetBlockSize() Implements abstract javax. Doc from javax. Returns the block size (in bytes).
|
engineGetIV | back to summary |
---|---|
protected byte[] engineGetIV() Implements abstract javax. Doc from javax. Returns the initialization vector (IV) in a new buffer. This is useful in the context of password-based encryption or decryption, where the IV is derived from a user-provided passphrase.
|
engineGetKeySize | back to summary |
---|---|
protected int engineGetKeySize(Key key) Overrides javax. Doc from javax. Returns the key size of the given key object in bits. This concrete method has been added to this previously-defined
abstract class. It throws an |
engineGetOutputSize | back to summary |
---|---|
protected int engineGetOutputSize(int inputLen) Implements abstract javax. Doc from javax. Returns the length in bytes that an output buffer would
need to be in order to hold the result of the next This call takes into account any unprocessed (buffered) data from a
previous The actual output length of the next
|
engineGetParameters | back to summary |
---|---|
protected AlgorithmParameters engineGetParameters() Implements abstract javax. Doc from javax. Returns the parameters used with this cipher. The returned parameters may be the same that were used to initialize
this cipher, or may contain additional default or random parameter
values used by the underlying cipher implementation. If the required
parameters were not supplied and can be generated by the cipher, the
generated parameters are returned. Otherwise,
|
engineInit | back to summary |
---|---|
protected void engineInit(int opmode, Key key, SecureRandom random) throws InvalidKeyException Implements abstract javax. Doc from javax. Initializes this The If this cipher requires any algorithm parameters that cannot be
derived from the given If this cipher requires algorithm parameters that cannot be derived from the input parameters, and there are no reasonable provider-specific default values, initialization will necessarily fail. If this cipher (including its feedback or padding scheme)
requires any random bytes (e.g., for parameter generation), it will get
them from Note that when a
|
engineInit | back to summary |
---|---|
protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) throws InvalidKeyException, InvalidAlgorithmParameterException Implements abstract javax. Doc from javax. Initializes this The If this cipher requires any algorithm parameters and
If this cipher requires algorithm parameters that cannot be derived from the input parameters, and there are no reasonable provider-specific default values, initialization will necessarily fail. If this cipher (including its feedback or padding scheme)
requires any random bytes (e.g., for parameter generation), it will get
them from Note that when a
|
engineInit | back to summary |
---|---|
protected void engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) throws InvalidKeyException, InvalidAlgorithmParameterException Implements abstract javax. Doc from javax. Initializes this The If this cipher requires any algorithm parameters and
If this cipher requires algorithm parameters that cannot be derived from the input parameters, and there are no reasonable provider-specific default values, initialization will necessarily fail. If this cipher (including its feedback or padding scheme)
requires any random bytes (e.g., for parameter generation), it will get
them from Note that when a
|
engineSetMode | back to summary |
---|---|
protected void engineSetMode(String mode) throws NoSuchAlgorithmException Implements abstract javax. Doc from javax. Sets the mode of this cipher.
|
engineSetPadding | back to summary |
---|---|
protected void engineSetPadding(String padding) throws NoSuchPaddingException Implements abstract javax. Doc from javax. Sets the padding mechanism of this cipher.
|
engineUpdate | back to summary |
---|---|
protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) Implements abstract javax. Doc from javax. Continues a multiple-part encryption or decryption operation
(depending on how this The first
|
engineUpdate | back to summary |
---|---|
protected int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws ShortBufferException Implements abstract javax. Doc from javax. Continues a multiple-part encryption or decryption operation
(depending on how this The first If the
|