summaryrefslogtreecommitdiffstats
path: root/crypto/ui/ui_compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ui/ui_compat.h')
-rw-r--r--crypto/ui/ui_compat.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/crypto/ui/ui_compat.h b/crypto/ui/ui_compat.h
index a7f62a4751..f33023718a 100644
--- a/crypto/ui/ui_compat.h
+++ b/crypto/ui/ui_compat.h
@@ -61,9 +61,6 @@
#include <openssl/opensslconf.h>
#include <openssl/ui.h>
-#ifndef OPENSSL_NO_DES
-#include <openssl/des.h>
-#endif
#ifdef __cplusplus
extern "C" {
@@ -72,14 +69,13 @@ extern "C" {
/* The following functions were previously part of the DES section,
and are provided here for backward compatibility reasons. */
-#ifndef OPENSSL_NO_DES
-int des_read_password(DES_cblock *key,const char *prompt,int verify);
-int des_read_2passwords(DES_cblock *key1,DES_cblock *key2,
- const char *prompt,int verify);
-#endif
+#define des_read_pw_string(b,l,p,v) \
+ _ossl_old_des_read_pw_string((b),(l),(p),(v))
+#define des_read_pw(b,bf,s,p,v) \
+ _ossl_old_des_read_pw_string((b),(bf),(s),(p),(v))
-int des_read_pw_string(char *buf,int length,const char *prompt,int verify);
-int des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
+int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify);
+int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
#ifdef __cplusplus
}