Package co.ankatech.ankasecure.sdk.model
Class GenerateKeySpec
Object
GenerateKeySpec
GenerateKeySpec
is a streamlined model for clients to request
generation of a new cryptographic key, without exposing all fields of
internal classes. It supports classical, post-quantum, and symmetric
algorithms, depending on the kty
and alg
you specify.
Clients can provide timestamps as ZonedDateTime
objects (e.g.,
expiresAt
for the hard expiration), and the SDK will handle
converting them to ISO-8601 before sending to the server. This removes
the burden of date/time formatting from the client application.
Example usage:
GenerateKeySpec spec = new GenerateKeySpec();
spec.setKid("myNewKey");
spec.setKty("ML-KEM");
spec.setAlg("ML-KEM-512");
// Set expiration in UTC
spec.setExpiresAt(ZonedDateTime.parse("2030-06-30T23:59:59Z"));
spec.setSoftLimitExpiration(ZonedDateTime.parse("2029-12-31T23:59:59Z"));
// Optionally set usage limits
spec.setMaxUsageLimit(50000);
spec.setSoftUsageLimit(40000);
sdk.generateKey(spec);
Example JSON (if this object were serialized directly):
{
"kid": "myNewKey",
"kty": "ML-KEM",
"alg": "ML-KEM-512",
"keyOps": ["encrypt","decrypt"],
"exportable": true,
"expiresAt": "2030-06-30T23:59:59Z",
"softLimitExpiration": "2029-12-31T23:59:59Z",
"maxUsageLimit": 50000,
"softUsageLimit": 40000
}
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAlg()
Gets the algorithm name, e.g.Gets the absolute expiration date/time in UTC.Indicates if this key is exportable from the secure store.Gets the permitted key operations, e.g.getKid()
Gets the key identifier (kid).getKty()
Gets the key type (kty).Gets the maximum usage limit for this key (0 or null = unlimited).Gets the soft-limit expiration date/time in UTC.Gets the soft usage limit, triggering warnings before reachingmaxUsageLimit
.void
Sets the algorithm name (e.g.void
setExpiresAt
(ZonedDateTime expiresAt) Sets the absolute expiration date/time in UTC.void
setExportable
(Boolean exportable) Sets whether this key is exportable.void
Sets the permitted key operations.void
Sets the key identifier (kid).void
Sets the key type (kty).void
setMaxUsageLimit
(Integer maxUsageLimit) Sets the maximum usage limit for this key. 0 or null = unlimited.void
setSoftLimitExpiration
(ZonedDateTime softLimitExpiration) Sets the soft-limit expiration date/time in UTC.void
setSoftUsageLimit
(Integer softUsageLimit) Sets the soft usage limit for this key.
-
Constructor Details
-
GenerateKeySpec
public GenerateKeySpec()No-args constructor.
-
-
Method Details
-
getKid
Gets the key identifier (kid).- Returns:
- kid
-
setKid
Sets the key identifier (kid).- Parameters:
kid
- the key identifier
-
getKty
Gets the key type (kty).- Returns:
- kty
-
setKty
Sets the key type (kty).- Parameters:
kty
- the key type (e.g. "RSA", "ML-KEM")
-
getAlg
Gets the algorithm name, e.g. "ML-KEM-512", "RSA-2048".- Returns:
- alg
-
setAlg
Sets the algorithm name (e.g. "ML-KEM-512", "AES-256").- Parameters:
alg
- the algorithm
-
getKeyOps
Gets the permitted key operations, e.g. ["encrypt","decrypt"].- Returns:
- a list of key operations
-
setKeyOps
Sets the permitted key operations.- Parameters:
keyOps
- a list of key ops
-
getExportable
Indicates if this key is exportable from the secure store.- Returns:
- true if exportable, false if not, or null if unspecified
-
setExportable
Sets whether this key is exportable.- Parameters:
exportable
- true if exportable, false otherwise
-
getExpiresAt
Gets the absolute expiration date/time in UTC.- Returns:
- expiresAt or null
-
setExpiresAt
Sets the absolute expiration date/time in UTC.- Parameters:
expiresAt
- a ZonedDateTime in UTC
-
getSoftLimitExpiration
Gets the soft-limit expiration date/time in UTC.- Returns:
- softLimitExpiration or null
-
setSoftLimitExpiration
Sets the soft-limit expiration date/time in UTC. This can help indicate a warning threshold before the final expiration date.- Parameters:
softLimitExpiration
- a ZonedDateTime in UTC
-
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
- the limit
-
getSoftUsageLimit
Gets the soft usage limit, triggering warnings before reachingmaxUsageLimit
.- Returns:
- softUsageLimit
-
setSoftUsageLimit
Sets the soft usage limit for this key.- Parameters:
softUsageLimit
- the soft limit
-