Created
October 9, 2011 20:39
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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