This commit is contained in:
terrafrost 2016-08-28 10:45:48 -05:00
commit 80440047e8
2 changed files with 5 additions and 2 deletions

View File

@ -6,8 +6,9 @@
* *
* Used by File/X509.php * Used by File/X509.php
* *
* Has the following header: * Processes keys with the following headers:
* *
* -----BEGIN RSA PRIVATE KEY-----
* -----BEGIN RSA PUBLIC KEY----- * -----BEGIN RSA PUBLIC KEY-----
* *
* Analogous to ssh-keygen's pem format (as specified by -m) * Analogous to ssh-keygen's pem format (as specified by -m)

View File

@ -6,8 +6,10 @@
* *
* Used by PHP's openssl_public_encrypt() and openssl's rsautl (when -pubin is set) * Used by PHP's openssl_public_encrypt() and openssl's rsautl (when -pubin is set)
* *
* Has the following header: * Processes keys with the following headers:
* *
* -----BEGIN ENCRYPTED PRIVATE KEY-----
* -----BEGIN PRIVATE KEY-----
* -----BEGIN PUBLIC KEY----- * -----BEGIN PUBLIC KEY-----
* *
* Analogous to ssh-keygen's pkcs8 format (as specified by -m). Although PKCS8 * Analogous to ssh-keygen's pkcs8 format (as specified by -m). Although PKCS8