Class ExportedKeySpec
ExportedKeySpec
is a streamlined model representing an exported
cryptographic key. It contains metadata (e.g. key type, algorithm, usage
counts, timestamps) without exposing the entire internal OpenAPI
ExportKey200Response
class.
Unlike the OpenAPI model (which uses strings for date/time fields),
this class uses ZonedDateTime
for fields like
createdAt
, expiresAt
, softLimitExpiration
,
and lastUsedAt
, to avoid manual ISO-8601 parsing. The SDK
handles conversion to/from string internally, making usage simpler.
Typically, you obtain an instance of this class by calling
sdk.exportKey(kid)
, which returns an ExportedKeySpec
object. The private key is never returned in an export response, so
this class does not contain a privateKey field.
Example usage:
ExportedKeySpec eks = sdk.exportKey("myKeyId");
System.out.println("Kid: " + eks.getKid());
System.out.println("Public key: " + eks.getPublicKey());
Example JSON (produced by an export operation):
{
"modelVersion": "v1.0",
"kid": "myKeyId",
"uuid": "6fff1a2d-3a69-49be-bb61-53623e9a6c1c",
"kty": "RSA",
"alg": "RSA-2048",
"publicKey": "BASE64-PUBLIC-KEY",
"keyOps": ["encrypt", "decrypt"],
"exportable": true,
"createdAt": "2025-03-14T18:32:59.570053200Z",
"expiresAt": "2125-03-14T18:32:59.570053200Z",
"softLimitExpiration": "2125-03-14T18:32:59.570053200Z",
"usageCount": 42,
"lastUsedAt": "2025-03-20T08:00:00Z",
"softUsageLimit": 10000,
"maxUsageLimit": 20000,
"status": "ACTIVE",
"nextKid": "myRotatedKeyId",
"previousKid": "myOlderKeyId",
"hash": "a334bc206cbc52eaabdd958c69f5d99ad7ae86e84f4c..."
}
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAlg()
Gets the algorithm, e.g.Gets the UTC time when this key was created.Gets the hard expiration time of the key (UTC).Indicates if this key is exportable from the secure store.getHash()
Gets the hash or fingerprint used for integrity checks.Gets the permitted key operations.getKid()
Gets the key identifier (kid).getKty()
Gets the key type (kty).Gets the last time this key was used (UTC).Gets the maximum usage limit for this key. 0 or null = unlimited.Gets the model or schema version.If this key was rotated to a new key, the new key's kid.If this key was rotated from an older key, the old key's kid.Gets the public key portion, if applicable.Gets the soft-limit expiration (UTC).Gets the soft usage limit for this key.Gets the current status of the key (e.g.Gets the usage count (how many times this key has been used).getUuid()
Gets the internal UUID for this key.void
Sets the algorithm, e.g.void
setCreatedAt
(ZonedDateTime createdAt) Sets the creation time of this key (UTC).void
setExpiresAt
(ZonedDateTime expiresAt) Sets the hard expiration time of the key (UTC).void
setExportable
(Boolean exportable) Sets whether this key is exportable.void
Sets the hash or fingerprint used for integrity checks.void
Sets the permitted key operations.void
Sets the key identifier (kid).void
Sets the key type, e.g.void
setLastUsedAt
(ZonedDateTime lastUsedAt) Sets the last time this key was used (UTC).void
setMaxUsageLimit
(Integer maxUsageLimit) Sets the maximum usage limit for this key. 0 or null = unlimited.void
setModelVersion
(String modelVersion) Sets the model or schema version for this key representation.void
setNextKid
(String nextKid) Sets the next key ID if this key was rotated to a newer key.void
setPreviousKid
(String previousKid) Sets the previous key ID if this key was rotated from an older key.void
setPublicKey
(String publicKey) Sets the public key portion, if applicable.void
setSoftLimitExpiration
(ZonedDateTime softLimitExpiration) Sets the soft-limit expiration (UTC).void
setSoftUsageLimit
(Integer softUsageLimit) Sets the soft usage limit for this key, used to trigger warnings before reaching the max usage limit.void
Sets the current status of this key, e.g.void
setUsageCount
(Integer usageCount) Sets the current usage count for this key.void
Sets the internal UUID for this key.
-
Constructor Details
-
ExportedKeySpec
public ExportedKeySpec()No-args constructor.
-
-
Method Details
-
getModelVersion
Gets the model or schema version.- Returns:
- modelVersion
-
setModelVersion
Sets the model or schema version for this key representation.- Parameters:
modelVersion
- the version string (e.g. "v1.0")
-
getKid
Gets the key identifier (kid).- Returns:
- kid
-
setKid
Sets the key identifier (kid).- Parameters:
kid
- a unique key identifier
-
getUuid
Gets the internal UUID for this key.- Returns:
- uuid or null if not assigned
-
setUuid
Sets the internal UUID for this key.- Parameters:
uuid
- a UUID string
-
getKty
Gets the key type (kty).- Returns:
- kty
-
setKty
Sets the key type, e.g. "RSA", "EC", "oct", "ML-KEM".- Parameters:
kty
- the key type
-
getAlg
Gets the algorithm, e.g. "RSA-2048", "ML-KEM-768", etc.- Returns:
- the algorithm string
-
setAlg
Sets the algorithm, e.g. "RSA-2048", "ML-KEM-512".- Parameters:
alg
- the algorithm
-
getPublicKey
Gets the public key portion, if applicable.- Returns:
- the public key in Base64 or PEM, or null
-
setPublicKey
Sets the public key portion, if applicable.- Parameters:
publicKey
- the public key in Base64 or PEM format
-
getKeyOps
Gets the permitted key operations.- Returns:
- a list of key operations
-
setKeyOps
Sets the permitted key operations.- Parameters:
keyOps
- a list of operations, e.g. ["encrypt", "decrypt"]
-
getExportable
Indicates if this key is exportable from the secure store.- Returns:
- true if exportable, false otherwise or null if not specified
-
setExportable
Sets whether this key is exportable.- Parameters:
exportable
- true if exportable, false otherwise
-
getCreatedAt
Gets the UTC time when this key was created.- Returns:
- createdAt or null
-
setCreatedAt
Sets the creation time of this key (UTC).- Parameters:
createdAt
- a ZonedDateTime
-
getExpiresAt
Gets the hard expiration time of the key (UTC).- Returns:
- expiresAt or null if not set
-
setExpiresAt
Sets the hard expiration time of the key (UTC).- Parameters:
expiresAt
- a ZonedDateTime
-
getSoftLimitExpiration
Gets the soft-limit expiration (UTC).- Returns:
- softLimitExpiration or null
-
setSoftLimitExpiration
Sets the soft-limit expiration (UTC). The system may warn or restrict usage after this time.- Parameters:
softLimitExpiration
- a ZonedDateTime
-
getUsageCount
Gets the usage count (how many times this key has been used).- Returns:
- usageCount or null if not tracked
-
setUsageCount
Sets the current usage count for this key.- Parameters:
usageCount
- an integer for how many times this key was used
-
getLastUsedAt
Gets the last time this key was used (UTC).- Returns:
- lastUsedAt or null if not tracked
-
setLastUsedAt
Sets the last time this key was used (UTC).- Parameters:
lastUsedAt
- a ZonedDateTime
-
getSoftUsageLimit
Gets the soft usage limit for this key.- Returns:
- softUsageLimit or null
-
setSoftUsageLimit
Sets the soft usage limit for this key, used to trigger warnings before reaching the max usage limit.- Parameters:
softUsageLimit
- an integer or null
-
getMaxUsageLimit
Gets the maximum usage limit for this key. 0 or null = unlimited.- Returns:
- maxUsageLimit
-
setMaxUsageLimit
Sets the maximum usage limit for this key. 0 or null = unlimited.- Parameters:
maxUsageLimit
- an integer or null
-
getStatus
Gets the current status of the key (e.g. "ACTIVE", "EXPIRED", "REVOKED").- Returns:
- status or null
-
setStatus
Sets the current status of this key, e.g. "ACTIVE", "EXPIRED", "REVOKED".- Parameters:
status
- a string representing the key status
-
getNextKid
If this key was rotated to a new key, the new key's kid.- Returns:
- nextKid
-
setNextKid
Sets the next key ID if this key was rotated to a newer key.- Parameters:
nextKid
- the next key's identifier
-
getPreviousKid
If this key was rotated from an older key, the old key's kid.- Returns:
- previousKid
-
setPreviousKid
Sets the previous key ID if this key was rotated from an older key.- Parameters:
previousKid
- the older key's identifier
-
getHash
Gets the hash or fingerprint used for integrity checks.- Returns:
- hash or null if not set
-
setHash
Sets the hash or fingerprint used for integrity checks.- Parameters:
hash
- a string representing the key's hash
-