NmureEncryptor
, (*1)
PHP data encryptor using open_ssl, (*2)
Table of contents
Installation
Use composer to install the lib :, (*3)
composer require nmure/encryptor "~1.0.0"
Usage
Basic usage
Encrypt
The simpliest way to use this library is to create an instance of the Encryptor
by passing it a secret key and a cipher method to use during encryption.
To see all the cipher methods supported by your php installation, use the
openssl_get_cipher_methods function., (*4)
Then you can encrypt your plain text data, for instance :, (*5)
use Nmure\Encryptor\Encryptor;
$encryptor = new Encryptor('452F93C1A737722D8B4ED8DD58766D99', 'AES-256-CBC');
$encrypted = $encryptor->encrypt('plain text data');
The encryptor uses an Initialization Vector (IV) in addition to the secret key to encrypt data.
This IV is randomly generated to be sure that 2 encryptions of the same data with the
same key won't produce the same encrypted output., (*6)
Thereby, you should store the IV used to encrypt your data along side to the encrypted data
to be able to decrypt it later., (*7)
For instance, you could store it in a database :, (*8)
| id | iv | encrypted |
-----------------------
| 1 | 945a | oifd4867h |
| 2 | 894d | 62vbyibd6 |
Decrypt
Then, to decrypt your data, initialize the encryptor and call the decrypt
function :, (*9)
use Nmure\Encryptor\Encryptor;
$encryptor = new Encryptor('452F93C1A737722D8B4ED8DD58766D99', 'AES-256-CBC');
// retrieve the IV ($iv) and the encryped data ($encrypted) from your DB
// ...
$encryptor->setIv($iv);
$plainText = $encryptor->decrypt($encrypted);
Advanced usage
If you don't want to deal with how to store the encrypted data and the IV,
you can use the formatters.
The formatters combine the IV and the encrypted data into one string to make it
easier to store and to share with an other app., (*10)
For instance, if you want to store an encrypted data to a file, you could use
the Base64Formatter :, (*11)
use Nmure\Encryptor\Encryptor;
use Nmure\Encryptor\Formatter\Base64Formatter;
$encryptor = new Encryptor('452F93C1A737722D8B4ED8DD58766D99', 'AES-256-CBC');
$encryptor->setFormatter(new Base64Formatter());
// will produce a string containg the IV and the encrypted data
$encrypted = $encryptor->encrypt('plain text data');
// store $encrypted to a file
Then, to decrypt your data, use the same encryptor / formatter couple and simply call
the decrypt
function with the combined string :, (*12)
use Nmure\Encryptor\Encryptor;
use Nmure\Encryptor\Formatter\Base64Formatter;
$encryptor = new Encryptor('452F93C1A737722D8B4ED8DD58766D99', 'AES-256-CBC');
$encryptor->setFormatter(new Base64Formatter());
// get the encrypted data from a file, or whatever
// ... $encrypted
// the encryptor uses the formatter to get the IV used for the encryption from
// the given $encrypted string
$plainText = $encryptor->decrypt($encrypted);
If you don't want to use the formatter anymore, simply set it to null
on the encryptor :, (*13)
$encryptor->setFormatter(null);
Using formatters is more convenient as all the work to store the IV along side
the encrypted data is done by the formatters, and not by you anymore., (*14)
The formatters are used to combine the IV and the encrypted data into one string
(usually a non binary string), to make it easier to store and to share accross systems.
They all implement the FormatterInterface
., (*15)
The string returned by the Base64Formatter
during the encryption process contains the base64 encoded IV, concatened to a colon (:
),
concatened to the base64 encoded encrypted data., (*16)
As the colon is not a char from the base64 chars, we can easily split this string
in two parts from the colon, and get back the IV and the encrypted data during the decryption process., (*17)
The string returned by the HexFormatter
during the encryption process contains the hex representation of the concatened
IV and encrypted data binary string., (*18)
During the decryption process, this string is splitted to get back the IV
and the encrypted data. We use the cipher method's IV length to determine
where to split this string., (*19)
You can of course make your own formatter to suit your needs,
it must just implement the FormatterInterface
., (*20)
API
-
Nmure\Encryptor\Encryptor :
-
public string encrypt($data)
: encrypts the given plain text string and
returns it. When a formatter is set to the encyryptor, the returned value of
this function is the formatted string composed of the IV and the ecrypted data.
-
public string decrypt($data)
: decrypts the given encrypted data and returns it.
When a formatter is set to the encryptor, the given data must be the string formatted
by this formatter. The IV will be determined from the formatted string.
When no formatter is set, the IV must be set to this encryptor to be able
to decrypt the given data.
-
public string generateIv()
: generate a new ramdom IV according to the cipher method,
set it to the encryptor and returns it.
-
public void enableAutoIvUpdate()
: enable the automatic IV update before each
encryption process to be sure that two encryptions of the same data won't produce
the same output. The automatic IV update is enabled by default.
-
public void disableAutoIvUpdate()
: disable the automatic IV update before each
encryption process. The encryption will use the last set IV or generate one if
no IV was set.
-
public void turnHexKeyToBin()
: turns the hex secret key into a binary key.
-
public string getIv()
: returns the IV of the encryptor.
-
public void setIv($iv)
: set the given IV to the encryptor.
-
public void setFormatter(FormatterInterface $formatter = null)
: sets the given
FormatterInterface to the encryptor. To unset the formatter, pass null
to this function.
-
Nmure\Encryptor\Formatter\FormatterInterface :
-
public string format($iv, $encrypted)
: formats the given IV and encrypted data to a string
and returns it.
-
public array parse($input, $ivLength)
: parse the given $input
string and return an array
containing the IV and the encrypted data. The $ivLength
parameter can be used to parse
the $input
string.
Troubleshooting
If you use this formatter with the encryptor to share crypted data with a C# app,
you'll probably have to turn your secret key into a binary key :, (*21)
use Nmure\Encryptor\Encryptor;
use Nmure\Encryptor\Formatter\HexFormatter;
$encryptor = new Encryptor('452F93C1A737722D8B4ED8DD58766D99', 'AES-256-CBC');
$encryptor->turnHexKeyToBin(); // turning the hex key to a binary key
$encryptor->setFormatter(new HexFormatter());
$encrypted = $encryptor->encrypt('plain text data');
Integration
You can use this library as standalone, or if you're using Symfony,
it is wrapped inside the NmureEncryptorBundle
., (*22)
Development / Contributing
Installing ecosystem
docker-compose run --rm composer install
Testing
``` bash
docker-compose run --rm phpunit -c /app, (*23)
The formatters test classes should extend the [`AbstractFormatterTest`](/tests/Nmure/Encryptor/Tests/Formatter/AbstractFormatterTest.php "Nmure\Encryptor\Tests\Formatter\AbstractFormatterTest") class
to be sure that the formatters fulfill the minimum requirements.
### PHP CS Fixer
```bash
docker-compose run --rm phpcs phpcbf --standard=PSR2 /scripts/
License
This library is licensed under the MIT License.
More informations in the LICENSE file., (*24)