| 1 | /* |
| 2 | * FlickrCategory.h |
| 3 | * ---------------- |
| 4 | * |
| 5 | * Author: Chris Lee <clee@mg8.org> |
| 6 | * License: GPL v2 <http://www.opensource.org/licenses/gpl-license.php> |
| 7 | */ |
| 8 | |
| 9 | #import <Foundation/Foundation.h> |
| 10 | #import <openssl/md5.h> |
| 11 | |
| 12 | @interface NSString (Flickr) |
| 13 | - (NSString *)md5HexHash; |
| 14 | @end |
| 15 | |
| 16 | @interface NSData (Flickr) |
| 17 | - (NSString *)md5HexHash; |
| 18 | @end |
| 19 | |
| 20 | @interface NSDictionary (Flickr) |
| 21 | - (NSArray *)pairsJoinedByString: (NSString *)j; |
| 22 | @end; |
| 23 | |