i have some application-specific data that i want to encrypt and store in a file (before i've compiled the app - not at runtime) as a resource in my app bundle. the problem is that my encryption algorithm returns an NSData object that looks like <5956b4f7 b8aecea1 633f6178 18368c78> and if i paste that manually into that file and subsequently read it using stringWithContentsOfFile and convert that string back to NSData to decrypt it, it doesn't work.
bottom line, how can i manually store an NSData object so it can be read later?
bottom line, how can i manually store an NSData object so it can be read later?