PasswordHashCreateHash Method |
|
DataPA OpenAnalytics API Reference
Creates a salted PBKDF2 hash of the password.
Namespace: DataPA.Utils.QueryEngineAssembly: DataPAQueryEngine (in DataPAQueryEngine.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static string CreateHash(
string password
)
Public Shared Function CreateHash (
password As String
) As String
public:
static String^ CreateHash(
String^ password
)
DataPA.Utils.QueryEngine.PasswordHash.CreateHash = function(password);
Parameters
- password
- Type: SystemString
The password to hash.
Return Value
Type:
StringThe hash of the password.
See Also