Created
May 6, 2014 10:11
-
-
Save ezodude/80672ce3ec4e86a708a3 to your computer and use it in GitHub Desktop.
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> | |
#import <CommonCrypto/CommonDigest.h> | |
@interface NSString (SO) | |
+ (NSString *)base64forData:(NSData *)data; | |
- (BOOL)isHexadecimal; | |
- (BOOL)isOnlyFromCharacterSet:(NSCharacterSet *)aCharacterSet; | |
- (NSString *)MD5; | |
- (NSString *)SHA1; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment