Programme passerelle dans le cadre du projet Prosecco
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
472 B

  1. /* chiffrePF.h : header file pour le chiffrement Playfair */
  2. /* liste des fonctions utilisables */
  3. /* Fonction de chiffrement direct dans le buffer :
  4. B adresse du buf, T le nb d'octets */
  5. extern void PF_chiffreD(char *B, int T);
  6. /* Fonction de dechiffrement direct dans le buffer :
  7. B adresse du buf, T le nb d'octets */
  8. extern void PF_dechiffreD(char *B, int T);
  9. /* Fonction d'Initialisation : on passe la cle en parametre */
  10. extern void PF_init(char * cle);