Modifier and Type | Class and Description |
---|---|
private static enum |
Modifier and Type | Field and Description |
---|---|
private static final int | |
private final ByteArrayOutputStream | |
private final int | |
private boolean | |
private byte[] | |
private final long | |
private static final JavaNioAccess | |
private int | |
private P11Key | |
private SecureRandom | |
private Session | |
private final Token | |
private final P11KeyWrapCipher. |
Access | Constructor and Description |
---|---|
pack-priv |
Modifier and Type | Method and Description |
---|---|
private void | |
private int | |
protected byte[] | engineDoFinal(byte[]
the input buffer in, int the offset in inOfs, int input where the input startsthe input length inLen)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 in, int the offset in inOfs, int input where the input
startsthe input length inLen, byte[] the buffer for the result out, int the offset in outOfs)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 | engineDoFinal(ByteBuffer
the input ByteBuffer inBuffer, ByteBuffer the output ByteBuffer outBuffer)Overrides 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 sr)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 sr)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 sr)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 Key | engineUnwrap(byte[]
the key to be unwrapped wrappedKey, String the algorithm associated with the wrapped
key wrappedKeyAlgo, int the type of the wrapped key. This is one of
wrappedKeyType)SECRET_KEY , PRIVATE_KEY , or PUBLIC_KEY .Overrides javax. Unwrap a previously wrapped key. |
protected byte[] | engineUpdate(byte[]
the input buffer in, int the offset in inOfs, int input where the input startsthe input length inLen)Implements abstract javax. Continues a multiple-part encryption or decryption operation
(depending on how this |
protected int | engineUpdate(byte[]
the input buffer in, int the offset in inOfs, int input where the input
startsthe input length inLen, byte[] the buffer for the result out, int the offset in outOfs)output where the result
is storedImplements abstract javax. Continues a multiple-part encryption or decryption operation
(depending on how this |
protected int | engineUpdate(ByteBuffer
the input ByteBuffer inBuffer, ByteBuffer the output ByteBuffer outBuffer)Overrides javax. Continues a multiple-part encryption or decryption operation
(depending on how this |
protected byte[] | |
private void | |
private void | |
private int | |
private int | |
private void | |
private int | |
private int | |
private void | |
private void |
BLK_SIZE | back to summary |
---|---|
private static final int BLK_SIZE |
dataBuffer | back to summary |
---|---|
private final ByteArrayOutputStream dataBuffer |
fixedKeySize | back to summary |
---|---|
private final int fixedKeySize |
initialized | back to summary |
---|---|
private boolean initialized |
iv | back to summary |
---|---|
private byte[] iv |
mechanism | back to summary |
---|---|
private final long mechanism |
NIO_ACCESS | back to summary |
---|---|
private static final JavaNioAccess NIO_ACCESS |
opmode | back to summary |
---|---|
private int opmode |
p11Key | back to summary |
---|---|
private P11Key p11Key |
random | back to summary |
---|---|
private SecureRandom random |
session | back to summary |
---|---|
private Session session |
token | back to summary |
---|---|
private final Token token |
type | back to summary |
---|---|
private final P11KeyWrapCipher. |
P11KeyWrapCipher | back to summary |
---|---|
pack-priv P11KeyWrapCipher(Token token, String algorithm, long mechanism) throws PKCS11Exception, NoSuchAlgorithmException |
cancelOperation | back to summary |
---|---|
private void cancelOperation() |
doFinalLength | back to summary |
---|---|
private int doFinalLength(int inLen) |
engineDoFinal | back to summary |
---|---|
protected byte[] engineDoFinal(byte[] in, int inOfs, int inLen) 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[] in, int inOfs, int inLen, byte[] out, int outOfs) 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
|
engineDoFinal | back to summary |
---|---|
protected int engineDoFinal(ByteBuffer inBuffer, ByteBuffer outBuffer) throws ShortBufferException, IllegalBlockSizeException, BadPaddingException Overrides 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
All If Upon finishing, this method resets this Note if any exception is thrown, this Subclasses should consider overriding this method if they can process ByteBuffers more efficiently than byte arrays.
|
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) throws InvalidKeyException 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 sr) 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 sr) 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 sr) 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.
|
engineUnwrap | back to summary |
---|---|
protected Key engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgo, int wrappedKeyType) throws InvalidKeyException, NoSuchAlgorithmException Overrides javax. Doc from javax. Unwrap a previously wrapped key. This concrete method has been added to this previously-defined
abstract class. (For backwards compatibility, it cannot be abstract.)
It may be overridden by a provider to unwrap a previously wrapped key.
Such an override is expected to throw an
|
engineUpdate | back to summary |
---|---|
protected byte[] engineUpdate(byte[] in, int inOfs, int inLen) 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[] in, int inOfs, int inLen, byte[] out, int outOfs) throws ShortBufferException Implements abstract javax. Doc from javax. Continues a multiple-part encryption or decryption operation
(depending on how this The first If the
|
engineUpdate | back to summary |
---|---|
protected int engineUpdate(ByteBuffer inBuffer, ByteBuffer outBuffer) throws ShortBufferException Overrides javax. Doc from javax. Continues a multiple-part encryption or decryption operation
(depending on how this All If Subclasses should consider overriding this method if they can process ByteBuffers more efficiently than byte arrays.
|
engineWrap | back to summary |
---|---|
protected byte[] engineWrap(Key tbwKey) throws IllegalBlockSizeException, InvalidKeyException Overrides javax. Doc from javax. Wrap a key. This concrete method has been added to this previously-defined
abstract class. (For backwards compatibility, it cannot be abstract.)
It may be overridden by a provider to wrap a key.
Such an override is expected to throw an
|
ensureInitialized | back to summary |
---|---|
private void ensureInitialized() throws PKCS11Exception |
handleEncException | back to summary |
---|---|
private void handleEncException(String msg, PKCS11Exception e) throws IllegalBlockSizeException, ShortBufferException, ProviderException |
implDoFinal | back to summary |
---|---|
private int implDoFinal(byte[] in, int inOfs, int inLen, byte[] out, int outOfs, int outLen) throws ShortBufferException, IllegalBlockSizeException, BadPaddingException |
implDoFinal | back to summary |
---|---|
private int implDoFinal(ByteBuffer inBuffer, ByteBuffer outBuffer) throws ShortBufferException, IllegalBlockSizeException, BadPaddingException |
implInit | back to summary |
---|---|
private void implInit(int opmode, Key key, byte[] iv, SecureRandom sr) throws InvalidKeyException, InvalidAlgorithmParameterException |
implUpdate | back to summary |
---|---|
private int implUpdate(byte[] in, int inOfs, int inLen) |
implUpdate | back to summary |
---|---|
private int implUpdate(ByteBuffer inBuf) |
initialize | back to summary |
---|---|
private void initialize() throws PKCS11Exception |
reset | back to summary |
---|---|
private void reset(boolean doCancel) |
Modifier and Type | Field and Description |
---|---|
private final byte[] | |
public static final P11KeyWrapCipher. | |
public static final P11KeyWrapCipher. | |
public static final P11KeyWrapCipher. | |
private final String | |
private final String |
Access | Constructor and Description |
---|---|
private |
Modifier and Type | Method and Description |
---|---|
public static P11KeyWrapCipher. | |
public static P11KeyWrapCipher. |
defIv | back to summary |
---|---|
private final byte[] defIv |
KW_NOPADDING | back to summary |
---|---|
public static final P11KeyWrapCipher. |
KW_PKCS5PADDING | back to summary |
---|---|
public static final P11KeyWrapCipher. |
KWP_NOPADDING | back to summary |
---|---|
public static final P11KeyWrapCipher. |
mode | back to summary |
---|---|
private final String mode |
padding | back to summary |
---|---|
private final String padding |
KeyWrapType | back to summary |
---|---|
private KeyWrapType(String mode, String padding) |
valueOf | back to summary |
---|---|
public static P11KeyWrapCipher. |
values | back to summary |
---|---|
public static P11KeyWrapCipher. |