Class ExampleScenario14
Object
ExampleScenario14
Scenario 14 Example:
- List existing keys.
- Create (generate) a post-quantum key using
kty="ML-KEM"
andalg="ML-KEM-768"
. - Export the entire key (including public key info) to a JSON file.
- Remove the newly generated key from the service.
- Import the key back in (public part only) by reading the JSON file and calling
importKey
. - Obtain license info and print it.
This scenario reflects how to:
- Use
AnkaSecureSdk.listKeys()
to retrieve existing keys. - Generate a post-quantum ML-KEM-768 key via
GenerateKeySpec
. - Export the key data via
AnkaSecureSdk.exportKey(String, String)
. - Remove the key via
AnkaSecureSdk.removeKey(String)
. - Re-import the public portion using a new
ImportKeySpec
(instead of directly using KeyData). - Gather license info using
AnkaSecureSdk.getLicenseInfo(String)
.
We demonstrate how to create a brand-new post-quantum key, remove it, and then import it back (public portion only). This technique can be useful for storing or sharing the public portion with other parties without retaining the private key.
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
ExampleScenario14
public ExampleScenario14()
-
-
Method Details
-
main
Entry point for executing Scenario 14.- Parameters:
args
- Not used.
-