2017-11-03 19:57:58 +02:00
|
|
|
/***********************************************************************************************************************************
|
2018-06-11 16:53:16 +02:00
|
|
|
Cipher Header
|
2017-11-03 19:57:58 +02:00
|
|
|
***********************************************************************************************************************************/
|
2018-06-11 16:53:16 +02:00
|
|
|
#ifndef CRYPTO_CIPHER_H
|
|
|
|
#define CRYPTO_CIPHER_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2017-11-03 19:57:58 +02:00
|
|
|
|
2018-04-07 03:46:45 +02:00
|
|
|
/***********************************************************************************************************************************
|
2018-06-11 16:53:16 +02:00
|
|
|
Cipher modes
|
2018-04-07 03:46:45 +02:00
|
|
|
***********************************************************************************************************************************/
|
2018-06-11 16:53:16 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
cipherModeEncrypt,
|
|
|
|
cipherModeDecrypt,
|
|
|
|
} CipherMode;
|
2017-11-03 19:57:58 +02:00
|
|
|
|
|
|
|
#endif
|