Class AlgorithmInfo

Object
AlgorithmInfo

public class AlgorithmInfo extends Object

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 Details

    • AlgorithmInfo

      public AlgorithmInfo()
      No-args constructor.
  • Method Details

    • getKty

      public String getKty()
      Gets the key type (kty).
      Returns:
      kty (e.g. "RSA", "oct", "EC")
    • setKty

      public void setKty(String kty)
      Sets the key type (kty).
      Parameters:
      kty - a string like "RSA", "EC", "oct", etc.
    • getAlg

      public String getAlg()
      Gets the algorithm (alg).
      Returns:
      alg (e.g. "RSA-2048", "AES-256", "Dilithium2")
    • setAlg

      public void setAlg(String alg)
      Sets the algorithm (alg).
      Parameters:
      alg - a string like "RSA-2048", "AES-256", "ML-KEM-768"