reference/openssl/functions/openssl-pkcs7-read.xml
497c40ac164d5873fd87f622dfdeb5206392b446
...
...
@@ -3,14 +3,14 @@
3
3
<refentry xml:id="function.openssl-pkcs7-read" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
4
4
<refnamediv>
5
5
<refname>openssl_pkcs7_read</refname>
6
-
<refpurpose>Export the PKCS7 file to an array of PEM certificates</refpurpose>
6
+
<refpurpose>Export the PKCS7 file to an array of <acronym>PEM</acronym> certificates</refpurpose>
7
7
</refnamediv>
8
8

9
9
<refsect1 role="description">
10
10
&reftitle.description;
11
11
<methodsynopsis>
12
12
<type>bool</type><methodname>openssl_pkcs7_read</methodname>
13
-
<methodparam><type>string</type><parameter>input_filename</parameter></methodparam>
13
+
<methodparam><type>string</type><parameter>data</parameter></methodparam>
14
14
<methodparam><type>array</type><parameter role="reference">certificates</parameter></methodparam>
15
15
</methodsynopsis>
16
16
<para>
...
...
@@ -25,7 +25,7 @@
25
25
&reftitle.parameters;
26
26
<variablelist>
27
27
<varlistentry>
28
-
<term><parameter>input_filename</parameter></term>
28
+
<term><parameter>data</parameter></term>
29
29
<listitem>
30
30
<para>
31
31
The string of data you wish to parse (p7b format).
...
...
@@ -36,7 +36,7 @@
36
36
<term><parameter>certificates</parameter></term>
37
37
<listitem>
38
38
<para>
39
-
The array of PEM certificates from the p7b input data.
39
+
The array of <acronym>PEM</acronym> certificates from the p7b input data.
40
40
</para>
41
41
</listitem>
42
42
</varlistentry>
...
...
@@ -54,7 +54,7 @@
54
54
&reftitle.examples;
55
55
<para>
56
56
<example>
57
-
<title>Get a PEM array from a P7B file</title>
57
+
<title>Get a <acronym>PEM</acronym> array from a P7B file</title>
58
58
<programlisting role="php">
59
59
<![CDATA[
60
60
<?php
61
61