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