summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/models/client_certificate.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/models/client_certificate.rb b/app/models/client_certificate.rb
index 63de9e1..d5bb1e0 100644
--- a/app/models/client_certificate.rb
+++ b/app/models/client_certificate.rb
@@ -24,7 +24,7 @@ class ClientCertificate
cert.subject.common_name = common_name(options[:prefix])
# set expiration
- cert.not_before = yesterday
+ cert.not_before = last_month
cert.not_after = months_from_yesterday(APP_CONFIG[:client_cert_lifespan])
# generate key
@@ -111,6 +111,11 @@ class ClientCertificate
Time.utc t.year, t.month, t.day
end
+ def last_month
+ t = Time.now - 24*60*60*30
+ Time.utc t.year, t.month, t.day
+ end
+
def months_from_yesterday(num)
t = yesterday
date = Date.new t.year, t.month, t.day