appendices/migration56/openssl.xml
497c40ac164d5873fd87f622dfdeb5206392b446
...
...
@@ -313,8 +313,8 @@ array(8) {
313
313
<function>openssl_spki_verify</function>,
314
314
<function>openssl_spki_export_challenge</function>, and
315
315
<function>openssl_spki_export</function> have been added to create, verify
316
-
export PEM public key and associated challenge from SPKAC's generated from
317
-
a <literal>KeyGen</literal> HTML5 element.
316
+
export <acronym>PEM</acronym> public key and associated challenge from
317
+
SPKAC's generated from a <literal>KeyGen</literal> HTML5 element.
318
318
</para>
319
319

320
320
<variablelist>
...
...
@@ -385,7 +385,7 @@ $pkey = openssl_pkey_new();
385
385
openssl_pkey_export($pkey, 'secret passphrase');
386
386

387
387
$spkac = openssl_spki_new($pkey, 'challenge string');
388
-
$challenge = openssl_spki_export_challenge($spkac):
388
+
$challenge = openssl_spki_export_challenge($spkac);
389
389
echo $challenge;
390
390
?>
391
391
]]>
...
...
@@ -404,7 +404,7 @@ challenge string
404
404
<term><parameter>openssl_spki_export</parameter></term>
405
405
<listitem>
406
406
<para>
407
-
Exports the PEM formatted RSA public key from SPKAC.
407
+
Exports the <acronym>PEM</acronym> formatted RSA public key from SPKAC.
408
408
</para>
409
409

410
410
<informalexample>
411
411