golden hour
/home/godaofbq/dev.oxygenhealthsystems.com/wp-content/plugins/duplicator-pro/src/Utils/Crypt
⬆️ Go Up
Upload
File/Folder
Size
Actions
CryptBlowfish.php
8.72 KB
Del
OK
CryptCustom.php
2.15 KB
Del
OK
CryptInterface.php
579 B
Del
OK
Edit: CryptInterface.php
<?php /** * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Utils\Crypt; interface CryptInterface { /** * Return encrypt string * * @param string $string string to encrypt * @param string $key hash key * * @return string */ public static function encrypt($string, $key); /** * Return decrypt string * * @param string $string string to decrypt * @param string $key hash key * * @return string */ public static function decrypt($string, $key); }
Save