Class ScramUtils.NewPasswordByteArrayData

  • Enclosing class:
    ScramUtils

    public static class ScramUtils.NewPasswordByteArrayData
    extends Object
    New password data in byte array format
    • 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