View Single Post
  #14  
Old 02-18-2008, 03:20 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by Inverness View Post
Well, I've never used it so I wouldn't know. The only time I've ever stored something offline I used an md5 hash.
Basically all base64 encoding does is turn characters into a simple representable form. Encryption is scrambling the data so that only the person holding the encryption password/details can later decipher it, which is what my encryption example does; it takes the input key, scrambles the data using it, and returns the scrambled result. If you try to decrypt the scrambled data using any different key, it won't work and will just return garbage.
Reply With Quote