Enum AlgorithmSuite

    • Enum Constant Detail

      • ALG_AES_256_GCM_IV12_TAG16_NO_KDF

        public static final AlgorithmSuite ALG_AES_256_GCM_IV12_TAG16_NO_KDF
      • ALG_AES_256_CTR_IV16_TAG16_NO_KDF

        public static final AlgorithmSuite ALG_AES_256_CTR_IV16_TAG16_NO_KDF
      • ALG_AES_256_CBC_IV16_NO_KDF

        public static final AlgorithmSuite ALG_AES_256_CBC_IV16_NO_KDF
    • Method Detail

      • values

        public static AlgorithmSuite[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AlgorithmSuite c : AlgorithmSuite.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AlgorithmSuite valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • id

        public int id()
      • isLegacy

        public boolean isLegacy()
      • dataKeyAlgorithm

        public String dataKeyAlgorithm()
      • dataKeyLengthBits

        public int dataKeyLengthBits()
      • cipherName

        public String cipherName()
      • cipherTagLengthBits

        public int cipherTagLengthBits()
      • cipherTagLengthBytes

        public int cipherTagLengthBytes()
      • iVLengthBytes

        public int iVLengthBytes()
      • cipherBlockSizeBytes

        public int cipherBlockSizeBytes()
      • cipherMaxContentLengthBits

        public long cipherMaxContentLengthBits()
      • cipherMaxContentLengthBytes

        public long cipherMaxContentLengthBytes()