This chapter illustrates how to create RipeMD-128 hashing in C# and VB.NET using the NCiphers.Crypto library.
Table of contents
1. Digest output
2. digest from a byte array
3. digest from a String
4. digest from a file
5. digest from a Stream
1. Digest output
The raw digest output from this hash function is a 128 bit (16 bytes) long byte array constructed by computing the hash algorithm over the input data:
C# example
byte[] hash = NCiphers.Hashing.HashTools.RipeMD128(data);
VB.NET example
Dim hash As Byte() = NCiphers.Hashing.HashTools.RipeMD128(data)
There may be cases when we need the digest to be received as a String from the hexadecimal representation of the hash bytes. In that case we shall use:
C# example
byte[] hash = NCiphers.Hashing.HashTools.RipeMD128Hex(data);
VB.NET example
Dim hash As Byte() = NCiphers.Hashing.HashTools.RipeMD128Hex(data)
2. RipeMD128 from a byte array
Here is how to compute the RipeMD128 message digest of a byte array:
C# example
byte[] data = new byte[] {1,2,3,4,5,6,7,8,9,100,200,300,400,500}; byte[] hash = NCiphers.Hashing.HashTools.RipeMD128(data); string hashAsString = NCiphers.Hashing.HashTools.RipeMD128Hex(data);
VB.NET example
Dim data As New Byte() {1,2,3,4,5,6,7,8,9,100,200,300,400,500} Dim hash As Byte() = NCiphers.Hashing.HashTools.RipeMD128(data) Dim hashAsString As String = NCiphers.Hashing.HashTools.RipeMD128Hex(data)
3. RipeMD128 from a String
Getting the RipeMD128 hash of a String is similar to the above example:
C# example
string data = "Hello World"; byte[] hash = NCiphers.Hashing.HashTools.RipeMD128(data); string hashAsString = NCiphers.Hashing.HashTools.RipeMD128Hex(data);
VB.NET example
Dim data As String = "Hello World" Dim hash As Byte() = NCiphers.Hashing.HashTools.RipeMD128(data) Dim hashAsString As String = NCiphers.Hashing.HashTools.RipeMD128Hex(data)
4. RipeMD128 from a file
To get the RipeMD128 hash of a file, we simply supply a System.IO.FileInfo object as parameter:
C# example
System.IO.FileInfo data = new System.IO.FileInfo(@"c:\myfile.txt"); byte[] hash = NCiphers.Hashing.HashTools.RipeMD128(data); string hashAsString = NCiphers.Hashing.HashTools.RipeMD128Hex(data);
VB.NET example
Dim data As New System.IO.FileInfo("c:\myfile.txt") Dim hash As Byte() = NCiphers.Hashing.HashTools.RipeMD128(data) Dim hashAsString As String = NCiphers.Hashing.HashTools.RipeMD128Hex(data)
5. RipeMD128 from a Stream
The overloaded methods that accept System.IO.Stream parameter, are reading the input byte by byte and compute the RipeMD128 digest over this data. Of course the caller must ensure that the Stream is positioned at the start of the data and after the method call its position will be at the end of the Stream. It is also the obligation of the caller to close the Stream.
C# example
byte[] bytes = new byte[] {1,2,3,4,5,6,7,8,9,100,200,300,400,500}; System.IO.Stream data = new MemoryStream(bytes); byte[] hash = NCiphers.Hashing.HashTools.RipeMD128(data); string hashAsString = NCiphers.Hashing.HashTools.RipeMD128Hex(data);
VB.NET example
Dim bytes As New Byte() {1,2,3,4,5,6,7,8,9,100,200,300,400,500} Dim data As New System.IO.MemoryStream(bytes) Dim hash As Byte() = NCiphers.Hashing.HashTools.RipeMD128(data) Dim hashAsString As String = NCiphers.Hashing.HashTools.RipeMD128Hex(data)
6. Summary
This article demonstrated how to compute RipeMD128 message digest hashes with the NCiphers.Crypto library. Probably you may be interested to see also the other hash functions offered by the library.
List of methods used:
- NCiphers.Hashing.HashTools.RipeMD128 – returns the RipeMD128 hash as byte array
- NCiphers.Hashing.HashTools.RipeMD128Hex – returns the RipeMD128 hash as hexadecimal String