Some Needed Functions

Some Needed Functions

Follows from my post here: https://help.zoho.com/portal/en/community/topic/cryptography-function

If we had these functions (from PHP), much would be possible

URL encode a string: rawurlencode($var)

Decode a url string: rawurldecode($var)

Convert a string to base 64: base64_encode($var)

Decode a string from 64: base64_decode($var)

Make a hash string: hash_hmac('sha256', $var, $key, true)

John M. Whitney