I completely revise my question because I found two excellent sources about iOS's data protection. First one is: Episode 209 of Apple's WWDC 2010 Videos "Securing Application Data" and second is http://anthonyvance.com/blog/forensics/ios4_data_protection/.
This only leaves a few opens about data protection:
- The keychain allows defining a class "available when unlocked, this device only" which prevents a keychain record from getting transferred to another device using backup/restore. To my understanding there is nothing similar for files, or is there? How can I prevent FILE data being restored on another device?
- NSData allows storing files with protection and NSFileManager allows changing the security class of an existing file. In my case, files are downloaded by a webservice and I wonder if there are any disadvantages if I first store the file unencrypted and the use NSFileManager to change the class?
- If the user does not specify a PIN or passcode, there is no real protection, correct?
- Is there evidence that a PIN/or password protected device's content which was protected using the "protect always" has been successfully hacked?
- My device contains files which are stored in encrypted format. If now I make a backup of my device in iTunes and do not select to encrypt and password protect that backup, are my backed up files still in encrypted or are they unencrypted in the backup, meaning iTunes would decrypt them before backing up?