Download the PHP package sashabo/self-signed-certs without Composer
On this page you can find all versions of the php package sashabo/self-signed-certs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sashabo/self-signed-certs
More information about sashabo/self-signed-certs
Files in sashabo/self-signed-certs
Package self-signed-certs
Short Description Creating self-signed SSL certificates for your domain.
License GPL-3.0-only
Informations about the package self-signed-certs
self-signed-certs
PHP library for creating self-signed certificates. No dependencies.
Installation
composer require sashabo/self-signed-certs
Usage
CertificateGenerator methods:
generate(): CertificatePair
These settings are not necessary, you may use defaults in most cases:
setExpireDays(int $days): static
- 3650 by default
setPrivateKeyBits(int $bits): static
- 4096 by default
setPrivateKeyType(int $type): static
- OPENSSL_KEYTYPE_RSA by default
setDigestAlgorithm(string $algorithm): static
- AES-128-CBC by default
setOpenSslConfPath(string $path): static
- /etc/ssl/openssl.cnf by default
(standard path for Ubuntu and most of linuxes)
These settings override openssl.cnf settings:
setName(string $name): static
setEmail(string $email): static
setAddress(string $countryCode, string $stateOrProvince, string $city): static
setOrganization(string $name, string $unit): static
CertificatePair methods:
getPrivateKey(): \OpenSSLAsymmetricKey
getCertificate(): \OpenSSLCertificate
exportPrivateKey(?string $passPhrase = null): string
exportCertificate(): string
save(string $privateKeyPath, string $certPath, ?string $passPhrase = null): void
All versions of self-signed-certs with dependencies
ext-openssl Version *