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!!

Encryption is the process of hiding data out from the naive users. It is our first line of defense. Please remember that the hardest task for a hacker to crack the password is how to figure out the algorithm of your cyphers. I hope the one you have posted is just a dummy of a real one, Whahahahaha… I might feel unsecure if that is your real one…
Comment by Roy Manseras — December 22, 2007 @ 6:49 am
hahaha..beta test na lng sir…:)
Comment by rgb — December 22, 2007 @ 9:51 am
wow….code
Comment by kritix — December 23, 2007 @ 10:36 am