summaryrefslogtreecommitdiff
path: root/plugins/apihashing/python/classics/ror13.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2023-10-18 06:34:20 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2023-10-18 06:34:20 (GMT)
commit178e0de0a8962def1a4b1d612f86b0ca5f3bed3f (patch)
tree38f468596848e2bed787594d9f15dbed7da55406 /plugins/apihashing/python/classics/ror13.c
parent4f2fdc0f97f49b26772c2a466d22fdf84eb0f6d5 (diff)
Add support for the DJB2 algorithm.
Diffstat (limited to 'plugins/apihashing/python/classics/ror13.c')
-rw-r--r--plugins/apihashing/python/classics/ror13.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/apihashing/python/classics/ror13.c b/plugins/apihashing/python/classics/ror13.c
index 0ecad1c..429f7da 100644
--- a/plugins/apihashing/python/classics/ror13.c
+++ b/plugins/apihashing/python/classics/ror13.c
@@ -63,9 +63,9 @@ static int py_scan_ror13_modifier_init(PyObject *self, PyObject *args, PyObject
{
int ret; /* Bilan de lecture des args. */
-#define SCAN_ROR13_MODIFIER_DOC \
- "The *Ror13Modifier* class transforms a byte pattern into its" \
- " ror13 encoded form.\n" \
+#define SCAN_ROR13_MODIFIER_DOC \
+ "The *Ror13Modifier* class transforms a byte pattern into its" \
+ " ror13 encoded form.\n" \
"\n" \
"Instances can be created using the following constructor:\n" \
"\n" \
@@ -141,7 +141,7 @@ PyTypeObject *get_python_scan_ror13_modifier_type(void)
bool ensure_python_scan_ror13_modifier_is_registered(void)
{
- PyTypeObject *type; /* Type Python Ror13Modifier */
+ PyTypeObject *type; /* Type Python Ror13Modifier */
PyObject *module; /* Module à recompléter */
PyObject *dict; /* Dictionnaire du module */