Server IP : 51.89.169.208 / Your IP : 3.15.27.146 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/www/phpMyAdmin/libraries/classes/Crypto/ |
Upload File : |
<?php declare(strict_types=1); namespace PhpMyAdmin\Crypto; use Throwable; use function is_string; use function mb_strlen; use function mb_substr; use function random_bytes; use function sodium_crypto_secretbox; use function sodium_crypto_secretbox_open; use const SODIUM_CRYPTO_SECRETBOX_KEYBYTES; use const SODIUM_CRYPTO_SECRETBOX_NONCEBYTES; final class Crypto { private function getEncryptionKey(): string { global $config; $key = $config->get('URLQueryEncryptionSecretKey'); if (is_string($key) && mb_strlen($key, '8bit') === SODIUM_CRYPTO_SECRETBOX_KEYBYTES) { return $key; } $key = $_SESSION['URLQueryEncryptionSecretKey'] ?? null; if (is_string($key) && mb_strlen($key, '8bit') === SODIUM_CRYPTO_SECRETBOX_KEYBYTES) { return $key; } $key = random_bytes(SODIUM_CRYPTO_SECRETBOX_KEYBYTES); $_SESSION['URLQueryEncryptionSecretKey'] = $key; return $key; } public function encrypt(string $plaintext): string { $key = $this->getEncryptionKey(); $nonce = random_bytes(SODIUM_CRYPTO_SECRETBOX_NONCEBYTES); $ciphertext = sodium_crypto_secretbox($plaintext, $nonce, $key); return $nonce . $ciphertext; } public function decrypt(string $encrypted): ?string { $key = $this->getEncryptionKey(); $nonce = mb_substr($encrypted, 0, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, '8bit'); $ciphertext = mb_substr($encrypted, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, null, '8bit'); try { $decrypted = sodium_crypto_secretbox_open($ciphertext, $nonce, $key); } catch (Throwable $e) { return null; } if (! is_string($decrypted)) { return null; } return $decrypted; } }