Exemplo n.º 1
0
 public AccountInfo(long accountId, string username, string passwordSaltHex, string passwordHashHex, int passwordIterations)
 {
     this.AccountId          = accountId;
     this.Username           = username;
     this.PasswordSalt       = IOUtils.ConvertHex2Bin(passwordSaltHex);
     this.PasswordHash       = IOUtils.ConvertHex2Bin(passwordHashHex);
     this.PasswordIterations = passwordIterations;
 }