Enum Class EncAlgo

java.lang.Object
java.lang.Enum<EncAlgo>
net.i2p.crypto.EncAlgo
All Implemented Interfaces:
Serializable, Comparable<EncAlgo>, java.lang.constant.Constable

public enum EncAlgo extends Enum<EncAlgo>
Base encryption algorithm type
Since:
0.9.18
  • Enum Constant Details

    • ELGAMAL

      public static final EncAlgo ELGAMAL
    • EC

      public static final EncAlgo EC
    • ECIES

      public static final EncAlgo ECIES
      Since:
      0.9.38
    • ECIES_MLKEM

      public static final EncAlgo ECIES_MLKEM
      Since:
      0.9.67
    • ECIES_MLKEM_INT

      public static final EncAlgo ECIES_MLKEM_INT
      Since:
      0.9.67
  • Method Details

    • values

      public static EncAlgo[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EncAlgo valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()