-1

I am trying to secure my passwords and website information. Looking something equivalent to TrueCrypt.

Can Some one help me on the same.

Regards, Vignesh

1 Answers1

0
  • Use MD5 or UTF8 kind of strategies before storing and retriving. And for better idea on these kindly look into below..

For Sample stuff - 1

For Sample stuff - 2

Community
  • 1
  • 1
karthik
  • 139
  • 10
  • As MD5 is widly used and there are a lot of Rainbowtables out there in which you can pass the MD5 hash and get the password in clear text, you should also consider adding a lot of salt (insert some random characters based on you own algoithm so you can redo it) and mix it with serveral other hashing alogrithms for increasing security – glethien Oct 26 '15 at 06:51
  • I too agree with this concern. And it was always more preferable to have one's own algorithm for better security.. And these samples might give better idea to start with.. – karthik Oct 26 '15 at 07:15