[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Rich Salz
rsalz at openssl.org
Tue Mar 7 01:30:01 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via bf1c92faf6d3adba62165432164f5732da3d99c9 (commit)
from 6542af0571ccf491022c8d3494871c73c2127389 (commit)
- Log -----------------------------------------------------------------
commit bf1c92faf6d3adba62165432164f5732da3d99c9
Author: Pauli <paul.dale at oracle.com>
Date: Tue Mar 7 10:12:05 2017 +1000
Increase the password buffer size to APP_PASS_LEN.
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2868)
(cherry picked from commit bf580d5f30368f7ebc4c44f10575b5f0b411d594)
-----------------------------------------------------------------------
Summary of changes:
apps/pkcs8.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/pkcs8.c b/apps/pkcs8.c
index 93ffdd5..4b3fa10 100644
--- a/apps/pkcs8.c
+++ b/apps/pkcs8.c
@@ -66,7 +66,7 @@ int pkcs8_main(int argc, char **argv)
char *infile = NULL, *outfile = NULL;
char *passinarg = NULL, *passoutarg = NULL, *prog;
#ifndef OPENSSL_NO_UI
- char pass[50];
+ char pass[APP_PASS_LEN];
#endif
char *passin = NULL, *passout = NULL, *p8pass = NULL;
OPTION_CHOICE o;
More information about the openssl-commits
mailing list