Difference between revisions of "LlMD5String"

From Second Life Wiki
Jump to navigation Jump to search
(expansion)
Line 3: Line 3:
|func=llMD5String|return_type=string|p1_type=string|p1_name=src|p2_type=integer|p2_name=nonce
|func=llMD5String|return_type=string|p1_type=string|p1_name=src|p2_type=integer|p2_name=nonce
|func_footnote
|func_footnote
|func_desc=Performs a RSA Data Security, Inc. MD5 Message-Digest Algorithm on string with nonce. Returns a 32 character hex string.  Nonce is added to the string after a colon (stringcontents:nonce).  This is important to know if you are calculating a hash in another language and wish to compare with one calculated in LSL.
|func_desc=Performs a RSA Data Security, Inc. MD5 Message-Digest Algorithm on string with nonce. Returns a 32 character hex string.   
<p>Nonce is added to the string after a colon (stringcontents:nonce).  This is important to know if you are calculating a hash in another language and wish to compare with one calculated in LSL.
|return_text
|return_text
|spec
|spec

Revision as of 12:14, 22 February 2007

Summary

Function: string llMD5String( string src, integer nonce );

Performs a RSA Data Security, Inc. MD5 Message-Digest Algorithm on string with nonce. Returns a 32 character hex string.

Nonce is added to the string after a colon (stringcontents:nonce). This is important to know if you are calculating a hash in another language and wish to compare with one calculated in LSL.
Returns a string

• string src
• integer nonce

Examples

Deep Notes

Search JIRA for related Issues

Signature

function string llMD5String( string src, integer nonce );