Vincent38190

algorithme.h

Jan 18th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.66 KB | None | 0 0
  1. #ifndef DEF_algorithme
  2. #define DEF_algorithme
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <math.h>
  7. #endif // DEF_cl
  8. #define TAILLE_MAX 1000
  9.  
  10.  
  11.  
  12. void Chiffrement(const char entree[],char sortit[],const int cle);
  13. void Dechiffrement(const char entree[],char sortit[],const int cle);
  14. void Save(const char messagesNonCrypte[], const char messagesCrypte[] ,const int cle);
  15. void AfficherSave();
  16. void LireFichier(const char nomDuFichierSansExtension[], const int mode, const int cle);
  17. void CrypterSave(char messagesNonCrypte[], char messagesCrypte[],int *cle);
  18. void DecrypterSave(char messagesNonCrypt[],char messagesCrypt[],int *cle);
Add Comment
Please, Sign In to add comment