objective-c-sql-query-builder
Static Public Member Functions
ZIMMessageDigest Class Reference

#import <ZIMMessageDigest.h>

List of all members.

Static Public Member Functions

(NSString *) + md2:
(NSString *) + md4:
(NSString *) + md5:
(NSString *) + sha1:
(NSString *) + sha224:
(NSString *) + sha256:
(NSString *) + sha384:
(NSString *) + sha512:

Detailed Description

Discussion:
This class creates a message digest algorithmically from a specified string.
Updated:
2011-08-01

Member Function Documentation

+ (NSString *) md2: (NSString *)  string
Signature:
md2:
Discussion:
This method creates a message digest using the md2 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://www.crypo.com/eng_md2.php
+ (NSString *) md4: (NSString *)  string
Signature:
md4:
Discussion:
This method creates a message digest using the md4 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://www.crypo.com/eng_md4.php
+ (NSString *) md5: (NSString *)  string
Signature:
md5:
Discussion:
This method creates a message digest using the md5 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://www.makebetterthings.com/blogs/uncategorized/how-to-get-md5-and-sha1-in-objective-c-ios-sdk/
http://www.miniwebtool.com/md5-hash-generator/
+ (NSString *) sha1: (NSString *)  string
Signature:
sha1:
Discussion:
This method creates a message digest using the sha1 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://www.makebetterthings.com/blogs/uncategorized/how-to-get-md5-and-sha1-in-objective-c-ios-sdk/
http://www.miniwebtool.com/sha1-hash-generator/
+ (NSString *) sha224: (NSString *)  string
Signature:
sha224:
Discussion:
This method creates a message digest using the sha224 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://www.miniwebtool.com/sha224-hash-generator/
+ (NSString *) sha256: (NSString *)  string
Signature:
sha256:
Discussion:
This method creates a message digest using the sha256 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://stackoverflow.com/questions/4992109/generate-sha256-string-in-objective-c
http://www.miniwebtool.com/sha256-hash-generator/
+ (NSString *) sha384: (NSString *)  string
Signature:
sha384:
Discussion:
This method creates a message digest using the sha384 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://www.miniwebtool.com/sha384-hash-generator/
+ (NSString *) sha512: (NSString *)  string
Signature:
sha512:
Discussion:
This method creates a message digest using the sha512 algorithm.
Parameters:
stringThe string to be hashed.
Returns:
A string representing the message digest.
Updated:
2011-08-01
See also:
http://stackoverflow.com/questions/3829068/hash-a-password-string-using-sha512-like-c
http://www.miniwebtool.com/sha512-hash-generator/

The documentation for this class was generated from the following files:
 All Classes Files Functions Variables Properties Defines