From: msweet Date: Tue, 16 Feb 2016 19:30:22 +0000 (+0000) Subject: Back off on ECDSA for now, just use RSA as before, but now with SHA256 for X-Git-Tag: v2.2b1~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=724f2615e516ca01a1118abb80817ecf73167127;p=thirdparty%2Fcups.git Back off on ECDSA for now, just use RSA as before, but now with SHA256 for signing. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@13094 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/cups/tls-darwin.c b/cups/tls-darwin.c index 6da0e09472..9f270578bc 100644 --- a/cups/tls-darwin.c +++ b/cups/tls-darwin.c @@ -178,7 +178,7 @@ cleanup: status, /* Status of command */ i; /* Looping var */ char command[1024], /* Command */ - *argv[4], /* Command-line arguments */ + *argv[5], /* Command-line arguments */ *envp[1000], /* Environment variables */ days[32], /* CERTTOOL_EXPIRATION_DAYS env var */ keychain[1024], /* Keychain argument */ @@ -215,7 +215,7 @@ cleanup: cupsFilePrintf(fp, "CUPS Self-Signed Certificate\n" /* Enter key and certificate label */ - "e\n" /* Generate ECDSA key pair */ + "r\n" /* Generate RSA key pair */ "2048\n" /* 2048 bit encryption key */ "y\n" /* OK (y = yes) */ "b\n" /* Usage (b=signing/encryption) */