Skip to content

3‐ Gerando chaves de segurança

Arthu Santiago edited this page Nov 16, 2023 · 1 revision

Gerando a chave de criptografia pela CLI

php -r "echo PHP_EOL . sodium_bin2hex(sodium_crypto_secretbox_keygen()) . PHP_EOL;"

Gerando o SALT pela CLI

php -r "echo PHP_EOL . bin2hex(random_bytes(32)) . PHP_EOL;"