Programme passerelle dans le cadre du projet Prosecco
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

18 рядки
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);