Encrypt and compress html-codes in iPhone app bundle, unpack on first start - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:44:34Z http://stackoverflow.com/feeds/question/612728 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start 0 Encrypt and compress html-codes in iPhone app bundle, unpack on first start avocade 2009-03-04T22:20:25Z 2009-11-09T08:46:24Z <p>My client wants to encrypt/compress the html-code for their medical books in the iPhone bundle, to protect their IP. </p> <p>Whats is a good way to prepare this file for the app bundle, and what complementary libraries (C, Obj-C) should I use to do the decryption and decompressing on the first launch of the app? </p> <p>Copying the file to ~/Documents, then working on it seems like the best solution. Thoughts?</p> http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start/612762#612762 1 Answer by nduplessis for Encrypt and compress html-codes in iPhone app bundle, unpack on first start nduplessis 2009-03-04T22:30:44Z 2009-03-04T22:30:44Z <p>I would keep the documents encrypted if I were you and just decrypt them as needed. One would easily be able to access the decrypted documents on a jailbroken device.</p> <p>See the "Security Overview" document and the CryptoExercise sample code for encryption techniques</p> http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start/612988#612988 1 Answer by François P. for Encrypt and compress html-codes in iPhone app bundle, unpack on first start François P. 2009-03-04T23:36:26Z 2009-03-04T23:36:26Z <p>This is quite tricky... almost impossible to make it really unbreakable. Any reasonnably motivated person will be able to pierce through it. You'll only make it a little harder to do. In any case, you definitely can't store any secret key in the bundle itself. You'd need to securely obtain the decryption key over a secure channel from a server and use it as needed. Even then, someone doing jailbreak would probably be able to run GDB over your running program and extract the secret key in RAM + the secret key would be shared amongst all users of your app... You're essentially trying to implement a DRM scheme, which is inherently flawed by design... Unless you need offline access, you might want to pull the data as needed from a secure erver... at least you "could" throttle information leakage...</p> http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start/613611#613611 1 Answer by John Fricker for Encrypt and compress html-codes in iPhone app bundle, unpack on first start John Fricker 2009-03-05T04:52:59Z 2009-03-05T04:52:59Z <p>Here's a few thoughts. </p> <p>If the book text is all alphanumeric data, then don't save the data as ASCII - save them in your own binary encoded format (for instance use 5 bits instead of 8 and pack into words). That gives you a bit of compression, slight obfuscation and a very cheap (in clock cycles) decompression. You would have a data format that is quick to access on the fly and will keep the casual curious hacker out of the text. Clock cycles would be my main concern and security second.</p> <p>Another idea is store the decrypt key for a typical Blowfish encryption in obfuscated format in the app. Split into two or three constants that require some odd operation to restore for instance. But of course, now the overhead of Blowfish or whatever will be your concern.</p> <p>Since you will not be able to implement perfect security (perfection is extremely expensive), the IP owners will have to use traditional copyright and trade secret techniques to fully protect their property. You've made it harder to hack, but it's still up to the lawyers to be diligent, just a book on the shelf in the reserved section of the library (no photocopies please!). </p> <p>Cheers</p> http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start/613835#613835 1 Answer by rpetrich for Encrypt and compress html-codes in iPhone app bundle, unpack on first start rpetrich 2009-03-05T07:03:51Z 2009-03-05T07:03:51Z <p>You probably won't like it, but the best way is to just not use HTML. Once you pass the decrypted HTML to UIWebView, it is very easy for a malicious user to steal it at that level, defeating any purpose your encryption algorithm had. A UIView subclass with custom drawing code and a custom encrypted backing format will be much more difficult to work around</p> http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start/640049#640049 1 Answer by jbutcher for Encrypt and compress html-codes in iPhone app bundle, unpack on first start jbutcher 2009-03-12T19:06:22Z 2009-03-12T19:06:22Z <p>From <a href="http://developer.apple.com/DOCUMENTATION/Security/Reference/keychainservices/index.html#//apple%5Fref/doc/uid/TP30000898" rel="nofollow">Mac OS X and iPhone OS Security Services</a>: </p> <blockquote> <p>You can use Keychain Services to encrypt and store small amounts of data (see <a href="http://developer.apple.com/DOCUMENTATION/Security/Reference/keychainservices/index.html#//apple%5Fref/doc/uid/TP30000898" rel="nofollow">Keychain Services Reference</a> and <a href="http://developer.apple.com/DOCUMENTATION/Security/Conceptual/keychainServConcepts/index.html#//apple%5Fref/doc/uid/TP30000897" rel="nofollow">Keychain Services Programming Guide</a>). If you want to encrypt or decrypt larger amounts of data in Mac OS X, you can use the Common Security Services Manager (CSSM) Cryptographic Services Manager. This manager also has functions to create and verify digital signatures, generate cryptographic keys, and create cryptographic hashes. In iPhone OS, the Certificate, Key, and Trust Services API provides functions for generating encryption keys, creating and verifying digital signatures, and encrypting blocks of data; see <a href="http://developer.apple.com/DOCUMENTATION/Security/Reference/certifkeytrustservices/index.html#//apple%5Fref/doc/uid/TP30000157" rel="nofollow">Certificate, Key, and Trust Services Reference</a>.</p> </blockquote> <p>It's always a choice between performance (encryption just doesn't come free) and security (security and everything else, really). But what else is new? If you keep the individual files small enough, maybe decryption doesn't slow you down much. Alternatively, you may consider predictive decryption such that you have certain files being decrypted in the background, say those linked from the currently viewed file, etc. I realize, however, that concurrancy on the iPhone may be pretty spotty (I don't know as I haven't dropped the cash for a license). You may also realize performance gains by only encrytping those files that really need it; does an index/table of contents or other often accessed file really need to be encrypted? Does that count as IP your client is worried about?</p> http://stackoverflow.com/questions/612728/encrypt-and-compress-html-codes-in-iphone-app-bundle-unpack-on-first-start/1693469#1693469 1 Answer by Bartosz Wójcik for Encrypt and compress html-codes in iPhone app bundle, unpack on first start Bartosz Wójcik 2009-11-07T15:52:19Z 2009-11-09T08:46:24Z <p>For compression I can recommend QuickLZ (fastest engine I saw, great compression ratio).</p>