Class PBKDF2Parameters


  • public class PBKDF2Parameters
    extends java.lang.Object
    • Field Detail

      • salt

        protected byte[] salt
      • iterationCount

        protected int iterationCount
      • hashAlgorithm

        protected java.lang.String hashAlgorithm
      • hashCharset

        protected java.lang.String hashCharset
      • derivedKey

        protected byte[] derivedKey
    • Constructor Detail

      • PBKDF2Parameters

        public PBKDF2Parameters()
      • PBKDF2Parameters

        public PBKDF2Parameters​(java.lang.String hashAlgorithm,
                                java.lang.String hashCharset,
                                byte[] salt,
                                int iterationCount)
      • PBKDF2Parameters

        public PBKDF2Parameters​(java.lang.String hashAlgorithm,
                                java.lang.String hashCharset,
                                byte[] salt,
                                int iterationCount,
                                byte[] derivedKey)
    • Method Detail

      • getIterationCount

        public int getIterationCount()
      • setIterationCount

        public void setIterationCount​(int iterationCount)
      • getSalt

        public byte[] getSalt()
      • setSalt

        public void setSalt​(byte[] salt)
      • getDerivedKey

        public byte[] getDerivedKey()
      • setDerivedKey

        public void setDerivedKey​(byte[] derivedKey)
      • getHashAlgorithm

        public java.lang.String getHashAlgorithm()
      • setHashAlgorithm

        public void setHashAlgorithm​(java.lang.String hashAlgorithm)
      • getHashCharset

        public java.lang.String getHashCharset()
      • setHashCharset

        public void setHashCharset​(java.lang.String hashCharset)