diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/evp/evp.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h index 0645303686..cd9b33c9b8 100644 --- a/src/lib/libcrypto/evp/evp.h +++ b/src/lib/libcrypto/evp/evp.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp.h,v 1.72 2019/01/22 00:59:21 dlg Exp $ */ | 1 | /* $OpenBSD: evp.h,v 1.73 2019/03/17 17:42:37 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -837,6 +837,15 @@ const EVP_CIPHER *EVP_gost2814789_cfb64(void); | |||
837 | const EVP_CIPHER *EVP_gost2814789_cnt(void); | 837 | const EVP_CIPHER *EVP_gost2814789_cnt(void); |
838 | #endif | 838 | #endif |
839 | 839 | ||
840 | #ifndef OPENSSL_NO_SM4 | ||
841 | const EVP_CIPHER *EVP_sm4_ecb(void); | ||
842 | const EVP_CIPHER *EVP_sm4_cbc(void); | ||
843 | const EVP_CIPHER *EVP_sm4_cfb128(void); | ||
844 | #define EVP_sm4_cfb EVP_sm4_cfb128 | ||
845 | const EVP_CIPHER *EVP_sm4_ofb(void); | ||
846 | const EVP_CIPHER *EVP_sm4_ctr(void); | ||
847 | #endif | ||
848 | |||
840 | void OPENSSL_add_all_algorithms_noconf(void); | 849 | void OPENSSL_add_all_algorithms_noconf(void); |
841 | void OPENSSL_add_all_algorithms_conf(void); | 850 | void OPENSSL_add_all_algorithms_conf(void); |
842 | 851 | ||