/home/sharedstore/public_html/prestashop.sharedstore.ma/vendor/defuse/php-encryption/src
NameSizeModeActions
Exception/-0755rm
Core.php156150644editdlrm
Crypto.php141740644editdlrm
DerivedKeys.php7790644editdlrm
Encoding.php92520644editdlrm
File.php258790644editdlrm
Key.php22860644editdlrm
KeyOrPassword.php44570644editdlrm
KeyProtectedByPassword.php45040644editdlrm
RuntimeTests.php83750644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/vendor/defuse/php-encryption/src/Key.php (2286B)
key_bytes ); } /** * Gets the raw bytes of the key. * * @return string */ public function getRawBytes() { return $this->key_bytes; } /** * Constructs a new Key object from a string of raw bytes. * * @param string $bytes * * @throws Ex\EnvironmentIsBrokenException */ private function __construct($bytes) { Core::ensureTrue( Core::ourStrlen($bytes) === self::KEY_BYTE_SIZE, 'Bad key length.' ); $this->key_bytes = $bytes; } }