ui_compat(3) | LibreSSL | ui_compat(3) |
NAME
des_read_password, des_read_2passwords, des_read_pw_string, des_read_pw - Compatibility user interface functionsSYNOPSIS
#include <openssl/des_old.h>
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);
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);
DESCRIPTION
The DES library contained a few routines to prompt for passwords. These aren't necessarily dependent on DES, and have therefore become part of the UI compatibility library.NOTES
des_read_pw_string() is available in the MIT Kerberos library as well, and is also available under the name EVP_read_pw_string().SEE ALSO
ui(3), ui_create(3)AUTHOR
Richard Levitte (richard@levitte.org) for the OpenSSL project (http://www.openssl.org).2015-10-26 | LibreSSL |