Ajout accents ~ stable[50]

This commit is contained in:
xdrm 2015-05-22 11:00:44 +02:00
parent d1420e457f
commit 4e05df9b69
1 changed files with 4 additions and 1 deletions

View File

@ -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);