Advertisement
Vincent38190

algorithme.h

Jan 17th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.42 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();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement