From 4e05df9b69f4cc5ca1a9e6eda3ecede787da5f48 Mon Sep 17 00:00:00 2001 From: xdrm Date: Fri, 22 May 2015 11:00:44 +0200 Subject: [PATCH] Ajout accents ~ stable[50] --- source.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source.py b/source.py index 2aff013..782c923 100644 --- a/source.py +++ b/source.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + # fonction qui retourne une liste de nombres entre 0 pLength a partir d'un nombre # compris entre 0 et pLength**pLevel def decomposeKey(pNum, pLength, pLevel): @@ -82,7 +85,7 @@ def decodeChar(pChar, pSIGMA, pROTOR): ############################################################################################################################# # DEFINITION DE L'ALPHABET -SIGMA = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz,.?!:[](){}-_0123456789#$*/ \\"\''; +SIGMA = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzàèéêôùàç&=+^~@%,.?!:[](){}-_0123456789#$*/ \\"\''; # ALPHABET FORMATE EN LISTE SIGMA = list(SIGMA);