This package makes it possible to create (very) secure messages and store them in, for example, your database. A secure message is encrypted with a combination of three key 'parts':
- A "database key" - to be saved in a database.
- A "storage key" - to be stored on a disk/filesystem.
- A "verification code" - this code should not be stored anywhere.
This way, if an attacker has access to the database, it still has only access to a small part of the complete key. The same goes if an attacker has access to the file storage. Even if an attacker has access to the database and the file storage, a part of the complete key is still missing.
The verification code can be sent (securely) to the receiver of the secure message and with this code, it can decrypt the message and read it.
This package requires PHP 8.2 or newer with the sodium extension enabled. The optional Laravel integration supports Laravel 12 and 13. For PHP 7.3 up to 8.1, use version 1.x of this package.
Via Composer
$ composer require exonet/securemessage// Create the factory.
$secureMessageFactory = new Exonet\SecureMessage\Factory();
// Set the (application wide) meta key. This key must be exactly 10 characters long.
$secureMessageFactory->setMetaKey('djuyteb765');
// Create a new SecureMessage. Note: it is not encrypted yet!
$secureMessage = $secureMessageFactory->make('Hello, world!');
// Encrypt the Secure Message.
$encryptedMessage = $secureMessage->encrypt();Files (documents, images) can also be stored as a secure message. The file contents are encrypted in memory and the file name, mime type and size travel along in the encrypted meta data:
$secureMessage = $secureMessageFactory->makeFile('/path/to/report.pdf');
$encryptedMessage = $secureMessage->encrypt();Mime type detection uses the
fileinfoextension when it is available.
Please see the /docs folder for complete documentation and additional examples.
Messages encrypted with v1 can still be decrypted with v2: the encrypted format and the key structure are unchanged. Notable changes:
- PHP 8.2 or newer is required and the Laravel integration requires Laravel 12 or 13.
- The
sodiumextension is now a hard composer requirement (ext-sodium). On servers without the extension,composer installfails immediately instead of the package failing at the first encrypt. - The whole code base is strictly typed (
declare(strict_types=1)). Make sure you pass the documented types. In particular, check your publishedconfig/secure_messages.php:hit_pointsandexpires_inmust be real integers. A numeric string (for example from anenv()call) was silently coerced by v1, but throws aTypeErrorin v2. - The Laravel events (
DecryptionFailed,HitPointLimitReached,SecureMessageExpired) now expose the secure message through apublic readonlyproperty$secureMessage(previously this property was private and inaccessible to listeners). - A malformed encrypted message now throws a
DecryptExceptionwhen decrypting or validating a key, instead of failing with a PHP error. Code catchingTypeErrorfor this case should catchDecryptExceptioninstead. - The migration class
CreateSecureMessagesTableis now an anonymous class. The migration filename is unchanged, so existing installations are unaffected, but code referencing the class by name no longer works.
Please see releases for more information on what has changed recently.
$ composer testPlease see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues please email development@exonet.nl instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.