Ensure there is a newline character before a PEM key is written.

This commit is contained in:
Guus Sliepen 2010-10-22 22:42:21 +02:00
parent c6ccbadfcf
commit a08462bf84

View file

@ -365,6 +365,7 @@ static bool keygen(int bits) {
fchmod(fileno(f), 0600);
#endif
fputc('\n', f);
PEM_write_RSAPrivateKey(f, rsa_key, NULL, NULL, 0, NULL, NULL);
fclose(f);
free(filename);
@ -382,6 +383,7 @@ static bool keygen(int bits) {
if(disable_old_keys(f))
fprintf(stderr, "Warning: old key(s) found and disabled.\n");
fputc('\n', f);
PEM_write_RSAPublicKey(f, rsa_key);
fclose(f);
free(filename);