Skip to content

Commit a9411d0

Browse files
committed
OpenSSL v3 API update
1 parent 5a165b7 commit a9411d0

17 files changed

+769
-116
lines changed

html/changelog.shtm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818

1919
<div id="wrapper">
2020
<div id="content">
21+
<h3>2024-01-13 new version 1.8.5 released</h3>
22+
<hr />
23+
<h4>Bug fixes:</h4>
24+
<ul>
25+
<li>Code update to latest OpenSSL version 3 API calls</li>
26+
</ul>
27+
2128
<h3>2021-12-20 new version 1.8.4 released</h3>
2229
<hr />
2330
<h4>Bug fixes:</h4>

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## WebCert
22

33
![test](https://github.com/fm4dd/webcert/workflows/test/badge.svg)
4+
[![License: MIT](https://img.shields.io/badge/license-MIT-blue)](https://opensource.org/licenses/MIT)
45

56
#### A Web Tool for Generation and Management of digital Certificates
67

scripts/update-crl.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# and publishes a new CRL file. Runs daily from cron.
66
##########################################################
77
# set debug: 0=off 1=normal 2=verbose
8-
DEBUG=2
8+
DEBUG=0
99

1010
##########################################################
1111
# binaries location
@@ -73,7 +73,7 @@ CHECK_UPDATE() {
7373
##########################################################
7474
NEW_CRL() {
7575
if [ $update_crl == "1" ]; then
76-
$OSSL ca -cert /srv/app/webCA/cacert.pem -gencrl -crldays 90 \
76+
$OSSL ca -config /srv/app/webCA/webCA.cnf -gencrl -crldays 90 \
7777
-out $crlfile --passin file:/srv/app/webCA/private/passin.src 2>/dev/null
7878

7979
[ $DEBUG == "2" ] && echo "update-crl.sh: created new crl file $crlfile"

0 commit comments

Comments
 (0)