1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00
pgbackrest/src/crypto/cipher.h
2018-06-11 10:53:16 -04:00

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