Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 676 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 676 Bytes

Encrypt assets in an Xcode project

Objective-C script that will encrypt a directory of files. Ideally run the script in any Xcode project as part of your build (i.e. add a new target type 'External Build System' and specify the script). Decrypt files individually at runtime.

Basic usage

EncryptAssets /path/to/folder/with/assets/ /path/to/destination/folder/for/encrypted/assets/ some_$3cr3t_key

Adding to XCode project build

todo: details

Decrypting files

use NSData+AES256 method:

-(NSData*) decryptedWithKey:(NSData*)key;

todo: details

Contact

email: [email protected] or twitter: @nerdcave