summaryrefslogtreecommitdiffstats
path: root/crypto/ui/ui_compat.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-05-13 04:40:44 +0000
committerRichard Levitte <levitte@openssl.org>2001-05-13 04:40:44 +0000
commit56bb1a7c83f2c498f4cc308786a4f253e8a5d9b5 (patch)
tree9859f5d2973f9fab6d02ce21114b9ed9a19bb70d /crypto/ui/ui_compat.c
parent96aaf806d8da234b7acc50a4822c4aff84d907bb (diff)
Move the password reading functions completely away from the DES
section. Add ui_compat.h for inclusion by those who want the old functions and provide all of them, not just the higher-level ones, in ui_compat.c.
Diffstat (limited to 'crypto/ui/ui_compat.c')
-rw-r--r--crypto/ui/ui_compat.c36
1 files changed, 24 insertions, 12 deletions
diff --git a/crypto/ui/ui_compat.c b/crypto/ui/ui_compat.c
index 44392d70c2..f328bdc6c0 100644
--- a/crypto/ui/ui_compat.c
+++ b/crypto/ui/ui_compat.c
@@ -1,4 +1,5 @@
-/* crypto/ui/ui_compat.c */ /* This was previously crypto/des/read2pwd.c */
+/* crypto/ui/ui_compat.c -*- mode:C; c-file-style: "eay" -*- */
+/* This was previously crypto/des/read2pwd.c and partly crypto/des/read_pwd.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -63,15 +64,9 @@ int des_read_password(des_cblock *key, const char *prompt, int verify)
{
int ok;
char buf[BUFSIZ],buff[BUFSIZ];
- UI *ui;
- ui = UI_new();
- UI_add_input_string(ui,prompt,0,buf,0,BUFSIZ-1);
- if (verify)
- UI_add_verify_string(ui,prompt,0,buff,0,BUFSIZ-1,buf);
- if ((ok=UI_process(ui)) == 0)
+ if ((ok=des_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
des_string_to_key(buf,key);
- UI_free(ui);
memset(buf,0,BUFSIZ);
memset(buff,0,BUFSIZ);
return(ok);
@@ -82,16 +77,33 @@ int des_read_2passwords(des_cblock *key1, des_cblock *key2, const char *prompt,
{
int ok;
char buf[BUFSIZ],buff[BUFSIZ];
+
+ if ((ok=des_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
+ des_string_to_2keys(buf,key1,key2);
+ memset(buf,0,BUFSIZ);
+ memset(buff,0,BUFSIZ);
+ return(ok);
+ }
+
+int des_read_pw_string(char *buf,int length,const char *prompt,int verify)
+ {
+ char buff[BUFSIZ];
+ int ret;
+
+ ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
+ memset(buff,0,BUFSIZ);
+ return(ret);
+ }
+
+int des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify)
+ {
UI *ui;
ui = UI_new();
UI_add_input_string(ui,prompt,0,buf,0,BUFSIZ-1);
if (verify)
UI_add_verify_string(ui,prompt,0,buff,0,BUFSIZ-1,buf);
- if ((ok=UI_process(ui)) == 0)
- des_string_to_2keys(buf,key1,key2);
+ ok=UI_process(ui);
UI_free(ui);
- memset(buf,0,BUFSIZ);
- memset(buff,0,BUFSIZ);
return(ok);
}