mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
19 lines
713 B
C
19 lines
713 B
C
/***********************************************************************************************************************************
|
|
Cipher Header
|
|
***********************************************************************************************************************************/
|
|
#ifndef CRYPTO_CIPHER_H
|
|
#define CRYPTO_CIPHER_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
/***********************************************************************************************************************************
|
|
Cipher modes
|
|
***********************************************************************************************************************************/
|
|
typedef enum
|
|
{
|
|
cipherModeEncrypt,
|
|
cipherModeDecrypt,
|
|
} CipherMode;
|
|
|
|
#endif
|