aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/aesni/box_data.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/aesni/box_data.h b/include/aesni/box_data.h
index 9acd901..ecd98a9 100644
--- a/include/aesni/box_data.h
+++ b/include/aesni/box_data.h
@@ -87,12 +87,17 @@ typedef AesNI_StatusCode (*AesNI_BoxXorBlock)(
const AesNI_BoxBlock*,
AesNI_ErrorDetails*);
+typedef AesNI_StatusCode (*AesNI_BoxIncCounter)(
+ AesNI_BoxBlock*,
+ AesNI_ErrorDetails*);
+
typedef struct
{
AesNI_BoxDeriveParams derive_params;
AesNI_BoxEncrypt encrypt;
AesNI_BoxDecrypt decrypt;
AesNI_BoxXorBlock xor_block;
+ AesNI_BoxIncCounter inc_counter;
}
AesNI_BoxAlgorithmInterface;