From da02a64351b1e584a0e35ffe1290b8ddffb6f401 Mon Sep 17 00:00:00 2001 From: marc Date: Tue, 14 Apr 2020 08:28:51 -0700 Subject: [PATCH] set root experiation to 20 years --- createRootCA.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 createRootCA.sh diff --git a/createRootCA.sh b/createRootCA.sh old mode 100644 new mode 100755 index e265c9f..a43f63f --- a/createRootCA.sh +++ b/createRootCA.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash openssl genrsa -des3 -out rootCA.key 2048 -openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 825 -out rootCA.pem +openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 7300 -out rootCA.pem