castelnuovo/laravel-age

Laravel wrapper for the AGE cli

v2.1.0 2024-07-03 11:43 UTC

This package is auto-updated.

Last update: 2024-11-08 01:57:08 UTC


README

castelnuovo/laravel-age

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Laravel wrapper for the AGE cli

Installation

Important

Make sure you have the AGE cli installed on your system. You can find the installation instructions here.

You can install the package via composer:

composer require castelnuovo/laravel-age

Usage

use Castelnuovo\LaravelAge\Age;

$message = 'Hello World!';

$age = Age::generateKeypair();
$privateKey = $age->getPrivateKey();
$publicKey = $age->getPublicKey();

$age2 = new Age(publicKey: $publicKey);
$encrypted_message = $age2->encrypt($message);

$age3 = new Age(privateKey: $privateKey);
$decrypted_message = $age3->decrypt($encrypted_message);

echo $message === $decrypted_message ? 'Success' : 'Failed';

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.