Click or drag to resize

PasswordHashHashPasswordDelimited Method

Returns a hashed password using new, randomly-generated, cryptographically-strong salt. The returned hash is of the form "base-64-encoded-salt|base-64-encoded-hash".

Namespace:  NetQuarry.Security
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static string HashPasswordDelimited(
	string password
)

Parameters

password
Type: SystemString
The password to hash.

Return Value

Type: String
The hashed value and salt, each encoded as a base64 string and pipe-delimited.
See Also