'Declaration Public Overloads Function HashStringBase64( _ ByVal hashType As HashProvider, _ ByVal input As System.String, _ ByVal key As System.String _ ) As System.String
'Usage Dim instance As Encryption Dim hashType As HashProvider Dim input As System.String Dim key As System.String Dim value As System.String value = instance.HashStringBase64(hashType, input, key)
public System.string HashStringBase64( HashProvider hashType, System.string input, System.string key )
public function HashStringBase64( hashType: HashProvider; input: System.String; key: System.String ): System.String;
public function HashStringBase64( hashType : HashProvider, input : System.String, key : System.String ) : System.String;
public: System.string* HashStringBase64( HashProvider hashType, System.string* input, System.string* key )
public: System.String^ HashStringBase64( HashProvider hashType, System.String^ input, System.String^ key )
Parameters
- hashType
- The keyed hash algorithm to use
- input
- The string to hash
- key
- The secret key
Return Value
Hashed string OR string.empty on error