✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.223
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/plugins/Core/Storage//Encrypted_Options.php
<?php
/**
 * Class Google\Site_Kit\Core\Storage\Encrypted_Options
 *
 * @package   Google\Site_Kit
 * @copyright 2021 Google LLC
 * @license   https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
 * @link      https://sitekit.withgoogle.com
 */

namespace Google\Site_Kit\Core\Storage;

/**
 * Class providing access to encrypted options.
 *
 * @since 1.0.0
 * @access private
 * @ignore
 */
final class Encrypted_Options implements Options_Interface {

	/**
	 * Data Encryption API instance.
	 *
	 * @since 1.0.0
	 * @var Data_Encryption
	 */
	private $encryption;

	/**
	 * Option API instance.
	 *
	 * @since 1.0.0
	 * @var Options
	 */
	private $options;

	/**
	 * Constructor.
	 *
	 * @since 1.0.0
	 *
	 * @param Options $options Option API instance.
	 */
	public function __construct( Options $options ) {
		$this->encryption = new Data_Encryption();
		$this->options    = $options;
	}

	/**
	 * Checks whether or not a value is set for the given option.
	 *
	 * @since 1.3.0
	 *
	 * @param string $option Option name.
	 * @return bool True if value set, false otherwise.
	 */
	public function has( $option ) {
		return $this->options->has( $option );
	}

	/**
	 * Gets the value of the given option.
	 *
	 * @since 1.0.0
	 *
	 * @param string $option Option name.
	 * @return mixed Value set for the option, or false if not set.
	 */
	public function get( $option ) {
		$raw_value = $this->options->get( $option );

		// If there is no value stored, return the default which will not be encrypted.
		if ( ! $this->options->has( $option ) ) {
			return $raw_value;
		}

		$data = $this->encryption->decrypt( $raw_value );

		return maybe_unserialize( $data );
	}

	/**
	 * Sets the value for a option.
	 *
	 * @since 1.0.0
	 *
	 * @param string $option Option name.
	 * @param mixed  $value  Option value. Must be serializable if non-scalar.
	 * @return bool True on success, false on failure.
	 */
	public function set( $option, $value ) {
		if ( ! is_scalar( $value ) ) {
			$value = maybe_serialize( $value );
		}
		$raw_value = $this->encryption->encrypt( $value );
		if ( ! $raw_value ) {
			return false;
		}

		return $this->options->set( $option, $raw_value );
	}

	/**
	 * Deletes the given option.
	 *
	 * @since 1.0.0
	 *
	 * @param string $option Option name.
	 * @return bool True on success, false on failure.
	 */
	public function delete( $option ) {
		return $this->options->delete( $option );
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
22 Sep 2026 12.44 AM
docteuh / users
0755
Setting
--
12 Sep 2026 3.36 AM
docteuh / users
0755
Cache.php
3.324 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Encrypted_Options.php
2.374 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Encrypted_User_Options.php
2.829 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Options.php
2.871 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Options_Interface.php
1.326 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Post_Meta.php
2.212 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Post_Meta_Interface.php
1.976 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Post_Meta_Setting.php
3.659 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Setting.php
3.111 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Setting_With_Legacy_Keys_Trait.php
1.036 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Setting_With_Owned_Keys_Interface.php
0.649 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Setting_With_Owned_Keys_Trait.php
2.903 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Setting_With_ViewOnly_Keys_Interface.php
0.673 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Transients.php
2.074 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
User_Aware_Interface.php
0.801 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
User_Aware_Trait.php
1.422 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
User_Options.php
2.927 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
User_Options_Interface.php
1.342 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
User_Setting.php
3.28 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
User_Transients.php
7.445 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
icon-redirect-manager-20260827192224.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF