Whatever message this page gives is out now! Go check it out!
GenerateSCryptHash(plaintext, options)Parameter | Description |
plaintext | (Required) The input string on which the hash function must be run. |
options | (Optional) A struct with the following values:
|
<cfscript>
stringToEncrypt="Sample string"
options = StructNew()
options.cpucost = 1024
options.memorycost = 64
options.keylength = 16
options.saltlength = 8
sCrypted=GenerateSCryptHash(stringToEncrypt,options)
writeDump(sCrypted)
</cfscript>