The BCrypt type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() ![]() | GenerateSalt |
Generate a salt for use with the HashPassword(String, String) method
selecting a reasonable default for the number of hashing rounds to apply.
|
![]() ![]() | GenerateSalt(Int32) |
Generate a salt for use with the HashPassword(String, String) method.
|
![]() ![]() | HashPassword(String) |
Hash a password using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt.
|
![]() ![]() | HashPassword(String, Int32) |
Hash a password using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt(Int32) using the given workFactor.
|
![]() ![]() | HashPassword(String, String) | Hash a password using the OpenBSD bcrypt scheme. |
![]() ![]() | HashString(String) |
Hash a string using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt.
|
![]() ![]() | HashString(String, Int32) |
Hash a string using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt.
|
![]() ![]() | Verify |
Verifies that the hash of the given text matches the provided
hash |
See Also