Class ScramUtils.NewPasswordByteArrayData
- java.lang.Object
-
- org.apache.activemq.artemis.spi.core.security.scram.ScramUtils.NewPasswordByteArrayData
-
- Enclosing class:
- ScramUtils
public static class ScramUtils.NewPasswordByteArrayData extends Object
New password data in byte array format
-
-
Field Summary
Fields Modifier and Type Field Description byte[]clientKeyClient keyintiterationsIterations for slatingbyte[]saltUsed saltbyte[]saltedPasswordSalted passwordbyte[]serverKeyServer keybyte[]storedKeyStored key
-
Constructor Summary
Constructors Constructor Description NewPasswordByteArrayData(byte[] saltedPassword, byte[] salt, byte[] clientKey, byte[] storedKey, byte[] serverKey, int iterations)Creates new NewPasswordByteArrayData
-
-
-
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 passwordsalt- Used saltclientKey- Client keystoredKey- Stored keyserverKey- Server keyiterations- Iterations for slating
-
-