Last Updated | | Ratings | | Unique User Downloads | | Download Rankings |
2023-05-23 (2 days ago)  | |   48% | | Total: 704 This week: 7 | | All time: 4,655 This week: 62 |
|
Description | | Author vladzur
Contributor
|
This class can generate self-signed digital certificates.
First the class generates the certification authority certificate with given certificate details.
Then it can generate other certificates and sign them with the key of the previously generated certification authority certificate.
The class may also retrieve the public key of a given certificate. Innovation Award
 March 2015
Winner
Prize: PhpStorm IDE personal permanent license |
Certification authorities are organizations that can verify the validity of digital certificates for use in secure connections based on SSL/TLS.
This class can create self-signed certificates to let your organization act as if it is a real certificate authority, as well generate and sign other certifications for other domains.
Manuel Lemos |
| |
 |
|
Innovation award
 Nominee: 1x
Winner: 1x |
|
Details
Cacert
(Project abandoned)
Cacert is used to generate self-signed certificates.
You can generate the certificate of the certification authority and generate new certificates with that signature
Usage
<?php
require_once 'Cacert.php';
$CA = new \Vladzur\Cacert\Cacert();
print_r($CA->generateCACERT()); //CA Certificate
$params = array(
'commonName' => 'Vladimir Zurita',
'emailAddress' => 'vladzur@gmail.com',
'organizationName' => 'Lemontech',
'organizationalUnitName' => 'Developers'
);
print_r($CA->generateCert($params)); //USer Certificate
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.