Advertisement
Vincent38190

algorithme.h

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