Pushr (master) :  summary log tree commit diff
path: root/FlickrCategory.h blob: bbbfe4d2f7191f03172065cfcf551f1aa1ad6a7f
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