| SHA256VerifyHash Method |
Verify a hash against a string.
Namespace:
Galactic.Cryptography
Assembly:
Galactic.Cryptography (in Galactic.Cryptography.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static bool VerifyHash(
string input,
string hash
)
Public Shared Function VerifyHash (
input As String,
hash As String
) As Boolean
public:
static bool VerifyHash(
String^ input,
String^ hash
)
static member VerifyHash :
input : string *
hash : string -> bool
Parameters
- input
- Type: SystemString
The input string to verify. - hash
- Type: SystemString
The hash to verify against.
Return Value
Type:
BooleanTrue if the input string matches the hash.
See Also