ajout crypto

This commit is contained in:
2025-03-31 10:06:09 +02:00
parent 731020a934
commit bff1a74ae7
680 changed files with 14849 additions and 0 deletions

17
crypto/TP2/spn.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef _SPN_H
#define _SPN_H
#include <stdint.h>
#include <stdio.h>
unsigned char do_perm(unsigned char w, unsigned char perm[8]);
unsigned char do_subst(unsigned char w, unsigned char subst[16]);
unsigned char encrypt(unsigned char w, unsigned short key, unsigned char perm[8], unsigned char subst[16]);
unsigned char decrypt(unsigned char w, unsigned short key, unsigned char perm[8], unsigned char subst[16]);
// Ajout des déclarations des fonctions de lecture
void read_key(const char *filename, unsigned short *key);
void read_subst(const char *filename, unsigned char subst[16]);
void read_perm(const char *filename, unsigned char perm[8]);
#endif