Enum EncryptedJwt.SupportedEncryption

    • Enum Constant Detail

      • A128GCM

        public static final EncryptedJwt.SupportedEncryption A128GCM
        Cipher AES/GCM/NoPadding will be used for content encryption and 128 bit key will be generated.
      • A192GCM

        public static final EncryptedJwt.SupportedEncryption A192GCM
        Cipher AES/GCM/NoPadding will be used for content encryption and 192 bit key will be generated.
      • A256GCM

        public static final EncryptedJwt.SupportedEncryption A256GCM
        Cipher AES/GCM/NoPadding will be used for content encryption and 256 bit key will be generated.
      • A128CBC_HS256

        public static final EncryptedJwt.SupportedEncryption A128CBC_HS256
        Cipher AES/CBC/PKCS5Padding will be used for content encryption and 128 bit key will be generated. Authentication tag is generated by using HmacSHA256.
      • A192CBC_HS384

        public static final EncryptedJwt.SupportedEncryption A192CBC_HS384
        Cipher AES/CBC/PKCS5Padding will be used for content encryption and 192 bit key will be generated. Authentication tag is generated by using HmacSHA384.
      • A256CBC_HS512

        public static final EncryptedJwt.SupportedEncryption A256CBC_HS512
        Cipher AES/CBC/PKCS5Padding will be used for content encryption and 256 bit key will be generated. Authentication tag is generated by using HmacSHA512.
    • Method Detail

      • values

        public static EncryptedJwt.SupportedEncryption[] 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 (EncryptedJwt.SupportedEncryption c : EncryptedJwt.SupportedEncryption.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EncryptedJwt.SupportedEncryption 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