SrpUserCredential(String, Byte, Byte, Int32, SrpStrength) Constructor
Creates user credentials.
Namespace: SnapDB.Security.AuthenticationAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public SrpUserCredential(
string username,
byte[] verification,
byte[] salt,
int iterations,
SrpStrength srpStrength
)
Public Sub New (
username As String,
verification As Byte(),
salt As Byte(),
iterations As Integer,
srpStrength As SrpStrength
)
public:
SrpUserCredential(
String^ username,
array<unsigned char>^ verification,
array<unsigned char>^ salt,
int iterations,
SrpStrength srpStrength
)
SnapDB.Security.Authentication.SrpUserCredential = function(username, verification, salt, iterations, srpStrength);
Parameters
- username String
- The username associated with the user.
- verification Byte
- The user's password verification value.
- salt Byte
- The salt value used for password hashing.
- iterations Int32
- The number of iterations used in the password hashing process.
- srpStrength SrpStrength
- The strength of the SRP protocol.