Plugin Directory

Changeset 3217053


Ignore:
Timestamp:
01/05/2025 02:14:09 AM (15 months ago)
Author:
bhubbard
Message:

Update to 1.1.0

Location:
fernet-encryption/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • fernet-encryption/trunk/fernet-encryption.php

    r2711267 r3217053  
    88/**
    99 * Plugin Name: Fernet Encryption
    10  * Plugin URI: https://github.com/hubbardlabs/fernet-encryption/
     10 * Plugin URI: https://wordpress.org/plugins/fernet-encryption/
    1111 * Description: Secure WordPress data with Fernet Encryption.
    12  * Version: 1.0.8
    13  * Author: Hubbard Labs
    14  * Contributors: hubbardlabs, bhubbard
     12 * Version: 1.1.0
     13 * Author: bhubbard, hubbardlabs
    1514 * Author URI: https://hubbardlabs.com
    1615 * Text Domain: fernet-encryption
    1716 * Domain Path: /i18n/languages/
    18  * Requires at least: 5.5
    19  * Requires PHP: 7.0
     17 * Tested up to: 6.7.1
     18 * Requires at least: 6.4
     19 * Requires PHP: 8.0
    2020 */
    2121
     
    9696
    9797        return false;
    98 
    9998    }
    10099}
  • fernet-encryption/trunk/includes/class-fernet-cli.php

    r2611628 r3217053  
    8888            WP_CLI::success( $message );
    8989        }
    90 
    9190    }
    9291    WP_CLI::add_command( 'fernet', 'Fernet_CLI' );
    9392}
    94 
  • fernet-encryption/trunk/includes/class-fernet-rest-api.php

    r2611628 r3217053  
    9090                )
    9191            );
    92 
    9392        }
    9493
     
    110109            $encryption = fernet_encrypt( $message, $args );
    111110            return rest_ensure_response( $encryption );
    112 
    113111        }
    114112
     
    130128            $message = fernet_decrypt( $token, $args );
    131129            return rest_ensure_response( $message );
    132 
    133130        }
    134131
     
    147144
    148145            return true;
    149 
    150146        }
    151 
    152147    }
    153148
  • fernet-encryption/trunk/includes/class-fernet-shortcodes.php

    r2611628 r3217053  
    4444            return fernet_decrypt( $content );
    4545        }
    46 
    4746    }
    4847
  • fernet-encryption/trunk/includes/helpers.php

    r2611628 r3217053  
    112112            return $meta;
    113113        }
    114 
    115114    }
    116115}
  • fernet-encryption/trunk/readme.txt

    r2711265 r3217053  
    11=== Fernet Encryption ===
    2 Contributors: hubbardlabs, bhubbard
     2Contributors: bhubbard, hubbardlabs
    33Donate link: https://hubbardlabs.com
    44Tags: fernet, encryption, security
    5 Requires at least: 4.5
    6 Tested up to: 5.8
    7 Requires PHP: 7.0
    8 Stable tag: 1.0.8
     5Requires at least: 6.0
     6Tested up to: 6.4
     7Requires PHP: 8.0
     8Stable tag: 1.0.9
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1616Fernet Encryption is a plugin that can be used to encrypt and decrypt data in WordPress using fernet.
    1717
     18Development was originally sponsered by Access Networks.
     19
    1820=== Setup your Key ===
    1921
    2022To setup your key, you need to add the following line to your wp-config file.
    2123
    22 `define( 'FERNET_KEY', 'YOUR_FERNET_KEY' );`
     24```
     25define( 'FERNET_KEY', 'YOUR_FERNET_KEY' );
     26```
    2327
    2428If you choose not to setup your key, you will need to save a copy of the one provided upon activation of the plugin.
Note: See TracChangeset for help on using the changeset viewer.