<?php
/**
 * Plugin Name: SecuPress Salt Keys
 * Plugin URI: https://secupress.me
 * Description: Good Security Keys for your sites
 * Version: 1.0.2
 * Generation ID: 1722052867.3992
 * License: GPLv2
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Copyright 2012-2020 SecuPress
 */

defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );

define( 'SECUPRESS_SALT_KEYS_ACTIVE', true );

$hash_1     = 'jMW$t#N1&A5x6X8Ab^bk%^QfwudA%h%VnlO7xSHeJTBK!FJ24uM6I7R*14w@xYXN';
$hash_2     = 'OCHiwDn3YgPK^$JHScxYlJjmSsFO4joS72XUebGU5ybVE^qBr4NwVKmeg(Ioe$kz';
$file_str   = __FILE__ . date( 'Ym' ); // Remove the `m` to prevent keys from changing every month, remove the date() fct to prevent any change.
$hash_1    .= $hash_2;
$file_str  .= $hash_2;
$main_keys  = array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT', );

foreach ( $main_keys as $main_key ) {
	if( ! defined( $main_key ) ) {
		define( $main_key, sha1( 'secupress' . $main_key . md5( $main_key . $file_str ) ) . md5( $main_key . $file_str ) );
	}
}

unset( $file_str, $main_key, $main_keys, $hash_1, $hash_2 );