Module crypt.api

Enum PaddingScheme

    • Enum Constant Detail

      • NoPadding

        public static final PaddingScheme NoPadding
        The No padding.
      • OAEPPadding

        public static final PaddingScheme OAEPPadding
        The OAEP padding.
      • OAEPWithSHA_1AndMGF1Padding

        public static final PaddingScheme OAEPWithSHA_1AndMGF1Padding
        The OAEP with SHA 1 and MGF 1 padding.
      • OAEPWithSHA_256AndMGF1Padding

        public static final PaddingScheme OAEPWithSHA_256AndMGF1Padding
        The OAEP with SHA 256 and MGF 1 padding.
      • OAEPWithSHA1AndMGF1Padding

        public static final PaddingScheme OAEPWithSHA1AndMGF1Padding
        The OAEP with SHA 1 and MGF 1 padding.
      • OAEPWithSHA256AndMGF1Padding

        public static final PaddingScheme OAEPWithSHA256AndMGF1Padding
        The OAEP with SHA 256 and MGF 1 padding.
      • PKCS1Padding

        public static final PaddingScheme PKCS1Padding
        The enum constant for the 'PKCS1Padding' algorithm
      • PKCS5Padding

        public static final PaddingScheme PKCS5Padding
        The enum constant for the 'PKCS5Padding' algorithm
      • SSL3Padding

        public static final PaddingScheme SSL3Padding
        The enum constant for the 'SSL3Padding' algorithm
    • Method Detail

      • values

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

        public static PaddingScheme valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getScheme

        public java.lang.String getScheme()