Skip to content

Commit 73576b1

Browse files
authored
Fix CSFLE tests on Mac (#1215)
1 parent 5e9a974 commit 73576b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evergreen/convert-client-cert-to-pkcs12.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [[ "$CLIENT_PEM" == "nil" ]]; then
2020
exit 1
2121
fi
2222

23-
openssl pkcs12 -export -in "${CLIENT_PEM}" \
23+
openssl pkcs12 -export -keypbe PBE-SHA1-3DES -certpbe PBE-SHA1-3DES -macalg sha1 -in "${CLIENT_PEM}" \
2424
-out "${MONGO_X509_CLIENT_P12}" \
2525
-name "Drivers Client Certificate" \
2626
-password "pass:${MONGO_X509_CLIENT_CERTIFICATE_PASSWORD}"

0 commit comments

Comments
 (0)