Sessions handler which stores session data in HMAC-signed and encrypted cookies.
❤️ ❤️ ❤️
You can say thanks to the author by donations to these wallets:
- ETH:
0xB71250010e8beC90C5f9ddF408251eBA9dD7320e
- BTC:
- Legacy:
1N89PRvG1CSsUk9sxKwBwudN6TjTPQ1N8a
- Segwit:
bc1qc0hcyxc000qf0ketv4r44ld7dlgmmu73rtlntw
- Legacy:
- PHP 5.4.0 or newer
- OpenSSL extension (built-in by default)
- Hash extension (built-in by default)
- Enabled output buffering (
output_buffering=1
oroutput_buffering=On
in php.ini)
<?php
$secret = "reallylongsecretplease";
$handler = new VladislavYarmak\StoragelessSession\CryptoCookieSessionHandler($secret);
session_set_save_handler($handler, true);
session_start();
$_SESSION["key"] = "value";
framework:
session:
handler_id: session.handler.cookie
services:
session.handler.cookie:
class: VladislavYarmak\StoragelessSession\CryptoCookieSessionHandler
public: true
arguments: ['reallylongsecretplease']
CryptoCookieSessionHandler($secret, $expire = 2592000, $digest_algo = "sha256", $cipher_algo = "aes-256-cbc", $cipher_keylen = 32)
$secret
- secret passphrase used for HMAC signature and encryption$expire
- expiration time of HMAC signature$digest_algo
- hash algorithm used for key derivation and cookie signature. Seehash_algos()
for all available message digest algorithms.$cipher_algo
- cipher algorithm used for session contents encryption. Seeopenssl_get_cipher_methods()
for all available ciphers.$cipher_keylen
- proper key length for specified cipher algorithm, used for encryption key derivation