mmeyer2k/secretbox

A minimalist wrapper for libsodium secretbox

Installs: 85

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 1

pkg:composer/mmeyer2k/secretbox

v0.0.0 2025-01-05 09:53 UTC

This package is auto-updated.

Last update: 2025-12-01 21:40:08 UTC


README

A minimalist libsodium secretbox implementation for PHP, supporting key rotation.

PHP Tests

Features

  • Encrypt and decrypt messages using libsodium's secretbox
  • Support for key rotation (multiple keys for decryption)
  • Simple API for secure key management

Installation

Install via Composer:

composer require mmeyer2k/secretbox

Requires PHP 8.2+ and the Sodium extension.

Usage

Basic encryption and decryption:

use \Mmeyer2k\SecretBox\SecretBox;

$key = random_bytes(32); // 32 bytes required

$ciphertext = SecretBox::encrypt('secret message', $key);
$plaintext = SecretBox::decrypt($ciphertext, $key);

Key Management

Creating a Key

Generate a secure 32-byte key:

head -c 32 /dev/urandom | base64 -w 0

Storing a Key

Store keys in environment variables or configuration files as base64 strings. Decode before use:

$key = base64_decode('[your base64 key]');

Key Rotation

Support multiple keys for seamless rotation:

$plaintext = SecretBox::decrypt($ciphertext, [
    $oldKey,
    $newKey,
]);

Decryption will succeed with any valid key in the array.

Error Handling

If decryption fails (e.g., no matching key), a \SodiumException is thrown:

try {
    $plaintext = SecretBox::decrypt($ciphertext, $key);
} catch (\SodiumException $e) {
    // Handle decryption failure
}

License

MIT