21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#endif
extern int _OFString_Hashing_reference;
#ifdef __cplusplus
}
#endif
/**
* The OFString (OFHashing) category provides methods to calculate hashes for
* strings.
*/
@interface OFString (Hashing)
/**
* \return The MD5 hash of the string as an autoreleased OFString
*/
- (OFString*)MD5Hash;
|
|
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#endif
extern int _OFString_Hashing_reference;
#ifdef __cplusplus
}
#endif
/**
* The OFString (Hashing) category provides methods to calculate hashes for
* strings.
*/
@interface OFString (Hashing)
/**
* \return The MD5 hash of the string as an autoreleased OFString
*/
- (OFString*)MD5Hash;
|