Skip to content

Instantly share code, notes, and snippets.

@cruffenach
Created October 9, 2011 20:39
Show Gist options
  • Save cruffenach/1274136 to your computer and use it in GitHub Desktop.
Save cruffenach/1274136 to your computer and use it in GitHub Desktop.
An NSString subclass header for use with encrypted strings. For an article at www.iCodeBlog.com
#import <Foundation/Foundation.h>
@interface ICBEncryptedString : NSString {
NSString *_backingStore;
}
+(id)encryptedStringWithString:(NSString *)string;
-(id)initWithString:(NSString*)string;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment