'Declaration Public Overloads Function HashBytesHex( _ ByVal hashType As HashProvider, _ ByVal input() As System.Byte, _ ByVal key() As System.Byte _ ) As System.String
'Usage Dim instance As Encryption Dim hashType As HashProvider Dim input() As System.Byte Dim key() As System.Byte Dim value As System.String value = instance.HashBytesHex(hashType, input, key)
public System.string HashBytesHex( HashProvider hashType, System.byte[] input, System.byte[] key )
public function HashBytesHex( hashType: HashProvider; input: System.Bytearray of; key: System.Bytearray of ): System.String;
public function HashBytesHex( hashType : HashProvider, input : System.byte[], key : System.byte[] ) : System.String;
public: System.string* HashBytesHex( HashProvider hashType, System.byte[]* input, System.byte[]* key )
public: System.String^ HashBytesHex( HashProvider hashType, System.array<byte>^ input, System.array<byte>^ key )
Parameters
- hashType
- Type of the hash.
- input
- The input.
- key
- The key.
Return Value
The hashed bytes OR string.empty on error