Skip to content

Commit

Permalink
OpenSSL v3 API update
Browse files Browse the repository at this point in the history
  • Loading branch information
fm4dd committed Jan 13, 2024
1 parent 5a165b7 commit a52dea8
Show file tree
Hide file tree
Showing 16 changed files with 759 additions and 108 deletions.
7 changes: 7 additions & 0 deletions html/changelog.shtm
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@

<div id="wrapper">
<div id="content">
<h3>2024-01-13 new version 1.8.5 released</h3>
<hr />
<h4>Bug fixes:</h4>
<ul>
<li>Code update to latest OpenSSL version 3 API calls</li>
</ul>

<h3>2021-12-20 new version 1.8.4 released</h3>
<hr />
<h4>Bug fixes:</h4>
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## WebCert

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

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

Expand Down
4 changes: 2 additions & 2 deletions scripts/update-crl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# and publishes a new CRL file. Runs daily from cron.
##########################################################
# set debug: 0=off 1=normal 2=verbose
DEBUG=2
DEBUG=0

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

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

0 comments on commit a52dea8

Please sign in to comment.