diff options
author | Ben Laurie <ben@openssl.org> | 1999-04-17 23:25:43 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-04-17 23:25:43 +0200 |
commit | e778802f53c8d47e96a6e4cbc776eb6e1d4c461a (patch) | |
tree | 719d4dd0fc69b355c6d8329af1f90b2c4f603548 /crypto/evp/evp_key.c | |
parent | Add support for VISIBLESTRING and UTF8String (diff) | |
download | openssl-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.tar.xz openssl-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.zip |
Massive constification.
Diffstat (limited to 'crypto/evp/evp_key.c')
-rw-r--r-- | crypto/evp/evp_key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/evp_key.c b/crypto/evp/evp_key.c index dafa686f64..b766f73ec1 100644 --- a/crypto/evp/evp_key.c +++ b/crypto/evp/evp_key.c @@ -89,7 +89,7 @@ int des_read_pw_string(char *buf,int len,char *prompt,int verify); int EVP_read_pw_string(buf,len,prompt,verify) char *buf; int len; -char *prompt; +const char *prompt; int verify; { if ((prompt == NULL) && (prompt_string[0] != '\0')) @@ -98,7 +98,7 @@ int verify; } int EVP_BytesToKey(type,md,salt,data,datal,count,key,iv) -EVP_CIPHER *type; +const EVP_CIPHER *type; EVP_MD *md; unsigned char *salt; unsigned char *data; |