Modifier and Type | Class and Description |
---|---|
class |
Certificate
Wraps the Certificate class CKO_CERTIFICATE
|
class |
Data
Wraps a PKCS#11 Data Object
|
class |
Key
Wraps a PKCS#11 Key Object.
|
class |
PrivateKey
Wraps a PKCS#11 PrivateKey object
|
class |
PublicKey
Wraps a PKCS#11 PublicKey object
|
class |
RSAPrivateKey
Wraps a PKCS#11 RSAPrivateKey object
|
class |
RSAPublicKey
Wraps a PKCS#11 RSAPublicKey object
|
class |
SecretKey
Wraps a PKCS#11 SecretKey object
|
class |
Storage
Wraps a PKCS#11 Storage Object
|
class |
X509Certificate
Wraps a PKCS#11 X509Certificate object
|
Modifier and Type | Method and Description |
---|---|
CryptokiObject |
CryptokiObject.Copy(java.util.ArrayList<CryptokiAttribute> attList)
Copies this object, creating a new object for the copy
The template may specify new values for any attributes of the object that can ordinarily
be modified (e.g., in the course of copying a secret key, a key’s CKA_EXTRACTABLE
attribute may be changed from CK_TRUE to CK_FALSE, but not the other way around.
|
CryptokiObject |
CryptokiObjects.create(java.util.List<CryptokiAttribute> attList)
Creates a new object
If a call to CreateObject cannot support the precise template supplied to it, it will fail
and return without creating any object.
|
CryptokiObject |
CryptokiObjects.find(java.util.List<CryptokiAttribute> attList)
Finds the first objects matching criteria
Calls C_FindObjectsInit, C_FindObjects, C_FindObjectsFinal of the underlying native PKCS#11
The object search operation will only find objects that the session can view. |
Modifier and Type | Method and Description |
---|---|
java.util.List<CryptokiObject> |
CryptokiObjects.find(java.util.List<CryptokiAttribute> attList,
int nMaxCount)
Finds objects
Call C_FindObjectsInit, C_FindObjects, C_FindObjectsFinal of the underlying native PKCS#11
The object search operation will only find objects that the session can view. |
Modifier and Type | Method and Description |
---|---|
int |
CryptokiObjects.destroy(CryptokiObject obj)
Destroys an object
Only session objects can be destroyed during a read-only session.
|