Skip to content

Commit c8b1414

Browse files
authored
Merge pull request #294 from per1234/check-certificates-legacy-provider
Use OpenSSL "legacy" provider in "Check Certificates" for compatibility w/ RC2-40-CBC encrypted PKS#12
2 parents e495172 + eac14ef commit c8b1414

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

workflow-templates/check-certificates.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ jobs:
9595
(
9696
openssl pkcs12 \
9797
-in "${{ env.CERTIFICATE_PATH }}" \
98-
-noout -passin env:CERTIFICATE_PASSWORD
98+
-legacy \
99+
-noout \
100+
-passin env:CERTIFICATE_PASSWORD
99101
) || (
100102
echo "::error::Verification of ${{ matrix.certificate.identifier }} failed!!!"
101103
exit 1
@@ -123,6 +125,7 @@ jobs:
123125
openssl pkcs12 \
124126
-in "${{ env.CERTIFICATE_PATH }}" \
125127
-clcerts \
128+
-legacy \
126129
-nodes \
127130
-passin env:CERTIFICATE_PASSWORD
128131
) | (

0 commit comments

Comments
 (0)