Returns the unencrypted value of the input string using a shared secret and optional salt. If no salt is provided, a default salt value is used.
decrypt_aes: String secretString salt
Use the encrypt_aes and decrypt_aes filters to encrypt and decrypt strings using the aes alrorithm.
Encrypt and decrypt strings with aes
Copyencrypt_aes
decrypt_aes
Returns the encrypted value of the input string using a shared secret and optional salt. If no salt is provided, a default salt value is used.
encrypt_aes: String secretString salt
Use the encrypt_aes and decrypt_aes filters to encrypt and decrypt strings using the aes alrorithm.
Encrypt and decrypt strings with aes
Copyencrypt_aes
decrypt_aes
Encodes a string to a URL-safe base64 format. The difference between the base64 and URL-safe base64 formats is that the URL-safe format uses - and _ in place of + and /, which can cause problems when used in a URL.
base64_url_safe_encode
{% image_url %}
{{ url }}
{% set_canonical_url %}
Decodes a string from a URL-safe base64 format. The difference between the base64 and URL-safe base64 formats is that the URL-safe format uses - and _ in place of + and /, which can cause problems when used in a URL.
base64_url_safe_decode
{% image_url %}
{{ url }}
{% set_canonical_url %}
Encodes a string to Base64 format
base64_encode
Decodes a string from Base64 format
base64_decode