Skip to content

CryptMd5

Miriam McMahon edited this page Apr 27, 2023 · 5 revisions

Description

Encrypt the selected string using CryptSharp Md5.

Parameters

Parameter Name Description Type Resolved Type Required
Source The string to encrypt Value String Yes
ResultVariable The name of a variable that will contain the encrypted value String String Yes

Compatibility

This command was introduced in Safeguard v6.7

Examples

Example:

{
  "CryptMd5": {
    "Source": "%NewPassword%",
    "ResultVariable": "HashedPassword"
  }
},
{
  "Send":{
    "ConnectionObjectName" : "ConnectObject",
    "Buffer" : "CustomCommandToChangePassword -p %HashedPassword%"
  }
}