From f58245b0d249fc162feacc610eedf81656a481a3 Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 7 Aug 2024 21:14:53 -0400 Subject: feat: Add cipher mode mask and fix cc --- include/noscryptutil.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/noscryptutil.h b/include/noscryptutil.h index 709f607..63e08f8 100644 --- a/include/noscryptutil.h +++ b/include/noscryptutil.h @@ -43,6 +43,8 @@ extern "C" { #define E_CIPHER_BAD_INPUT -15 #define E_CIPHER_BAD_INPUT_SIZE -16 +#define NC_UTIL_CIPHER_MODE 0x01u + #define NC_UTIL_CIPHER_MODE_ENCRYPT 0x00u #define NC_UTIL_CIPHER_MODE_DECRYPT 0x01u #define NC_UTIL_CIPHER_ZERO_ON_FREE 0x02u -- cgit