vakata/certificate
最新稳定版本:5.14.3
Composer 安装命令:
composer require vakata/certificate
包简介
Parsing of digital certificates from all Bulgarian vendors
关键字:
README 文档
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.
统计信息
- 总下载量: 5.55k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-02-17