RIPEMD160

From Liberty Unleashed Wiki
Revision as of 19:34, 3 March 2015 by Rwwpl (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events
Note: This function requires the external module lu_hashing2.

This function returns an RIPEMD160 hash value of the given string. This is useful for example when storing account passwords.

Syntax

  1. string RIPEMD160( string text )

Arguments

  • text - The string to be hashed

Example

  1.  
  2. function onPlayerCommand( pPlayer, szCommand, szText )
  3. {
  4. if ( szCommand == "ripemd160" )
  5. {
  6. if ( szText ) MessagePlayer( "The RIPEMD160 of " + szText + " is " + RIPEMD160( szText ), pPlayer );
  7. }
  8. return 1;
  9. }
  10.  

Notes

The function MessagePlayer and event onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Functions

Hashing2 adds the following hashing functions, while also offering the functions available in the regular hashing module. lu_hashing2.

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox