Skip to content

Instantly share code, notes, and snippets.

View tciuro's full-sized avatar

Tito Ciuro tciuro

  • Vida Life Foundation
  • San Jose, California
View GitHub Profile
@gonecoding
gonecoding / Readme.markdown
Created February 22, 2011 12:42
Adding methods to NSData and NSString using categories to provide AES256 encryption on iOS

Important notice

I took down this Gist due to concerns about the security of the encryption/decryption part of this code (see comments below).

Rob Napier (@rnapier) has created a publicly available class that provides similar AES encryption/decryption functionality at https://github.com/rnapier/RNCryptor.

@vl4dimir
vl4dimir / AsyncTest.h
Created November 20, 2010 14:44
Example asynchronous GHUnit test.
#import <SenTestingKit/SenTestingKit.h>
@interface AsyncTests : SenTestCase {
NSCondition* condition;
BOOL operationSucceeded;
}
@end