Formidable Forms Encryption
Wordpress plugin to enable encrypting and decrypting of data entered using Formidable Forms
by Jeremy Varnham · github.com/jvarn/formidable-forms-encryption · website
★ 2stars
1forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/jvarn/formidable-forms-encryption/archive/refs/heads/main.zipFrom the readme
Formidable Forms Encryption
A Wordpress plugin to enable encrypting and decrypting of data entered using Formidable Forms. Requires Advanced Custom Fields (ACF) Plugin.
Based upon original code by Victor Font.
Initial configuration
The following lines need to be added to wp-config.php, substituting the strings as described below.
FORMIDABLESALT
Generate a SALT value (choose any one and rename FORMIDABLESALT).
FORMIDABLEMETHOD
Choose an appropriate encryption method.
e.g. AES-256-CBC
FORMIDABLEOPTIONS
Is 0, here’s an explanation of openssl options.
FORMIDABLEIV
“A non-NULL Initialization Vector” of a particular length according to chosen encryption method
“a random string with a length that must match the length required by your chosen cipher method. How do we know the iv length required by the chosen cipher method? We use the opensslcipherivlength($cipher) function to find out.”
More details in this blog post.