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