コード例 #1
0
        public Account(string email, string password, string salt)
        {
            if (password.Length > 16)
            {
                password = password.Substring(0, 16);                       // make sure the password does not exceed 16 chars.
            }
            var passwordVerifier = SRP6a.CalculatePasswordVerifierForAccount(email, password, salt.ToByteArray());

            this.SetFields(email, salt.ToByteArray(), passwordVerifier);
        }
コード例 #2
0
        }                                             // v - password verifier.

        public Account(string email, string password) // Account with **newly generated** persistent ID
        {
            if (password.Length > 16)
            {
                password = password.Substring(0, 16);                       // make sure the password does not exceed 16 chars.
            }
            var salt             = SRP6a.GetRandomBytes(32);
            var passwordVerifier = SRP6a.CalculatePasswordVerifierForAccount(email, password, salt);

            this.SetFields(email, salt, passwordVerifier);
        }
コード例 #3
0
 public void UpdatePassword(string newPassword)
 {
     this.PasswordVerifier = SRP6a.CalculatePasswordVerifierForAccount(this.Email, newPassword, this.Salt);
 }