C# Class PerplexMail.PasswordResult

The results of the password generation operation. Consult the properties to read each part of the encrypted string. To combine the EncryptionResult object into a single hash string, simply call .ToString().
Mostrar archivo Open project: PerplexInternetmarketing/PerplexMail-for-Umbraco Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
PasswordResult ( string passwordHash ) : System

PasswordResult ( string algorithm, int iterations, string salt, string hash ) : System

ToString ( ) : string

Generates a single hash string that contains the method and the salt to generate the hash.

Method Details

PasswordResult() public method

public PasswordResult ( string passwordHash ) : System
passwordHash string
return System

PasswordResult() public method

public PasswordResult ( string algorithm, int iterations, string salt, string hash ) : System
algorithm string
iterations int
salt string
hash string
return System

ToString() public method

Generates a single hash string that contains the method and the salt to generate the hash.
public ToString ( ) : string
return string