Class ScramUtils.NewPasswordByteArrayData

  • Enclosing class:
    ScramUtils

    public static class ScramUtils.NewPasswordByteArrayData
    extends java.lang.Object
    New password data in byte array format
    • Constructor Summary

      Constructors 
      Constructor Description
      NewPasswordByteArrayData​(byte[] saltedPassword, byte[] salt, byte[] clientKey, byte[] storedKey, byte[] serverKey, int iterations)
      Creates new NewPasswordByteArrayData
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • saltedPassword

        public final byte[] saltedPassword
        Salted password
      • salt

        public final byte[] salt
        Used salt
      • clientKey

        public final byte[] clientKey
        Client key
      • storedKey

        public final byte[] storedKey
        Stored key
      • serverKey

        public final byte[] serverKey
        Server key
      • iterations

        public final int iterations
        Iterations for slating
    • Constructor Detail

      • NewPasswordByteArrayData

        public NewPasswordByteArrayData​(byte[] saltedPassword,
                                        byte[] salt,
                                        byte[] clientKey,
                                        byte[] storedKey,
                                        byte[] serverKey,
                                        int iterations)
        Creates new NewPasswordByteArrayData
        Parameters:
        saltedPassword - Salted password
        salt - Used salt
        clientKey - Client key
        storedKey - Stored key
        serverKey - Server key
        iterations - Iterations for slating