Méthode | Description | |
---|---|---|
Compute ( string input ) : string |
Computes the Hash code of a string and converts it into a Hex string.
|
|
ComputeBytes ( string input ) : byte[] |
Computes the Hash code of a string.
|
|
ComputeSecurityHash ( string username, string email, System.DateTime dateTime, string otherData ) : string |
Computes the Hash of a Username, mixing it with other data, in order to avoid illegal Account activations.
|
public static Compute ( string input ) : string | ||
input | string | The string. |
Résultat | string |
public static ComputeBytes ( string input ) : byte[] | ||
input | string | The string. |
Résultat | byte[] |
public static ComputeSecurityHash ( string username, string email, System.DateTime dateTime, string otherData ) : string | ||
username | string | The Username. |
string | The email. | |
dateTime | System.DateTime | The date/time. |
otherData | string | The other data to mix into the input string. |
Résultat | string |