summaryrefslogtreecommitdiffstats
path: root/crypto/evp/evp.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-03-27 19:27:51 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-03-27 19:27:51 +0000
commit9caf25d1449e78d0ab145c5bde936d4760bc528f (patch)
tree43028d29f9c34e811abf6659e06596b9075469f2 /crypto/evp/evp.h
parent348620c7ac710ab22cffc3d8d474d4b62040e0d4 (diff)
PR: 1904
Submitted by: David Woodhouse <dwmw2@infradead.org> Pass passphrase minimum length down to UI.
Diffstat (limited to 'crypto/evp/evp.h')
-rw-r--r--crypto/evp/evp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index 41fdb2b3f8..9f9795e2d9 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -522,6 +522,7 @@ int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type);
int EVP_DigestFinal(EVP_MD_CTX *ctx,unsigned char *md,unsigned int *s);
int EVP_read_pw_string(char *buf,int length,const char *prompt,int verify);
+int EVP_read_pw_string_min(char *buf,int minlen,int maxlen,const char *prompt,int verify);
void EVP_set_pw_prompt(const char *prompt);
char * EVP_get_pw_prompt(void);