mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-25 09:22:07 +01:00
145 lines
4.3 KiB
XML
145 lines
4.3 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 28046efaba656e158bdf45a2585c23a339943869 Maintainer: gui Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
<refentry xml:id="phar.setsignaturealgorithm" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>Phar::setSignatureAlgorithm</refname>
|
|
<refpurpose>Fixe et applique l'algorithme de signature d'un phar</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<modifier>public</modifier> <type>void</type><methodname>Phar::setSignatureAlgorithm</methodname>
|
|
<methodparam><type>int</type><parameter>algo</parameter></methodparam>
|
|
<methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>privateKey</parameter><initializer>&null;</initializer></methodparam>
|
|
</methodsynopsis>
|
|
&phar.write;
|
|
|
|
<para>
|
|
Fixe et applique l'algorithme de signature d'un phar. L'algorithme de signature doit être
|
|
<literal>Phar::MD5</literal>, <literal>Phar::SHA1</literal>, <literal>Phar::SHA256</literal>,
|
|
<literal>Phar::SHA512</literal>, ou <literal>Phar::OPENSSL</literal>.
|
|
</para>
|
|
<para>
|
|
Notez que toutes les archives phar exécutables ont
|
|
une signature créée automatiquement, <literal>SHA1</literal> par défaut.
|
|
Les archives de données basées sur tar ou sur zip (créées avec la classe
|
|
<classname>PharData</classname>) doivent avoir leur signature créée et
|
|
assignée explicitement via <function>Phar::setSignatureAlgorithm</function>.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>algo</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Un des algorithmes <literal>Phar::MD5</literal>,
|
|
<literal>Phar::SHA1</literal>, <literal>Phar::SHA256</literal>,
|
|
<literal>Phar::SHA512</literal>, ou <literal>Phar::OPENSSL</literal>
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>privateKey</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Le contenu d'une clé privée OpenSSL, telle qu'extraite d'un
|
|
certificat ou d'un fichier de clé OpenSSL :
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$private = openssl_get_privatekey(file_get_contents('private.pem'));
|
|
$pkey = '';
|
|
openssl_pkey_export($private, $pkey);
|
|
$p->setSignatureAlgorithm(Phar::OPENSSL, $pkey);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
Reportez-vous à
|
|
<link linkend="phar.using">l'introduction de phar</link>
|
|
pour les instructions de nommage et de placement du
|
|
fichier de clé publique.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
&return.void;
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="errors">
|
|
&reftitle.errors;
|
|
<para>
|
|
Lève une exception <classname>UnexpectedValueException</classname> pour de nombreuses erreurs
|
|
et une exception <classname>PharException</classname> si des problèmes surviennent
|
|
durant l'écriture des changements sur le disque.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="changelog">
|
|
&reftitle.changelog;
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>&Version;</entry>
|
|
<entry>&Description;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>8.0.0</entry>
|
|
<entry>
|
|
<parameter>privateKey</parameter> est désormais nullable.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>Phar::getSupportedSignatures</function></member>
|
|
<member><function>Phar::getSignature</function></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|