diff options
author | Omar Polo <op@omarpolo.com> | 2021-01-23 17:42:04 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-01-23 17:42:04 +0000 |
commit | 2349b02b261cabf5a95215f24550c454712066f6 (patch) | |
tree | 54b88b74b7a2efd8d12a2a16404cb3ff60db1f33 /regress | |
parent | c6b9ddecf62dece7c5bcca3b9ab8a96a3aecadaf (diff) |
bump the key size a little
on fedora with libretls (running on top of openssl) it won't open the
key otherwise.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile index f14b0fa..a7b693c 100644 --- a/regress/Makefile +++ b/regress/Makefile @@ -17,7 +17,7 @@ key.pem: cert.pem # are quicker to generate. DON'T DO THIS AT HOME. cert.pem: printf ".\n.\n.\n.\n.\nlocalhost\n.\n" | \ - openssl req -x509 -newkey rsa:1024 \ + openssl req -x509 -newkey rsa:2048 \ -keyout key.pem \ -out cert.pem \ -days 365 -nodes |