Méthode | Description | |
---|---|---|
GetSalt ( ) : String |
Creates a true random salt with a default length of 256.
|
|
GetSalt ( |
Creates a true random salt.
|
|
Hash ( String salt, String originalValue, |
Creates an unreversible hashed value consistently given the same input.
|
|
Initialize ( string name, System config ) : void |
Initializes this provider's base settings.
|
public abstract GetSalt ( |
||
length | length of the salt to return | |
Résultat | String |
public abstract Hash ( String salt, String originalValue, |
||
salt | String | Another non-secret value paired with the secret to /// make it more difficult to dictionary attack a collection of hashed values. |
originalValue | String | The original value to keep secret. |
iterations | The iterations to hash the originalValue and salt. | |
Résultat | String |
public Initialize ( string name, System config ) : void | ||
name | string | |
config | System | |
Résultat | void |