mirror of
https://github.com/php/doc-fr.git
synced 2026-03-23 22:52:18 +01:00
ssdeep : fix XML by converting para to simpara tags via script
This commit is contained in:
@@ -1,30 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: cca35bc5457e413b55def1d5053623f091cbe03c Maintainer: yannick Status: ready -->
|
||||
<!-- EN-Revision: 2885123b1a490cf75a1a0a2d2d8034c9f82ece54 Maintainer: yannick Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<book xml:id="book.ssdeep" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<book xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="book.ssdeep">
|
||||
<?phpdoc extension-membership="pecl" ?>
|
||||
<title>Hachages flous ssdeep</title>
|
||||
<titleabbrev>ssdeep</titleabbrev>
|
||||
|
||||
<preface xml:id="intro.ssdeep">
|
||||
&reftitle.intro;
|
||||
<para>
|
||||
<simpara>
|
||||
ssdeep est un utilitaire pour créer et comparer les hachages flous
|
||||
appelés encore
|
||||
<link xlink:href="&url.ssdeep.ctph;">contexte déclenché par morceaux
|
||||
de hachages</link>.
|
||||
</para>
|
||||
<para>
|
||||
</simpara>
|
||||
<simpara>
|
||||
Le hachage flou peut faire correspondre des signatures qui ont "...des
|
||||
séquences d'octets identiques, dans le même ordre, malgré le fait que les
|
||||
octets entre les séquences peuvent être différents aussi bien au niveau
|
||||
du contenu que de leurs longueurs" (<link xlink:href="&url.ssdeep.libssdeep;">
|
||||
page du projet ssdeep</link>).
|
||||
</para>
|
||||
<para>
|
||||
</simpara>
|
||||
<simpara>
|
||||
Cette extension fournit les fonctions pour créer et comparer des hachages
|
||||
flous.
|
||||
</para>
|
||||
</simpara>
|
||||
</preface>
|
||||
|
||||
&reference.ssdeep.setup;
|
||||
|
||||
@@ -1,19 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 4a88496c38a1d79bec4f26bffc2a74a2f52146c5 Maintainer: yannick Status: ready -->
|
||||
<!-- EN-Revision: 2885123b1a490cf75a1a0a2d2d8034c9f82ece54 Maintainer: yannick Status: ready -->
|
||||
<!-- Reviewed: yes -->
|
||||
|
||||
<section xml:id="ssdeep.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="ssdeep.installation">
|
||||
&reftitle.install;
|
||||
|
||||
<para>
|
||||
<simpara>
|
||||
&pecl.info;
|
||||
<link xlink:href="&url.pecl.package;ssdeep">&url.pecl.package;ssdeep</link>
|
||||
</para>
|
||||
</simpara>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 4754397753fd79f1c846868b66a2448babab1c54 Maintainer: yannick Status: ready -->
|
||||
<!-- EN-Revision: 2885123b1a490cf75a1a0a2d2d8034c9f82ece54 Maintainer: yannick Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
|
||||
<refentry xml:id="function.ssdeep-fuzzy-compare" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="function.ssdeep-fuzzy-compare">
|
||||
<refnamediv>
|
||||
<refname>ssdeep_fuzzy_compare</refname>
|
||||
<refpurpose>Calcule le score de correspondance entre 2 signatures de hachages flous</refpurpose>
|
||||
@@ -16,13 +15,13 @@
|
||||
<methodparam><type>string</type><parameter>signature1</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>signature2</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
<simpara>
|
||||
Calcule le score de correspondance entre la
|
||||
<parameter>signature1</parameter> et la
|
||||
<parameter>signature2</parameter> en utilisant le <link xlink:href="&url.ssdeep.ctph;">
|
||||
contexte déclenché par morceaux de hachages</link>, et retourne
|
||||
le score de correspondance.
|
||||
</para>
|
||||
</simpara>
|
||||
|
||||
</refsect1>
|
||||
|
||||
@@ -32,17 +31,17 @@
|
||||
<varlistentry>
|
||||
<term><parameter>signature1</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<simpara>
|
||||
La chaîne représentant la première signature de hachage flou.
|
||||
</para>
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>signature2</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<simpara>
|
||||
La chaîne représentant la seconde signature de hachage flou.
|
||||
</para>
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
@@ -50,14 +49,13 @@
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
<simpara>
|
||||
Retourne un entier entre 0 et 100 en cas de succès,
|
||||
ou &false; si une erreur survient.
|
||||
</para>
|
||||
</simpara>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 4754397753fd79f1c846868b66a2448babab1c54 Maintainer: yannick Status: ready -->
|
||||
<!-- EN-Revision: 2885123b1a490cf75a1a0a2d2d8034c9f82ece54 Maintainer: yannick Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
|
||||
<refentry xml:id="function.ssdeep-fuzzy-hash-filename" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="function.ssdeep-fuzzy-hash-filename">
|
||||
<refnamediv>
|
||||
<refname>ssdeep_fuzzy_hash_filename</refname>
|
||||
<refpurpose>Crée un hachage flou d'un fichier</refpurpose>
|
||||
@@ -15,13 +14,13 @@
|
||||
<type>string</type><methodname>ssdeep_fuzzy_hash_filename</methodname>
|
||||
<methodparam><type>string</type><parameter>file_name</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
<simpara>
|
||||
<function>ssdeep_fuzzy_hash_filename</function> calcule le hachage
|
||||
d'un fichier spécifié par le paramètre <parameter>file_name</parameter>
|
||||
d'un fichier spécifié par le paramètre <parameter>file_name</parameter>
|
||||
en utilisant le <link xlink:href="&url.ssdeep.ctph;">contexte
|
||||
déclenché par morceaux de hachages</link>, et retourne le
|
||||
hachage correspondant.
|
||||
</para>
|
||||
</simpara>
|
||||
|
||||
</refsect1>
|
||||
|
||||
@@ -31,9 +30,9 @@
|
||||
<varlistentry>
|
||||
<term><parameter>file_name</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<simpara>
|
||||
Le nom du fichier à hacher.
|
||||
</para>
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
@@ -41,14 +40,13 @@
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
<simpara>
|
||||
Retourne une &string; en cas de succès, ou bien
|
||||
&false; si une erreur survient.
|
||||
</para>
|
||||
</simpara>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 4754397753fd79f1c846868b66a2448babab1c54 Maintainer: yannick Status: ready -->
|
||||
<!-- EN-Revision: 2885123b1a490cf75a1a0a2d2d8034c9f82ece54 Maintainer: yannick Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
|
||||
<refentry xml:id="function.ssdeep-fuzzy-hash" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="function.ssdeep-fuzzy-hash">
|
||||
<refnamediv>
|
||||
<refname>ssdeep_fuzzy_hash</refname>
|
||||
<refpurpose>Crée un hachage flou depuis une &string;</refpurpose>
|
||||
@@ -15,12 +14,12 @@
|
||||
<type>string</type><methodname>ssdeep_fuzzy_hash</methodname>
|
||||
<methodparam><type>string</type><parameter>to_hash</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
<simpara>
|
||||
<function>ssdeep_fuzzy_hash</function> calcule le hachage de la
|
||||
chaîne <parameter>to_hash</parameter> en utilisant le
|
||||
<link xlink:href="&url.ssdeep.ctph;"> contexte déclenché par
|
||||
morceaux de hachages</link>, et retourne le hachage correspondant.
|
||||
</para>
|
||||
</simpara>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
@@ -29,9 +28,9 @@
|
||||
<varlistentry>
|
||||
<term><parameter>to_hash</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
<simpara>
|
||||
La &string; à hacher.
|
||||
</para>
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
@@ -39,13 +38,12 @@
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
<simpara>
|
||||
Retourne une &string; en cas de succès, &false; sinon.
|
||||
</para>
|
||||
</simpara>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
|
||||
@@ -1,32 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision$ -->
|
||||
<!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: yannick Status: ready -->
|
||||
<!-- EN-Revision: 2885123b1a490cf75a1a0a2d2d8034c9f82ece54 Maintainer: yannick Status: ready -->
|
||||
<!-- Reviewed: yes -->
|
||||
|
||||
<chapter xml:id="ssdeep.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="ssdeep.setup">
|
||||
&reftitle.setup;
|
||||
|
||||
<section xml:id="ssdeep.requirements">
|
||||
&reftitle.required;
|
||||
<para>
|
||||
<simpara>
|
||||
Cette extension nécessite la bibliothèque
|
||||
<link xlink:href="&url.ssdeep.libssdeep;">ssdeep</link>.
|
||||
</para>
|
||||
</simpara>
|
||||
</section>
|
||||
|
||||
<section xml:id="ssdeep.installation">
|
||||
&reftitle.install;
|
||||
<para>
|
||||
<simpara>
|
||||
&pecl.moved;
|
||||
</para>
|
||||
<para>
|
||||
</simpara>
|
||||
<simpara>
|
||||
&pecl.info;
|
||||
<link xlink:href="&url.pecl.package;ssdeep">&url.pecl.package;ssdeep</link>.
|
||||
</para>
|
||||
</simpara>
|
||||
</section>
|
||||
|
||||
</chapter>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
|
||||
Reference in New Issue
Block a user