-
Notifications
You must be signed in to change notification settings - Fork 0
/
dechiffrement.c
46 lines (44 loc) · 1.1 KB
/
dechiffrement.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "tools.h"
char correspondance(char const premier, char const deuxieme){
int i=-1;
int j=-1;
for (int k=0; k < 6 && (i==-1 || j==-1); ++k)
{
if (carre[0][k]==premier)
{
i=k+1;
}
if (carre[0][k]==deuxieme)
{
j=k;
}
}
if (i == -1 && j == -1)
{
return '\0'; // caractere arbitraire pour signifier qu'il y a un probleme
}
return carre[i][j];
}
int dechiffrement(int const *permutation, int const taille_permut, char const *chiffre, int taille_chiffre){
char message[taille_chiffre/2];
int nbr_lignes=taille_chiffre/taille_permut;
for (int i = 0; i < taille_chiffre; i+=2)
{
int un=nbr_lignes * (permutation[i%taille_permut]-1) + (i/taille_permut);
int deux=nbr_lignes * (permutation[(i+1)%taille_permut]-1) + ((i+1)/taille_permut);
char premier=(char)toupper((int)chiffre[un]);
char deuxieme= (char)toupper((int)chiffre[deux]);
message[i/2]=correspondance(premier, deuxieme);
if (message[i/2] == '\0')
{
return 1;
}
}
message[taille_chiffre/2]='\0';
printf("%s\n", message);
return 0;
}