该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

Fernet Encryption

描述

Fernet Encryption is a plugin that can be used to encrypt and decrypt data in WordPress using fernet.

Setup your Key

To setup your key, you need to add the following line to your wp-config file.

define( 'FERNET_KEY', 'YOUR_FERNET_KEY' );

If you choose not to setup your key, you will need to save a copy of the one provided upon activation of the plugin.

IMPORTANT: Changing your WordPress salts will invalidate the default Fernet key provided.

How to Use

To encrypt data simply use $token = fernet_encrypt( 'YOUR MESSAGE' ) in your code.

To decrypt the data simply use fernet_decrypt( $token ) in your code.

You can use the following shortcode to encrypt:

[fernet-encrypt]YOUR MESSAGE[/fernet-encrypt]

You can use the following shortcode to decrypt:

[fernet-decrypt]YOUR-FERNET-TOKEN[/fernet-decrypt]

We have also added useful helper functions:

  • fernet_get_post_meta
  • fernet_add_post_meta
  • fernet_update_post_meta
  • fernet_get_user_meta
  • fernet_add_user_meta
  • fernet_update_user_meta
  • fernet_add_option
  • fernet_get_option
  • fernet_update_option

Credit

  • Illustrations provided by undraw.co
  • Fernent PHP modified from Kelvin Mo – Fernet-PHP

评价

此插件暂无评价。

贡献者及开发者

“Fernet Encryption” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

将“Fernet Encryption”翻译成您的语言。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志

更新日志

1.0.7

  • Readme improvements

1.0.6

  • Add support for WordPress Rest API.
  • Add support for WordPress CLI.

1.0.5

  • Added Helper Functions.

1.0.4

  • Updated Readme

1.0.3

  • Updated Readme.
  • Provided shortcodes for encrypting and decrypting.

1.0.0

  • First release.