Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions reference/openssl/constants.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,18 @@
</simpara>
</listitem>
</varlistentry>
<varlistentry xml:id="constant.openssl-pkcs1-pss-padding">
<term>
<constant>OPENSSL_PKCS1_PSS_PADDING</constant>
(<type>int</type>)
</term>
<listitem>
<simpara>
RSA-PSS padding.
Available as of PHP 8.5.0.
</simpara>
</listitem>
</varlistentry>
</variablelist>
</section>

Expand Down Expand Up @@ -379,6 +391,46 @@
<literal>application/x-pkcs7-mime</literal> to encrypt a message.
</entry>
</row>
<row xml:id="constant.pkcs7-nosmimecap">
<entry>
<constant>PKCS7_NOSMIMECAP</constant>
(<type>int</type>)
</entry>
<entry>
Available as of PHP 8.5.0.
Do not include the S/MIME capabilities (SMIMECapabilities) in the signature.
</entry>
</row>
<row xml:id="constant.pkcs7-crlfeol">
<entry>
<constant>PKCS7_CRLFEOL</constant>
(<type>int</type>)
</entry>
<entry>
Available as of PHP 8.5.0.
Use <literal>CRLF</literal> as the end of line in the output.
</entry>
</row>
<row xml:id="constant.pkcs7-nocrl">
<entry>
<constant>PKCS7_NOCRL</constant>
(<type>int</type>)
</entry>
<entry>
Available as of PHP 8.5.0.
Do not include the CRLs in the PKCS7 structure.
</entry>
</row>
<row xml:id="constant.pkcs7-no-dual-content">
<entry>
<constant>PKCS7_NO_DUAL_CONTENT</constant>
(<type>int</type>)
</entry>
<entry>
Available as of PHP 8.5.0.
Do not include the duplicate content, avoiding the duplication of the signed content.
</entry>
</row>
</tbody>
</tgroup>
</table>
Expand Down