From a6f28501e25578f97b4436c09ca3fbe2b8d324d7 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Wed, 8 Aug 2018 17:46:18 -0700 Subject: [PATCH] chore(util) increase fixture SSL certs validity --- util/ssl_fixtures.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/ssl_fixtures.sh b/util/ssl_fixtures.sh index 479460b..6cd176b 100755 --- a/util/ssl_fixtures.sh +++ b/util/ssl_fixtures.sh @@ -12,11 +12,11 @@ pushd spec/fixtures/ssl # generate keystore keytool -genkey \ -keyalg RSA \ - -validity 365 \ + -validity 3650 \ -alias cassandra \ -storepass $PASS \ -keypass $PASS \ - -dname 'CN=Thibault Charbonnier, O=Mashape, L=San Francisco, ST=CA, C=US' \ + -dname 'CN=Thibault Charbonnier, O=Kong Inc, L=San Francisco, ST=CA, C=US' \ -keystore keystore.jks # export cert @@ -37,10 +37,10 @@ pushd spec/fixtures/ssl keytool -genkeypair \ -keyalg RSA \ -alias client \ - -validity 365 \ + -validity 3650 \ -storepass $PASS \ -keypass $PASS \ - -dname 'CN=Thibault Charbonnier, O=Mashape, L=San Francisco, ST=CA, C=US' \ + -dname 'CN=Thibault Charbonnier, O=Kong Inc, L=San Francisco, ST=CA, C=US' \ -keystore truststore.jks # export the private and public parts