How can i make application which can encrypt and decrypt password in files. Its a application for locking folders and files. I was wondering how code for that may look?
Decryption
Started by Cyber Null, Feb 10 2011 02:52 PM
2 replies to this topic
#1
Posted 10 February 2011 - 02:52 PM
|
|
|
#2
Posted 10 February 2011 - 03:58 PM
You shouldn't decrypt passwords. You can use all sorts of them however, md5, sha1, etc.
#3
Posted 14 February 2011 - 11:42 AM
Yupe, Blaine is right. You could, but you should not. By decrypting, the password is much more vulnerable to be stolen. Hashing is the way you should do. Blaine had mentioned some popular hashing methods/algorithm. By hashing you calculate new value based on the password. The new value however can not be reversed, i.e. the original content is lost.
I don;t know which VB you are using, but in VB.NET I believe there is a library that provides popular hashing methods.
I don;t know which VB you are using, but in VB.NET I believe there is a library that provides popular hashing methods.


Sign In
Create Account

Back to top










