summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/evp.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/evp/evp.h11
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);
837const EVP_CIPHER *EVP_gost2814789_cnt(void); 837const EVP_CIPHER *EVP_gost2814789_cnt(void);
838#endif 838#endif
839 839
840#ifndef OPENSSL_NO_SM4
841const EVP_CIPHER *EVP_sm4_ecb(void);
842const EVP_CIPHER *EVP_sm4_cbc(void);
843const EVP_CIPHER *EVP_sm4_cfb128(void);
844#define EVP_sm4_cfb EVP_sm4_cfb128
845const EVP_CIPHER *EVP_sm4_ofb(void);
846const EVP_CIPHER *EVP_sm4_ctr(void);
847#endif
848
840void OPENSSL_add_all_algorithms_noconf(void); 849void OPENSSL_add_all_algorithms_noconf(void);
841void OPENSSL_add_all_algorithms_conf(void); 850void OPENSSL_add_all_algorithms_conf(void);
842 851