error.h 381 B

123456789101112131415161718
  1. /**
  2. * définition des symboles de gestion d'erreurs
  3. **/
  4. #ifndef __ERROR_H
  5. #define __ERROR_H
  6. #define SUCCESS 0
  7. #define ERROR_UNDEFINED 1
  8. #define ERROR_MESSAGE_TOO_BIG 2
  9. #define ERROR_MESSAGE_NOT_A_VALID_STRING 3
  10. #define ERROR_CIPHER_TOO_BIG 4
  11. #define ERROR_WRONG_PUBLIC_KEY_FORMAT 5
  12. #define ERROR_WRONG_SECRET_KEY_FORMAT 6
  13. #endif /* __ERROR_H */