des_read_password() and des_read_2passwords() can only appear if DES
authorRichard Levitte <levitte@openssl.org>
Sun, 13 May 2001 04:59:09 +0000 (04:59 +0000)
committerRichard Levitte <levitte@openssl.org>
Sun, 13 May 2001 04:59:09 +0000 (04:59 +0000)
is compiled.

crypto/ui/ui_compat.c
crypto/ui/ui_compat.h

index f328bdc6c08531db082b3f823fbf09e5d00a421b..fd8e004c107c5a32902008cc5cd279eb29dd12b9 100644 (file)
@@ -57,9 +57,9 @@
  * [including the GNU Public Licence.]
  */
 
-#include <openssl/des.h>
-#include <openssl/ui.h>
+#include <openssl/ui_compat.h>
 
+#ifndef OPENSSL_NO_DES
 int des_read_password(des_cblock *key, const char *prompt, int verify)
        {
        int ok;
@@ -84,6 +84,7 @@ int des_read_2passwords(des_cblock *key1, des_cblock *key2, const char *prompt,
        memset(buff,0,BUFSIZ);
        return(ok);
        }
+#endif
 
 int des_read_pw_string(char *buf,int length,const char *prompt,int verify)
        {
index 3b19b82072ce236373d4866ffaee4c9cbc9e5ab2..519f3654b09296bd5310dc0b07f3ff93690da9cc 100644 (file)
 #ifndef HEADER_UI_COMPAT_H
 #define HEADER_UI_COMPAT_H
 
+#include <openssl/opensslconf.h>
 #include <openssl/ui.h>
+#ifndef OPENSSL_NO_DES
+#include <openssl/des.h>
+#endif
 
 #ifdef  __cplusplus
 extern "C" {
@@ -68,9 +72,11 @@ 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
 
 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);