I'm trying to write a code translation of a MD5 hash from C++ to VB.net but I am struggling to find the equivalent commands in VB.net.
Here is my C++ code:
md5_init(&md5);
md5_append(&md5, text1, 16);
md5_append(&md5, text2, 18);
md5_finish(&md5, digest);`
I am confused because md5 in vb.net does not have an append or finish function.