Class ScramUtils.NewPasswordByteArrayData
java.lang.Object
org.apache.activemq.artemis.spi.core.security.scram.ScramUtils.NewPasswordByteArrayData
- Enclosing class:
- ScramUtils
New password data in byte array format
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal byte[]
final int
final byte[]
final byte[]
final byte[]
final byte[]
-
Constructor Summary
ConstructorsConstructorDescriptionNewPasswordByteArrayData
(byte[] saltedPassword, byte[] salt, byte[] clientKey, byte[] storedKey, byte[] serverKey, int iterations) Creates new NewPasswordByteArrayData -
Method Summary
-
Field Details
-
saltedPassword
public final byte[] saltedPassword -
salt
public final byte[] salt -
clientKey
public final byte[] clientKey -
storedKey
public final byte[] storedKey -
serverKey
public final byte[] serverKey -
iterations
public final int iterations
-
-
Constructor Details
-
NewPasswordByteArrayData
public NewPasswordByteArrayData(byte[] saltedPassword, byte[] salt, byte[] clientKey, byte[] storedKey, byte[] serverKey, int iterations) Creates new NewPasswordByteArrayData- Parameters:
saltedPassword
- Salted passwordsalt
- Used saltclientKey
- Client keystoredKey
- Stored keyserverKey
- Server keyiterations
- Iterations for slating
-