¡@

Home 

2014/10/15 ¤U¤È 10:12:15

iphone Programming Glossary: obfuscation

Xcode: hide / protect resource files in final iOS app?

http://stackoverflow.com/questions/11041899/xcode-hide-protect-resource-files-in-final-ios-app

how good you want the protection to be. For very minimal protection against only casual hackers you could use a string obfuscation algorithm to obfuscate and de obfuscate the HTML content as NSString s. Here's an example of doing that . I haven't used.. NSString s. Here's an example of doing that . I haven't used that particular code but I'm also not really recommending obfuscation as a technique unless the data really isn't very sensitive. The better solution is to encrypt the HTML content although..

How to decrypt an encrypted Apple iTunes iPhone backup?

http://stackoverflow.com/questions/1498342/how-to-decrypt-an-encrypted-apple-itunes-iphone-backup

on iPhone AES Rijndael interoperability suggesting a keysize of 128 and CBC mode may be used. Aside from any other obfuscation a key and initialisation vector IV salt are required. One might assume that the key is a manipulation of the backup password..

Why should I use Core Data for my iPhone app?

http://stackoverflow.com/questions/1883879/why-should-i-use-core-data-for-my-iphone-app

dev and I have a feeling that Core Data would be useful but I can't clearly explain why. Please excuse the following obfuscation .. the app needs to retrieve a list of foos from a central server. Users can then add a bar from a list of bars to the foos..

Need to apply for CCATS if using simple XOR cipher?

http://stackoverflow.com/questions/4882502/need-to-apply-for-ccats-if-using-simple-xor-cipher

states that developers need to get a CCATS Classification if using encryption in the app. My app uses a simple XOR obfuscation cipher when transferring data over HTTP. Does this still fall under that requirement If not then what type of encryption..

Storing In App Purchase receipts in the application Keychain

http://stackoverflow.com/questions/4978852/storing-in-app-purchase-receipts-in-the-application-keychain

a little more effort and know how to find the TRUE FALSE flag and cause it to always return the correct value. Through obfuscation I could even make it slightly more difficult to track that down. Thanks for all of your insights and I appreciate answers..

iPhone/iPad App Code Obfuscation - Is it Possible? Worth it?

http://stackoverflow.com/questions/5556849/iphone-ipad-app-code-obfuscation-is-it-possible-worth-it

both on SO as well google ing all over the place but I can't seem to find a straight forward answer in regards to code obfuscation for iPhone iPad apps written in Objective C. My questions are these Is there a way to do it If so how Is it worth it Does.. If so how Is it worth it Does Apple allow it or have a problem with it when the app is submitted to them iphone ipad obfuscation store share improve this question There doesn't seem to a code obfuscator for Objective C. But let's assume for a moment.. will probably not reject an obfuscated app as long as it doesn't crash. The main question is what is the point of obfuscation Normally you want to obfuscate code to protect your knowledge for example if your program uses a copy protection you want..

How to protect app IPA from hacks if reverse engineering is possible

http://stackoverflow.com/questions/6939222/how-to-protect-app-ipa-from-hacks-if-reverse-engineering-is-possible

either possibility. It is impossible to prevent reverse engineering of your app. Even if you had put more effort into obfuscation an attacker with strong motivation would still be able to get what he wants. Your client needs to get used to this as it's..

Secure https encryption for iPhone app to webpage

http://stackoverflow.com/questions/9181186/secure-https-encryption-for-iphone-app-to-webpage

secret over SSL will stop the majority of your attackers without harming your users or costing a lot to develop. It is obfuscation not security but cheap and mostly effective is much better than expensive and mostly effective. If you have a very high..