PHP 8.3.4 Released!

openssl_spki_export

(PHP 5 >= 5.6.0, PHP 7, PHP 8)

openssl_spki_exportExports a valid PEM formatted public key signed public key and challenge

Descrição

openssl_spki_export(string $spki): string|false

Exports PEM formatted public key from encoded signed public key and challenge

Parâmetros

spki

Expects a valid signed public key and challenge

Valor Retornado

Returns the associated PEM formatted public key or false on failure.

Erros/Exceções

Emits an E_WARNING level error if an invalid argument is passed via the spki parameter.

Exemplos

Exemplo #1 openssl_spki_export() example

Extracts the associated PEM formatted public key or null on failure.

<?php
$pkey
= openssl_pkey_new('secret password');
$spkac = openssl_spki_new($pkey, 'challenge string');
$pubKey = openssl_spki_export(preg_replace('/SPKAC=/', '', $spkac));

if (
$pubKey) {
echo
$pubKey;
}
?>

Exemplo #2 openssl_spki_export() example from <keygen>

Extracts the associated PEM formatted public key issued from the <keygen> element

<?php
$spkac
= openssl_spki_export(preg_replace('/SPKAC=/', '', $_POST['spkac']));
if (
$spkac != NULL) {
echo
$spkac;
} else {
echo
"Extraction of pub key failed";
}
?>
<keygen name="spkac" challenge="challenge string" keytype="RSA">

Veja Também

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top