Class EncryptionMethodBuilder

    • Constructor Detail

      • EncryptionMethodBuilder

        public EncryptionMethodBuilder()
    • Method Detail

      • builder

        public static EncryptionMethodBuilder builder()
        Creates a new EncryptionMethodBuilder instance.
        Returns:
        a EncryptionMethodBuilder instance
      • encryptionMethod

        public static EncryptionMethod encryptionMethod​(String algorithm)
        Utility method that creates a EncryptionMethod element having only its Algorithm attribute assigned.
        Parameters:
        algorithm - the algorithm
        Returns:
        a EncryptionMethod instance
      • encryptionMethod

        public static EncryptionMethod encryptionMethod​(String algorithm,
                                                        Integer keySize)
        Utility method that creates a EncryptionMethod element.
        Parameters:
        algorithm - the algorithm
        keySize - key size (in bits)
        Returns:
        a EncryptionMethod instance
      • algorithm

        public EncryptionMethodBuilder algorithm​(String algorithm)
        Assigns the algorithm.
        Parameters:
        algorithm - the algorithm
        Returns:
        the builder
      • keySize

        public EncryptionMethodBuilder keySize​(Integer keySize)
        Assigns the size in bits for the key.
        Parameters:
        keySize - key size
        Returns:
        the builder
      • oAEPparams

        public EncryptionMethodBuilder oAEPparams​(String base64Encoding)
        Assigns the OAEP parameters.
        Parameters:
        base64Encoding - the parameters in base64
        Returns:
        the builder