-
Notifications
You must be signed in to change notification settings - Fork 0
/
chiffrement.c
60 lines (57 loc) · 1.46 KB
/
chiffrement.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include "tools.h"
struct Paire_char code(char const lettre){
struct Paire_char res;
int trouve=0;
for (int i = 1; i < 7 && trouve!=1; ++i)
{
for (int j = 0; j < 6 && trouve!=1; ++j)
{
if (lettre==carre[i][j])
{
res.premier=carre[0][i-1];
res.deuxieme=carre[0][j];
trouve=1;
}
}
}
return res;
}
void affiche(char const *chiffre, int const taille){
for (int i = 0; i < taille; ++i)
{
if ((int)chiffre[i]==0)
{
printf("X");
}
else{
printf("%c", chiffre[i]);
}
}
printf("\n");
}
int chiffrement(int const *permutation, int const taille_permut, char const *message, int const taille_message){
int nbr_lignes=ceil(taille_message*2.0/ taille_permut);
int taille_tot=nbr_lignes*taille_permut;
char *chiffre=calloc(taille_tot, sizeof(char));
// calloc va initialiser la zone mémoire avec des 0 dont on va se servir pour l'affichage
for (int i = 0; i < taille_message; ++i)
{
char lettre= (char)tolower((int)message[i]);
int ascii = (int)lettre;
if (ascii < 48 || (ascii > 57 && ascii < 97) || ascii > 122)
{
return 1;
}
struct Paire_char trad=code(lettre);
chiffre[(permutation[((i*2)%taille_permut)]-1) * nbr_lignes + (i*2/taille_permut)]=trad.premier;
chiffre[(permutation[((i*2+1)%taille_permut)]-1) * nbr_lignes + ((i*2+1)/taille_permut)]=trad.deuxieme;
}
affiche(chiffre, taille_tot);
free(chiffre);
return 0;
}