summaryrefslogtreecommitdiff
path: root/cipher-aesctr.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher-aesctr.c')
-rw-r--r--cipher-aesctr.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cipher-aesctr.c b/cipher-aesctr.c
index e13615195..850bbf7db 100644
--- a/cipher-aesctr.c
+++ b/cipher-aesctr.c
@@ -18,6 +18,8 @@
18#include <sys/types.h> 18#include <sys/types.h>
19#include <string.h> 19#include <string.h>
20 20
21#ifndef WITH_OPENSSL
22
21#include "cipher-aesctr.h" 23#include "cipher-aesctr.h"
22 24
23/* 25/*
@@ -76,3 +78,4 @@ aesctr_encrypt_bytes(aesctr_ctx *x,const u8 *m,u8 *c,u32 bytes)
76 n = (n + 1) % AES_BLOCK_SIZE; 78 n = (n + 1) % AES_BLOCK_SIZE;
77 } 79 }
78} 80}
81#endif /* !WITH_OPENSSL */