|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--Token
The logical view of a cryptographic device defined by Cryptoki.
Constructor Summary | |
Token(Slot slot)
|
Method Summary | |
java.lang.String[] |
getTokenInfo()
Obtains information about a particular token in the system. |
void |
notifyCancelFunction(Session session)
A legacy function which return a legacy error code that define thare is no function executing in parallel in the specified session. |
void |
notifyCloseAllSession(Session session)
Close all sessions an application has with a token. |
void |
notifyCloseSession(Session session)
Close a session between an application and a token. |
OoctiObject |
notifyCopyObject(Session session,
OoctiObject object)
Copies an object, creating a new object for the copy. |
OoctiObject |
notifyCreateObject(Session session,
Template object)
Create a new object. |
byte[] |
notifyDecrypt(Session session,
byte[] encryptedData)
Decrypts a encrypted data in a single part. |
byte[] |
notifyDecryptDigestUpdate(Session session,
byte[] encryptedPartData)
Continues a multiple-part combine decryption and digest operation, processing another data part. |
void |
notifyDecryptFinal(Session session)
Finishes a multiple-part decryption operation. |
void |
notifyDecryptInit(Session session,
Mechanism mechanism,
Key key)
Initializes a decryption operation. |
byte[] |
notifyDecryptUpdate(Session session,
byte[] encryptedPartData)
Continues a multiple-part decryption operation, processing another encrypted data part. |
byte[] |
notifyDecryptVerifyUpdate(Session session,
byte[] encryptedPartData)
Continues a multiple-part combined decryption and verification operation, processing another data part. |
Key |
notifyDeriveKey(Session session,
Mechanism mechanism,
Key baseKey,
Template template)
Derive a key from a bese key, creating a new key object. |
void |
notifyDestroyObject(Session session,
OoctiObject object)
Destroy an object. |
byte[] |
notifyDigest(Session session,
byte[] data)
Digests data in a single part. |
byte[] |
notifyDigestEncryptUpdate(Session session,
byte[] partData)
Continues multiple-part digest and encryption operations, processing another data part. |
void |
notifyDigestFinal(Session session)
Finishes a multiple-part message-digesting operation, returning the message digest. |
void |
notifyDigestInit(Session session,
Mechanism mechanism)
Initializes a message-digesting operation. |
void |
notifyDigestKey(Session session,
SecretKey key)
Continues a multiple-part message-digestion by digesting the value of a secret key. |
byte[] |
notifyDigestUpdate(Session session,
byte[] partData)
Continues a multiple-part message-digesting operation, processing another data part. |
byte[] |
notifyEncrypt(Session session,
byte[] data)
Encrypts single-part data. |
void |
notifyEncryptFinal(Session session)
Finishes a multiple-part encryption operation. |
void |
notifyEncryptInit(Session session,
Mechanism mechanism,
Key key)
Initialize an encryption operation. |
byte[] |
notifyEncryptUpdate(Session session,
byte[] partData)
Continues a multiple-part encryption operation, processing another data part. |
OoctiObject[] |
notifyFindObjects(Session session)
Search for token and session objects that match a template. |
void |
notifyFindObjectsFinal(Session session)
Terminates a search for token and session object. |
void |
notifyFindObjectsInit(Session session,
Template match)
Initializes a search for token and session object that match a template. |
Key |
notifyGenerateKey(Session session,
Mechanism mechanism,
Template template)
Generate a secret key, creating a new key object. |
Key[] |
notifyGenerateKeyPair(Session session,
Mechanism mechanism,
Template publicKey,
Template privateKey)
Generate a public/private key pair, creating new key objects. |
char |
notifyGenerateRandom(Session session)
Generates random or pseudo-random data. |
void |
notifyGetFunctionStatus(Session session)
A legacy function which return a legacy error code that define thare is no function executing in parallel in the specified session. |
java.lang.String[] |
notifyGetOperationState(Session session)
Obtain a copy of the cryptographic operations state of a session, encoded as a string of byte. |
Session |
notifyOpenSession()
Opens a session with the Token |
void |
notifySeedRandom(Session session,
byte[] seed)
Mixes additional seed material into the token's random number generator. |
void |
notifySetOperationState(Session session,
java.lang.String operationState,
Key encryptionKey,
Key authenticationKey)
Restore the cryptographic operations state of a session from a string of byte obtained with getOperationState. |
byte[] |
notifySign(Session session,
byte[] data)
Sings data in a single part, where the signature is an appendix to the data. |
byte[] |
notifySignEncryptUpdate(Session session,
byte[] partData)
Continues a multiple-part combined signature and encryption operation, processing another data part. |
void |
notifySignFinal(Session session)
Finishes a multiple-part signature operation, returning the signature. |
void |
notifySignInit(Session session,
Mechanism mechanism,
Key key)
Initialize a signature operation, where the signature is an appendix to the data. |
byte[] |
notifySignRecover(Session session,
byte[] data)
Signs data in a single operation, where the data can be recovered from the signature. |
void |
notifySignRecoverInit(Session session,
Mechanism mechanism,
Key key)
Initializes a signature operation, where the data can be recovered from the signature. |
byte[] |
notifySignUpdate(Session session,
byte[] partData)
Continue a multiple-part signature operation, processing another data part. |
Key |
notifyUnwrapKey(Session session,
Mechanism mechanism,
Key unwrappingKey,
Key wrappedKey,
Template template)
Unwraps a wrapped key, creating a new private key or secret key. |
byte[] |
notifyVerify(Session session,
byte[] data)
Verifies a signature in a single-part operation. |
void |
notifyVerifyFinal(Session session)
Finishes a multiple-part verification operation, checking the signature. |
void |
notifyVerifyInit(Session session,
Mechanism mechanism,
Key key)
Initialize a verification operation, where the signature is an appendix to the data. |
byte[] |
notifyVerifyRecover(Session session,
byte[] signatureData)
Verifies a signature in a single-part operation, where the data is recovered from the signature. |
void |
notifyVerifyRecoverInit(Session session,
Mechanism mechanism,
Key key)
Initialize a signature verification operation, where the data is recovered from the signature. |
byte[] |
notifyVerifyUpdate(Session session,
byte[] partData)
Continue a multiple-part verification operation, processing another data part. |
Key |
notifyWrapKey(Session session,
Mechanism mechanism,
Key wrappingKey,
Key key)
Wrap a private or secret key. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Token(Slot slot)
Method Detail |
public java.lang.String[] getTokenInfo() throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- SLOT_ID_INVALID
- TOKEN_NOT_PRESENT
- TOKEN_NOT_RECOGNIZED
- ARGUMENTS_BAD
- public Session notifyOpenSession() throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FINCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- SESSION_COUNT
- SESSION_PARALLEL_NOT_SUPPORTED
- SESSION_READ_WRITE_SO_EXISTS
- SLOT_ID_INVALID
- TOKEN_NOT_PRESENT
- TOKEN_NOT_RECOGNIZED
- TOKEN_WRITE_PROTECTED
- ARGUMENTS_BAD
- public void notifyCloseSession(Session session) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- public void notifyCloseAllSession(Session session) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- SESSION_HANDLE_INVALID
- TOKEN_NOT_PRESENT
- public void notifyEncryptInit(Session session, Mechanism mechanism, Key key) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- KEY_FUNCTION_NOT_PERMITED
- KEY_HANDLE_INVALID
- KEY_SIZE_RANGE
- KEY_TYPE_INCONSISTENT
- MECHANISM_INVALID
- MECHANISM_PARAM_INVALID
- OPERATION_ACTIVE
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- USER_NOT_LOGGED_IN
- public byte[] notifyEncrypt(Session session, byte[] data) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DATA_INVALID
- DATA_LEN_RANGE
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public byte[] notifyEncryptUpdate(Session session, byte[] partData) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DATA_LEN_RANGE
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public void notifyEncryptFinal(Session session) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DATA_LEN_RANGE
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public void notifyDecryptInit(Session session, Mechanism mechanism, Key key) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- KEY_FUNCTION_NOT_PERMITTED
- KEY_HANDLE_INVALID
- KEY_SIZE_RANGE
- KEY_TYPE_INCONSISTENT
- MECHANISM_INVALID
- MECHANISM_PARAM_INVALID
- OPERATION_ACTIVE
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- USER_NOT_LOGGED_IN
- ARGUMENTS_BAD
- public byte[] notifyDecrypt(Session session, byte[] encryptedData) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- ENCRYPTED_DATA_INVALID
- ENCRYPTED_DATA_LEN_RANGE
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public byte[] notifyDecryptUpdate(Session session, byte[] encryptedPartData) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- ENCRYPTED_DATA_INVALID
- ENCRYPTED_DATA_LEN_RANGE
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public void notifyDecryptFinal(Session session) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- ENCRYPTED_DATA_INVALID
- ENCRYPTED_DATA_LEN_RANGE
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public void notifyDigestInit(Session session, Mechanism mechanism) throws OoctiException
CRYPTKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- MECHANISM_INVALID
- MECHANISM_PARAM_INVALID
- OPERATION_ACTIVE
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- USER_NOT_LOGGED_IN
- ARGUMENTS_BAD
- public byte[] notifyDigest(Session session, byte[] data) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public byte[] notifyDigestUpdate(Session session, byte[] partData) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public void notifyDigestKey(Session session, SecretKey key) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- KEY_HANDLE_INVALID
- KEY_INDIGESTIBLE
- KEY_SIZE_RANGE
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANLDE_INVALID
- public void notifyDigestFinal(Session session) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public void notifySignInit(Session session, Mechanism mechanism, Key key) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- KEY_FUNCTION_NOT_PERMITED
- KEY_HANDLE_INVALID
- KEY_SIZE_RANGE
- KEY_TYPE_INCONSISTENT
- MECHANISM_INVALID
- MECHANISM_PARAM_INVALID
- OPERATION_ACTIVE
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- USER_NOT_LOGGED_IN
- ARGUMENTS_BAD
- public byte[] notifySign(Session session, byte[] data) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DATA_INVALID
- DATA_LEN_RANGE
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public byte[] notifySignUpdate(Session session, byte[] partData) throws OoctiException
public void notifySignFinal(Session session) throws OoctiException
public void notifySignRecoverInit(Session session, Mechanism mechanism, Key key) throws OoctiException
public byte[] notifySignRecover(Session session, byte[] data) throws OoctiException
public void notifyVerifyInit(Session session, Mechanism mechanism, Key key) throws OoctiException
public byte[] notifyVerify(Session session, byte[] data) throws OoctiException
public byte[] notifyVerifyUpdate(Session session, byte[] partData) throws OoctiException
public void notifyVerifyFinal(Session session) throws OoctiException
public void notifyVerifyRecoverInit(Session session, Mechanism mechanism, Key key) throws OoctiException
public byte[] notifyVerifyRecover(Session session, byte[] signatureData) throws OoctiException
public byte[] notifyDigestEncryptUpdate(Session session, byte[] partData) throws OoctiException
public byte[] notifyDecryptDigestUpdate(Session session, byte[] encryptedPartData) throws OoctiException
public byte[] notifySignEncryptUpdate(Session session, byte[] partData) throws OoctiException
public byte[] notifyDecryptVerifyUpdate(Session session, byte[] encryptedPartData) throws OoctiException
public Key notifyGenerateKey(Session session, Mechanism mechanism, Template template) throws OoctiException
public Key[] notifyGenerateKeyPair(Session session, Mechanism mechanism, Template publicKey, Template privateKey) throws OoctiException
public Key notifyWrapKey(Session session, Mechanism mechanism, Key wrappingKey, Key key) throws OoctiException
public Key notifyUnwrapKey(Session session, Mechanism mechanism, Key unwrappingKey, Key wrappedKey, Template template) throws OoctiException
public Key notifyDeriveKey(Session session, Mechanism mechanism, Key baseKey, Template template) throws OoctiException
public void notifySeedRandom(Session session, byte[] seed) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_ACTIVE
- RANDOM_SEED_NOT_SUPPORTED
- RANDOM_NO_RNG
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- USER_NOT_LOGGED_IN
- ARGUMENTS_BAD
- public char notifyGenerateRandom(Session session) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_CANCELED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_ACTIVE
- RANDOM_NO_RNG
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- USER_NOT_LOGGED_IN
- ARGUMENTS_BAD
- public void notifyCancelFunction(Session session) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- FUNCTION_FAILED
- FUNCTION_NOT_PARALLEL
- GENERAL_ERROR
- HOST_MEMORY
- SESSION_HANDLE_INVALID
- SESSION_CLOSED
- public void notifyGetFunctionStatus(Session session) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- FUNCTION_FAILED
- FUNCTION_NOT_PARALLEL
- GENERAL_ERROR
- HOST_MEMORY
- SESSION_HANDLE_INVALID
- SESSION_CLOSED
- public OoctiObject notifyCopyObject(Session session, OoctiObject object) throws OoctiException
ATTRIBUTE_READ_ONLY
- ATTRIBUTE_TYPE_INVALID
- ATTRIBUTE_TYPE_INVALID
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OBJECT_HANDLE_INVALID
- SESSION_READ_ONLY
- TEMPLATE_INCONSISTENT
- TOKEN_WRITE_PROTECTED
- USER_NOT_LOGGED_IN
- ARGUMENTS_BAD
- public OoctiObject notifyCreateObject(Session session, Template object) throws OoctiException
ATTRIBUTE_READ_ONLY
- ATTRIBUTE_TYPE_INVALID
- ATTRIBUTE_VALUE_INVALID
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- SESSION_READ_ONLY
- TEMPLATE_INCOMPLETE
- TEMPLATE_INCONSISTENT
- TOKEN_WRITE_PROTECTED
- USER_NOT_LOGGED_IN
- ARGUMENTS_BAD
- public void notifyDestroyObject(Session session, OoctiObject object) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OBJECT_HANDLE_INVALID
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- SESSION_READ_ONLY
- TOKEN_WRITE_PROTECTED
- public void notifyFindObjectsInit(Session session, Template match) throws OoctiException
ATTRIBUTE_TYPE_INVALID
- ATTRIBUTE_VALUE_INVALID
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_ACTIVE
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public OoctiObject[] notifyFindObjects(Session session) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
- public void notifyFindObjectsFinal(Session session) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- public java.lang.String[] notifyGetOperationState(Session session) throws OoctiException
BUFFER_TOO_SMALL
- CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- OPERATION_NOT_INITIALIZED
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- STATE_UNSAVEABLE
- ARGUMENTS_BAD
- public void notifySetOperationState(Session session, java.lang.String operationState, Key encryptionKey, Key authenticationKey) throws OoctiException
CRYPTOKI_NOT_INITIALIZED
- DEVICE_ERROR
- DEVICE_MEMORY
- DEVICE_REMOVED
- FUNCTION_FAILED
- GENERAL_ERROR
- HOST_MEMORY
- KEY_CHANGED
- KEY_NEEDED
- KEY_NOT_NEEDED
- SAVED_STATE_INVALID
- SESSION_CLOSED
- SESSION_HANDLE_INVALID
- ARGUMENTS_BAD
-
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |