vakata / certificate
Parsing of digital certificates from all Bulgarian vendors
Installs: 3 870
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
- vakata/asn1: ^2.1.0
Requires (Dev)
- clean/phpdoc-md: dev-master
- codeclimate/php-test-reporter: dev-master
- phpunit/phpunit: 4.*
- dev-master
- 5.14.2
- 5.14.1
- 5.14.0
- 5.13.2
- 5.13.1
- 5.13.0
- 5.12.1
- 5.12.0
- 5.11.3
- 5.11.2
- 5.11.1
- 5.11.0
- 5.10.0
- 5.9.0
- 5.8.0
- 5.7.0
- 5.6.2
- 5.6.1
- 5.6.0
- 5.5.2
- 5.5.1
- 5.5.0
- 5.4.0
- 5.3.2
- 5.3.1
- 5.3.0
- 5.2.2
- 5.2.1
- 5.2.0
- 5.1.0
- 5.0.1
- 5.0.0
- 4.1.0
- 4.0.1
- 4.0.0
- 3.0.0
- 2.6.0
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.1
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.1
- 2.1.0
- 2.0.0
- 1.1.0
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-10-15 13:24:28 UTC
README
Parsing of digital certificates from all Bulgarian vendors (and all other vendors compatible with the common EU standard).
Install
Via Composer
$ composer require vakata/certificate
Usage
// parse the certificate from the current request ($_SERVER['SSL_CLIENT_CERT']) // on Apache this will work if SSLOptions +ExportCertData is set $cert = \vakata\certificate\Certificate::fromRequest(); // you can then get various information from the certificate echo $cert->getNaturalPerson()->getID(); // EGN or PID if ($cert->isProfessional()) { echo $cert->getLegalPerson()->getBulstat(); // BULSTAT } // you can also create an instance from a x509 string $certStr = new \vakata\certificate\Certificate("x509 formatted string"); // or using a static method $certStr = new \vakata\certificate\Certificate::fromString("x509 formatted string"); // or from a file $certFile = \vakata\certificate\Certificate::fromFile("/path/to/file.crt");
Certificates can also be validated (by checking expiration dates, CRLs and validating the certificate signature). Keep in mind signature verification is implemented using the OpenSSL PHP extension.
Read more in the API docs
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email github@vakata.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.