Adjust brace placement, whitespace after keywords, indentation and empty
lines after variable declarations according to
https://www.openssl.org/policies/codingstyle.html.
Indent literal sections by exactly one space.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3580)
if (!ASN1_TIME_diff(&day, &sec, NULL, to))
/* Invalid time format */
+
if (day > 0 || sec > 0)
printf("Later\n");
else if (day < 0 || sec < 0)
Code for setting up parameters during server initialization:
SSL_CTX ctx = SSL_CTX_new();
+
DH *dh_2048 = NULL;
FILE *paramfile = fopen("dh_param_2048.pem", "r");