Enum Class EncType

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

public enum EncType extends Enum<EncType>
Defines the properties for various encryption types that I2P supports or may someday support. All PublicKeys and PrivateKeys have a type. Note that a EncType specifies both an algorithm and parameters, so that we may change primes or curves for a given algorithm.
Since:
0.9.18
  • Enum Constant Details

    • ELGAMAL_2048

      public static final EncType ELGAMAL_2048
      2048-bit MODP Group from RFC 3526. This is the default. Pubkey 256 bytes, privkey 256 bytes.
    • EC_P256

      public static final EncType EC_P256
      Used by i2pd. Not yet supported by Java I2P. Pubkey 64 bytes; privkey 32 bytes. See proposal 145.
    • EC_P384

      public static final EncType EC_P384
      Reserved, not used by anybody. Pubkey 96 bytes; privkey 48 bytes. See proposal 145.
    • EC_P521

      public static final EncType EC_P521
      Reserved, not used by anybody. Pubkey 132 bytes; privkey 66 bytes. See proposal 145.
    • ECIES_X25519

      public static final EncType ECIES_X25519
      Proposal 144. Pubkey 32 bytes; privkey 32 bytes
      Since:
      0.9.38
    • MLKEM512_X25519

      public static final EncType MLKEM512_X25519
      Proposal 169. Pubkey 32 bytes; privkey 32 bytes
      Since:
      0.9.67
    • MLKEM768_X25519

      public static final EncType MLKEM768_X25519
      Proposal 169. Pubkey 32 bytes; privkey 32 bytes
      Since:
      0.9.67
    • MLKEM1024_X25519

      public static final EncType MLKEM1024_X25519
      Proposal 169. Pubkey 32 bytes; privkey 32 bytes
      Since:
      0.9.67
    • MLKEM512_X25519_INT

      public static final EncType MLKEM512_X25519_INT
      For internal use only (Alice side) Proposal 169. Pubkey 800 bytes; privkey 1632 bytes
      Since:
      0.9.67
    • MLKEM768_X25519_INT

      public static final EncType MLKEM768_X25519_INT
      For internal use only (Alice side) Proposal 169. Pubkey 1184 bytes; privkey 2400 bytes
      Since:
      0.9.67
    • MLKEM1024_X25519_INT

      public static final EncType MLKEM1024_X25519_INT
      For internal use only (Alice side) Proposal 169. Pubkey 1568 bytes; privkey 3168 bytes
      Since:
      0.9.67
    • MLKEM512_X25519_CT

      public static final EncType MLKEM512_X25519_CT
      For internal use only (Bob side ciphertext) Proposal 169. Pubkey 768 bytes; privkey 0
      Since:
      0.9.67
    • MLKEM768_X25519_CT

      public static final EncType MLKEM768_X25519_CT
      For internal use only (Bob side ciphertext) Proposal 169. Pubkey 1088 bytes; privkey 0
      Since:
      0.9.67
    • MLKEM1024_X25519_CT

      public static final EncType MLKEM1024_X25519_CT
      For internal use only (Bob side ciphertext) Proposal 169. Pubkey 1568 bytes; privkey 0
      Since:
      0.9.67
  • Method Details

    • values

      public static EncType[] 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 EncType 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
    • getCode

      public int getCode()
      the unique identifier for this type
    • getPubkeyLen

      public int getPubkeyLen()
      the length of the public key, in bytes
    • getPrivkeyLen

      public int getPrivkeyLen()
      the length of the private key, in bytes
    • getBaseAlgorithm

      public EncAlgo getBaseAlgorithm()
      the standard base algorithm name used for the Java crypto factories
    • getAlgorithmName

      public String getAlgorithmName()
      the standard name used for the Java crypto factories
    • getParams

      The elliptic curve ECParameterSpec for ECDSA; DSAParameterSpec for DSA
      Throws:
      InvalidParameterSpecException - if the algorithm is not available on this JVM.
    • getSupportedSince

      public String getSupportedSince()
      The router version in which this type was first supported.
    • isAvailable

      public boolean isAvailable()
      Returns:
      true if supported in this JVM
    • isAvailable

      public static boolean isAvailable(int code)
      Returns:
      true if supported in this JVM
    • isAvailable

      public static boolean isAvailable(String stype)
      Parameters:
      stype - number or name
      Returns:
      true if supported in this JVM
    • isPQ

      public boolean isPQ()
      Returns:
      true if this is a PQ type
      Since:
      0.9.67
    • getByCode

      public static EncType getByCode(int code)
      Returns:
      null if not supported
    • parseEncType

      public static EncType parseEncType(String stype)
      Convenience for user apps
      Parameters:
      stype - number or name
      Returns:
      null if not found