php man page for openssl_spki_new

Query: openssl_spki_new

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

OPENSSL_SPKI_NEW(3)							 1						       OPENSSL_SPKI_NEW(3)

openssl_spki_new - Generate a new signed public key and challenge

SYNOPSIS
string openssl_spki_new (resource &$privkey, string &$challenge, [int $algorithm])
DESCRIPTION
Generates a signed public key and challenge using specified hashing algorithm
PARAMETERS
o $privkey -$privkey should be set to a private key that was previously generated by openssl_pkey_new(3) (or otherwise obtained from the other openssl_pkey family of functions). The corresponding public portion of the key will be used to sign the CSR. o $challenge - The challenge associated to associate with the SPKAC o $algorithm - The digest algorithm. See openssl_get_md_method().
RETURN VALUES
Returns a signed public key and challenge string or NULL on failure.
ERRORS
/EXCEPTIONS Emits an E_WARNING level error if an unknown signature algorithm is passed via the $algorithm parameter.
EXAMPLES
Example #1 openssl_spki_new(3) example Generate a new SPKAC with the default digest (MD5) <?php $pkey = openssl_pkey_new('secret password'); $spkac = openssl_spki_new($pkey, 'testing'); if ($spkac !== NULL) { echo $spkac; } else { echo "SPKAC generation failed"; } ?> The above example will output something similar to: MIICRzCCAS8wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDM3V3sS4o4 mB9dczziRnjGAmSp+JwPrHoYMAFGvDNmZGyiWfU586X4BKs++BAj7e/FsAfno0Hd hN9FwpCNFSox30L03nQvLYJE7f/WqigwBeMRT7Op/xvFks4sT70xP2HRYv4KqP9a WRcKU6cFH8VxhFhqM2txEIxZKdFLaL28yT7bEDmcglf4JLDdgNMb9rET1dkgtKE6 dOaJHPGjf1uvnOH4YwkQr7n4sLUR3Kdbh0ZJAFuQVDZulo+LLzxBBkqJJcB6FhF+ oXCdHTKZnqAhpWDz+NXYytAmevab6IYm5TWPWsJUv1YKJA5lg2mXbbloIZlN9Mgc i9fi03bdw+crAgMBAAEWB3Rlc3RpbmcwDQYJKoZIhvcNAQEEBQADggEBALyUvP/o pPSoWBlorFyZ2RnGwKf9qMpE0q2IJP7G3oDR4LyK/m933DUiZ+YnqThrH/CWb4Ek y5I3OCyl3S4wCuU1ibZZwDVwYShr5ELp0J9PEf7qMQZOhNsizoC7k+Czb2xB6hYW sKfsfTKm3cXBtH3fdgc/Z1Z7VSWnAzYo38snqm72NTf5yFRnrQdphNNXi+kn1zHA lxXRyFDXHOcYsOnwAWfyXFA4QDHQ0ezz0UoCY8gJXovcZb4GRYqOLUAsF2HcNboy 29WN8VqE29sL9QxVZFlwMcqyoLcNnyw38GvNvAGqSvzzbnEFP2MAQXJVe0H0hdp/ MML5G2iNVgNozAo=
SEE ALSO
openssl_spki_new(3), openssl_spki_export_challenge(3), openssl_spki_export(3), openssl_csr_new(3), openssl_csr_sign(3). PHP Documentation Group OPENSSL_SPKI_NEW(3)
Related Man Pages
spkac(1ssl) - debian
spkac(1) - suse
openssl_spki_new(3) - php
spkac(1ssl) - minix
spkac(1ssl) - x11r4
Similar Topics in the Unix Linux Community
safeword challenge
A challenge for you sed/awk wizards...
How to write in multiple output files in perl?