This website works better with JavaScript.
Home
Help
Sign In
jan
/
osslconfexamples
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add script to link CA certificates and CRLs
master
Jan Dittberner
9 years ago
parent
fe0e526dd3
commit
1369f5192c
2 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
README
+13
-0
cacrllink.sh
+ 1
- 0
README
View File
@@ -7,4 +7,5 @@ Configuration files:
Scripts:
- cacrllink.sh - Script to link CA certificates and CRLs to hashed names
- createca.sh - Script for creating a CA
+ 13
- 0
cacrllink.sh
View File
@@ -0,0 +1,13 @@
#!/bin/sh
#
# script for creating links to certificates and CRLs in the current directory
for cert in *.crt.pem
do
ln -s "${cert}" `openssl x509 -in "${cert}" -noout -hash`.0
done
for crl in *.crl.pem
do
ln -s "${crl}" `openssl crl -in "${crl}" -noout -hash`.r0
done
Write
Preview
Loading…
Cancel
Save