Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.04 KB

File metadata and controls

35 lines (23 loc) · 1.04 KB

Function: Hash

Creates an algorithmic hash of an object

Method Signature

Hash(input=[any], algorithm=[string], encoding=[string], numIterations=[integer])

Arguments

Argument Type Required Description Default
input any true The item to be hashed
algorithm string false The supported {@link java.security.MessageDigest} algorithm (case-insensitive) MD5
encoding string false Applicable to strings ( default "utf-8" ) utf-8
numIterations integer false 1

Examples

Related