b3da / eos-bundle
Symfony bundle for easy OpenSSL operations
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- symfony/framework-bundle: ~2.8|~3.1
This package is not auto-updated.
Last update: 2025-01-04 21:14:06 UTC
README
Symfony Bundle for easy OpenSSL encryption, decryption and key pair generation.
Dependencies:
- symfony/framework-standard-edition ">=2.8|~3.1"
Instalation:
-
create project with Symfony framework
-
composer require b3da/eos-bundle "dev-master"
-
AppKernel.php:
new b3da\EasyOpenSslBundle\b3daEasyOpenSslBundle(),
parameters.yml(.dist):
# EasyOpenSSL encryption method eos_enc_method: aes-256-cbc # ...
-
(you can extend base
Client
andMessage
entities fromb3da\EasyOpenSslBundle
namespace) -
update your schema
Usage:
- new service
b3da_easy_open_ssl.eos
is available for OpenSSL operations
$eos = $this->get('b3da_easy_open_ssl.eos');
- create Client example (
FooController
)
$client = new Client(); $client = $eos->generateKeyPairForClient($client); if (!$client) { // err generating keypair } // persist Client with keys
- encrypt data by Client's private key example (
FooController
)
$message = $eos->encrypt($client, 'msg data .. foo bar baz');
- decrypt data by Client's public key example (
FooController
)
$decryptedData = $eos->decrypt($message); // $decryptedData === 'msg data .. foo bar baz';
simple API for basic tasks (optional)
- import routes into
routing.yml
:
b3da_easy_open_ssl: resource: "@b3daEasyOpenSslBundle/Controller/" type: annotation prefix: /eos/
- /eos/msg-api/client/create/ [POST]
Response: {"status":"success","id":"3ead5521-2fbc-11e6-834a-f0def1ff5901"} or {"status":"error","details":"key pair generating failed"}
- /eos/msg-api/client/export-public/{id}/ [GET]
Response: {"status":"success","data":{"id":"3ead5521-2fbc-11e6-834a-f0def1ff5901","pubkey":"LS0tLS1CR .. S0tLQ=="}} or {"status":"error","details":"no client for id"}
- /eos/msg-api/client/import-public/{id}/ [POST]
Request: {"data":{"id":"3ead5521-2fbc-11e6-834a-f0def1ff5901","pubkey":"LS0tLS1CR .. S0tLQ=="}} Response: {"status":"success","id":"3ead5521-2fbc-11e6-834a-f0def1ff5901"} or {"status":"error","details":"no data to import"}
- /eos/msg-api/msg/encrypt/{clientId}/{data}/ [GET]
Response: {"status":"success","data":{"message":":774c6b663650636 .. 34346616f5901"}} or {"status":"error","details":"no client for id"}
- /eos/msg-api/msg/decrypt/{data}/ [GET]
Request: /eos/msg-api/msg/decrypt/{"message":":774c6b663650636 .. 34346616f5901"}/ Response: {"status":"success","data":"foo bar"} or {"status":"error","details":"wrong format"}