llSHA1String

From Second Life Wiki
Revision as of 16:58, 11 October 2008 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search
Emblem-important-red.png Pre-release Documentation Warning!

This function is not available yet. This documentation was written prior to its final release so it may not match the final implementation.

Summary

Function: string llSHA1String( string src );

Returns a string of 40 hex characters that is the "Wikipedia logo"SHA1 security hash of src.

• string src

Specification

LSL strings are stored in the UTF-8 format.

Examples

<lsl> llSay(0, llSHA1String("Hello, Avatar!")); // returns *fixme* </lsl>

Linux Example

$ echo -n 'Hello, Avatar!' | openssl sha1
*fixme*

See Also

Functions

•  llMD5String

Deep Notes

History

Search JIRA for related Issues

Signature

function string llSHA1String( string src );