From 7fdc32f3191eee96bf004d5774c09db23ae37e91 Mon Sep 17 00:00:00 2001 From: "Le.Beta" Date: Tue, 19 Mar 2019 10:56:50 +0800 Subject: [PATCH] Add chacha12 and chacha20 code form sectun --- encrypt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encrypt.h b/encrypt.h index c9fd0d2..fd255ec 100755 --- a/encrypt.h +++ b/encrypt.h @@ -25,7 +25,7 @@ unsigned short csum(const unsigned short *ptr,int nbytes) ; enum auth_mode_t {auth_none=0,auth_md5,auth_crc32,auth_simple,auth_hmac_sha1,auth_end}; -enum cipher_mode_t {cipher_none=0,cipher_aes128cbc,cipher_xor,cipher_aes128cfb,cipher_end}; +enum cipher_mode_t {cipher_none=0,cipher_aes128cbc,cipher_xor,cipher_aes128cfb,cipher_chacha12,cipher_chacha20,cipher_end}; extern auth_mode_t auth_mode;