diff options
author | Ingela Anderton Andin <[email protected]> | 2017-01-25 11:42:29 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-01-25 11:42:29 +0100 |
commit | dd2e2b74fe6e97f13ab00f98a049604cf61fb43d (patch) | |
tree | f940028773ff214973ec6bd62e66b5257d890c6f /lib/ssl/test | |
parent | 1706f9302887cf238862fb7d92ca8d77fcef71d3 (diff) | |
parent | 4c8e651d8641e98ecb1f21aa8652c53ee5067bf6 (diff) | |
download | otp-dd2e2b74fe6e97f13ab00f98a049604cf61fb43d.tar.gz otp-dd2e2b74fe6e97f13ab00f98a049604cf61fb43d.tar.bz2 otp-dd2e2b74fe6e97f13ab00f98a049604cf61fb43d.zip |
Merge branch 'ingela/ssl/crl-validity' into maint
* ingela/ssl/crl-validity:
ssl: Make crls valid for a week instead of 24 hours
Diffstat (limited to 'lib/ssl/test')
-rw-r--r-- | lib/ssl/test/make_certs.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/test/make_certs.erl b/lib/ssl/test/make_certs.erl index d85be6c69e..e14f7f60c4 100644 --- a/lib/ssl/test/make_certs.erl +++ b/lib/ssl/test/make_certs.erl @@ -172,8 +172,8 @@ revoke(Root, CA, User, C) -> gencrl(Root, CA, C). gencrl(Root, CA, C) -> - %% By default, the CRL is valid for 24 hours from now. - gencrl(Root, CA, C, 24). + %% By default, the CRL is valid for a week from now. + gencrl(Root, CA, C, 24*7). gencrl(Root, CA, C, CrlHours) -> CACnfFile = filename:join([Root, CA, "ca.cnf"]), |