Licensing ITFoundation under the GNU General Public License version 2.
[ITFoundation.git] / ITCategory-NSString.h
1 /*
2  *      ITFoundation
3  *      ITCategory-NSString.h
4  *
5  *      Copyright (c) 2005 iThink Software
6  *
7  */
8
9 #import <Foundation/Foundation.h>
10
11 @interface NSString (ITFoundationCategory)
12
13 + (id)stringWithFourCharCode:(unsigned long)fourCharCode;
14
15 - (id)initWithFourCharCode:(unsigned long)fourCharCode;
16 - (unsigned long)fourCharCode;
17
18 - (NSData *)MD5;
19 - (NSData *)SHA1;
20
21 @end