Class ScramInitialServerMessage
- java.lang.Object
-
- org.wildfly.security.mechanism.scram.ScramInitialServerMessage
-
public final class ScramInitialServerMessage extends Object
- Author:
- David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description private ScramInitialClientMessage
initialResponse
private int
iterationCount
private byte[]
messageBytes
private byte[]
salt
private byte[]
serverNonce
-
Constructor Summary
Constructors Constructor Description ScramInitialServerMessage(ScramInitialClientMessage initialResponse, byte[] serverNonce, byte[] salt, int iterationCount, byte[] messageBytes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ScramInitialClientMessage
getInitialResponse()
int
getIterationCount()
ScramMechanism
getMechanism()
byte[]
getMessageBytes()
(package private) byte[]
getRawMessageBytes()
(package private) byte[]
getRawSalt()
(package private) byte[]
getRawServerNonce()
byte[]
getSalt()
byte[]
getServerNonce()
-
-
-
Field Detail
-
initialResponse
private final ScramInitialClientMessage initialResponse
-
serverNonce
private final byte[] serverNonce
-
salt
private final byte[] salt
-
iterationCount
private final int iterationCount
-
messageBytes
private final byte[] messageBytes
-
-
Constructor Detail
-
ScramInitialServerMessage
ScramInitialServerMessage(ScramInitialClientMessage initialResponse, byte[] serverNonce, byte[] salt, int iterationCount, byte[] messageBytes)
-
-
Method Detail
-
getMechanism
public ScramMechanism getMechanism()
-
getInitialResponse
public ScramInitialClientMessage getInitialResponse()
-
getServerNonce
public byte[] getServerNonce()
-
getRawServerNonce
byte[] getRawServerNonce()
-
getIterationCount
public int getIterationCount()
-
getRawSalt
byte[] getRawSalt()
-
getRawMessageBytes
byte[] getRawMessageBytes()
-
getSalt
public byte[] getSalt()
-
getMessageBytes
public byte[] getMessageBytes()
-
-