Net Encryption Library
HashBytesHex(HashProvider,Byte[],Byte[]) Method
Example 






KellermanSoftware.NetEncryptionLibrary Namespace > Encryption Class > HashBytesHex Method : HashBytesHex(HashProvider,Byte[],Byte[]) Method
Type of the hash.
The input.
The key.
Return a hexadecimal encoded one way hash of a series of bytes with a secret key
Syntax
'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
Example
Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
 
byte[] bytes = new byte[255];
 
for (int i = 0; i < 255; i++)
    bytes[i] = (byte)i;
 
byte[] keyBytes = encryption.EncodingMethod.GetBytes("secret");
            
string results = encryption.HashBytesHex(HashProvider.SHA512, bytes, keyBytes);
Console.WriteLine(results);
Dim encryption As New Encryption() 'Trial Mode
'Dim encryption As New Encryption("place user name here", "place license key here") 'License Mode
 
Dim bytes(254) As Byte
 
For i As Integer = 0 To 254
    bytes(i) = CByte(i)
Next i
 
Dim keyBytes() As Byte = encryption.EncodingMethod.GetBytes("secret")
            
Dim results As String = encryption.HashBytesHex(HashProvider.SHA512, bytes, keyBytes)
Console.WriteLine(results)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Encryption Class
Encryption Members
Overload List