Skip to content

Commit

Permalink
des_read_password() and des_read_2passwords() can only appear if DES
Browse files Browse the repository at this point in the history
is compiled.
  • Loading branch information
levitte committed May 13, 2001
1 parent 1449bda commit 299053b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crypto/ui/ui_compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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)
{
Expand Down
6 changes: 6 additions & 0 deletions crypto/ui/ui_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@
#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" {
Expand All @@ -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);
Expand Down

0 comments on commit 299053b

Please sign in to comment.