------------------------------------------------------------------------------- Notes on encryption found at http://blog.jungledisk.com/2006/06/06/encryption/ ------------------------------------------------------------------------------- Points... * Jungle encrypts each file seperatally. + Changing encryption key only changes new files, + old files still use the old key, + multiple decryption keys can be given. * Encrypted files contain a salt and a one way hash of the salted encryption key. To identify if this file was really encrypted with the encryption key being tried. (Fast check of correct key) -- NICE IDEA! * File names are encoded (reversable) but not encrypted. * No integretity check A file could be replaced by a encrypted malware file (no integrity check) using a old 'known' key. For example a file named "notepad.exe" -------------------------------------------------------------------------------