Sha256: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
 
{{Tip|
{{Note box|returns an uppercase string, so make sure you string.upper() anything else you are checking against that has been sha256'd elsewhere.}}
* The sha module and this function may conflict with eachother, if you use this function uninstall the module!
{{Tip|The sha module and this function may conflict with eachother, if you use this function uninstall the module!}}
* This function returns an uppercase string, so make sure you string.upper() anything else you are checking against that has been sha256'd elsewhere.}}
{{Warning|It is strongly recommended to use passworldHash to hash passwords, because Sha256 is easily decodable.}}


Calculates the sha256 hash of the specified string.
Calculates the sha256 hash of the specified string.
Line 16: Line 15:
===Returns===
===Returns===
Returns the sha256 hash of the input string if successful, ''false'' otherwise.
Returns the sha256 hash of the input string if successful, ''false'' otherwise.
==Requirements==
{{Requirements|1.3.1-9.04836|1.3.1-9.04836|}}


==Example==
==Example==
Line 34: Line 30:
==See Also==
==See Also==
{{Utility functions}}
{{Utility functions}}
[[en:sha256]]
[[ru:sha256]]

Latest revision as of 17:08, 7 November 2024

[[{{{image}}}|link=|]] Tip:
  • The sha module and this function may conflict with eachother, if you use this function uninstall the module!
  • This function returns an uppercase string, so make sure you string.upper() anything else you are checking against that has been sha256'd elsewhere.

Calculates the sha256 hash of the specified string.

Syntax

string sha256 ( string str )

Required Arguments

  • str: the string to hash.

Returns

Returns the sha256 hash of the input string if successful, false otherwise.

Example

addCommandHandler ( "sha", -- Create a command
	function ( thePlayer, command, input )
		if ( input ) then -- Check if the string exist
			local sha256hash = sha256( input ) -- Generate the hash
			outputChatBox( sha256hash ) -- Output the hash in the chat
		end
	end
)

See Also