Package co.ankatech.ankasecure.sdk.model
Class AlgorithmInfo
Object
AlgorithmInfo
AlgorithmInfo
describes a supported algorithm in Anka Secure.
For example, it contains a key type (kty
) and an algorithm name
(alg
). These pairs define the cryptographic capabilities supported
by the platform (e.g., RSA-2048, ML-KEM-768, AES-256, etc.).
Example JSON (produced/consumed by the SDK):
{
"kty": "RSA",
"alg": "RSA-2048"
}
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
AlgorithmInfo
public AlgorithmInfo()No-args constructor.
-
-
Method Details
-
getKty
Gets the key type (kty).- Returns:
- kty (e.g. "RSA", "oct", "EC")
-
setKty
Sets the key type (kty).- Parameters:
kty
- a string like "RSA", "EC", "oct", etc.
-
getAlg
Gets the algorithm (alg).- Returns:
- alg (e.g. "RSA-2048", "AES-256", "Dilithium2")
-
setAlg
Sets the algorithm (alg).- Parameters:
alg
- a string like "RSA-2048", "AES-256", "ML-KEM-768"
-