dmamontov / rsacrypt
Data encryption using public and private keys.
Requires
- php: >=5.3.3
Requires (Dev)
- phpunit/phpunit: 4.6.*
This package is auto-updated.
Last update: 2024-10-26 14:08:34 UTC
README
RSA Crypt
This class can RSA generate keys and encrypt data using OpenSSL.
It can generate public and private RSA keys of given length calling the openssl program.
The class and also encrypt data with a given public key file and decrypt data with a given private key file.
Requirements
- PHP version ~5.3.3
Installation
-
Install composer
-
Follow in the project folder:
composer require dmamontov/rsacrypt ~1.0.2
In config composer.json
your project will be added to the library dmamontov/rsacrypt
, who settled in the folder vendor/
. In the absence of a config file or folder with vendors they will be created.
If before your project is not used composer
, connect the startup file vendors. To do this, enter the code in the project:
require 'path/to/vendor/autoload.php';
Example of work
$crypt = new RsaCrypt; $crypt->genKeys(2048); $crypt->setPublicKey('public.pem'); $crypt->setPrivateKey('private.pem'); $data = $crypt->encrypt("Test Crypt"); echo $data; echo $crypt->decrypt($data);