From 65d3941f4aa199d0fcd615b074876f8ff2886d11 Mon Sep 17 00:00:00 2001 From: Rodger Combs Date: Sat, 6 Jun 2015 21:55:01 -0400 Subject: Increase buffer size for passwords in pkcs12 CLI Reviewed-by: Tim Hudson --- apps/pkcs12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/pkcs12.c') diff --git a/apps/pkcs12.c b/apps/pkcs12.c index 9ab7f69..05bb1ad 100644 --- a/apps/pkcs12.c +++ b/apps/pkcs12.c @@ -160,7 +160,7 @@ int pkcs12_main(int argc, char **argv) { char *infile = NULL, *outfile = NULL, *keyname = NULL, *certfile = NULL; char *name = NULL, *csp_name = NULL; - char pass[50], macpass[50]; + char pass[2048], macpass[2048]; int export_cert = 0, options = 0, chain = 0, twopass = 0, keytype = 0; int iter = PKCS12_DEFAULT_ITER, maciter = PKCS12_DEFAULT_ITER; # ifndef OPENSSL_NO_RC2 -- cgit v1.1