BCrypt MethodsAerospike
The BCrypt type exposes the following members.
Methods

  NameDescription
Public methodStatic memberGenerateSalt 
Generate a salt for use with the HashPassword(String, String) method selecting a reasonable default for the number of hashing rounds to apply.
Public methodStatic memberGenerateSalt(Int32)
Generate a salt for use with the HashPassword(String, String) method.
Public methodStatic memberHashPassword(String)
Hash a password using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt .
Public methodStatic memberHashPassword(String, Int32)
Hash a password using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt(Int32) using the given workFactor.
Public methodStatic memberHashPassword(String, String)
Hash a password using the OpenBSD bcrypt scheme.
Public methodStatic memberHashString(String)
Hash a string using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt .
Public methodStatic memberHashString(String, Int32)
Hash a string using the OpenBSD bcrypt scheme and a salt generated by GenerateSalt .
Public methodStatic memberVerify
Verifies that the hash of the given text matches the provided hash
Back to Top
See Also