I’m not done yet with my data encryption and the more I go further the more I got confused. lol

bool success;
success = crypt.connectComponent("EQCS");
if (success != true) {
MessageBox.Show("Crypt component connection failed");
return;
}

string s;
s = "The quick brown fox jumps over the lazy dog";

crypt.HashAlgorithm = "sha1";
crypt.EncodingMode = "hex"

string hash;
hash = crypt.HashStringENC(s);
textBox1.Text += "SHA1:" + "\r\n";
textBox1.Refresh();
textBox1.Text += hash + "\r\n";
textBox1.Refresh();

crypt.HashAlgorithm = "md2";
hash = crypt.HashStringENC(s);
textBox1.Text += "MD2:" + "\r\n";
textBox1.Refresh();
textBox1.Text += hash + "\r\n";
textBox1.Refresh();

to follow….need help here!!