acmephp / ssl
PHP wrapper around OpenSSL extension providing SSL encoding, decoding, parsing and signing features
Installs: 890 676
Dependents: 5
Suggesters: 0
Security: 0
Stars: 13
Watchers: 4
Forks: 8
Open Issues: 0
Requires
- php: >=7.2.5
- ext-hash: *
- ext-openssl: *
- lib-openssl: >=0.9.8
- webmozart/assert: ^1.0
This package is auto-updated.
Last update: 2024-10-29 11:36:24 UTC
README
Acme PHP SSL is a PHP wrapper around OpenSSL extension providing SSL encoding, decoding, parsing and signing features.
It uses the recommended security settings and let you interact in a OOP manner with SSL entities (public/private keys, certificates, ...).
If you want to chat with us or have questions, ping @tgalopin or @jderusse on the Symfony Slack!
Why use Acme PHP SSL?
Acme PHP SSL provides various useful tools solving different use-cases:
- generate public and private keys (see the
Generator\KeyPairGenerator
) ; - sign data using a private key (see
Signer\DataSigner
) ; - parse certificates to extract informations about them (see
Parser\CertificateParser
) ;
There are many more possible use-cases, don't hesitate to dig a bit deeper in the documentation to find out if this library can solve your problem!
Documentation
Read the official Acme PHP SSL documentation.
Launch the Test suite
The Acme PHP test suite is located in the main repository: https://github.com/acmephp/acmephp#launch-the-test-suite.