Class AlgorithmParameterSpecFactory


  • public final class AlgorithmParameterSpecFactory
    extends java.lang.Object
    The factory class AlgorithmParameterSpecFactory holds methods for creating AlgorithmParameterSpec objects.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.security.spec.AlgorithmParameterSpec newPBEParameterSpec​(byte[] salt, int iterationCount)
      Factory method for creating a new PBEParameterSpec from the given salt and iteration count.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • newPBEParameterSpec

        public static java.security.spec.AlgorithmParameterSpec newPBEParameterSpec​(byte[] salt,
                                                                                    int iterationCount)
        Factory method for creating a new PBEParameterSpec from the given salt and iteration count.
        Parameters:
        salt - the salt
        iterationCount - the iteration count
        Returns:
        the new PBEParameterSpec from the given salt and iteration count.