Package | Description |
---|---|
oracle.okv.kmip |
This package contains enum class for KMIP tags, tag enumerations, and types.
|
oracle.okv.operation |
This package contains classes representing all the supported KMIP operations.
|
oracle.okv.service |
This package contains the OKVService class through which all the high level
Java SDK APIs are exposed.
|
Modifier and Type | Method and Description |
---|---|
static OKVCryptoContext |
OKVCryptoContext.okvCryptoContextCreate(OKVTagEnum cryptoOperation)
Initializes and returns an empty OKVCryptoContext object for a
specific crypto operation.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
OKVBatchOperation.okvDecrypt(java.lang.String uid,
byte[] data,
OKVCryptoContext cryptoContext)
Performs KMIP Decryption operation on the provided data using
KMIP object.
|
java.lang.Integer |
OKVBatchOperation.okvEncrypt(java.lang.String uid,
byte[] data,
OKVCryptoContext cryptoContext)
Performs KMIP Encryption operation on the provided data using
KMIP object.
|
java.lang.Integer |
OKVBatchOperation.okvSign(java.lang.String uid,
byte[] data,
DataType dataType,
OKVCryptoContext cryptoContext)
Performs KMIP Sign operation on the provided data using KMIP object.
|
java.lang.Integer |
OKVBatchOperation.okvSignVerify(java.lang.String uid,
byte[] data,
DataType dataType,
byte[] signatureData,
OKVCryptoContext cryptoContext)
Performs KMIP Signature Verify operation on the provided data
using KMIP object.
|
Modifier and Type | Method and Description |
---|---|
OKVDecryptResponse |
OKVService.okvDecrypt(java.lang.String uid,
byte[] data,
OKVCryptoContext cryptoContext)
API to perform the KMIP Decryption operation on the provided data using
KMIP object.
|
OKVEncryptResponse |
OKVService.okvEncrypt(java.lang.String uid,
byte[] data,
OKVCryptoContext cryptoContext)
API to perform the KMIP Encryption operation on the provided data using
KMIP object.
|
OKVSignResponse |
OKVService.okvSign(java.lang.String uid,
byte[] data,
DataType dataType,
OKVCryptoContext cryptoContext)
API to perform the KMIP Sign operation on the provided data using
KMIP object.
|
OKVSignVerifyResponse |
OKVService.okvSignVerify(java.lang.String uid,
byte[] data,
DataType dataType,
byte[] signatureData,
OKVCryptoContext cryptoContext)
API to perform the KMIP Signature Verify operation on the provided
data using KMIP object.
|