Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/cmd_test/req-cmd-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ test_cert_creation() {
# Create certificate with specified provider
echo "Creating self-signed certificate with ${hash_alg} using ${req_provider_name}..."
if $OPENSSL_BIN req -x509 -new -key "$key_file" -${hash_alg} -days 365 \
-out "$cert_file" -subj "/CN=test-${curve}-${hash_alg}" ${req_provider_args} 2>/dev/null; then
-out "$cert_file" -subj "/CN=test-${curve}-${hash_alg}" ${req_provider_args}; then
echo "[PASS] Certificate creation successful"
# Only call check_force_fail for wolfProvider operations, or when not in force fail mode
if [[ "$req_provider_args" == *"libwolfprov"* ]] || [ "${WOLFPROV_FORCE_FAIL}" != "1" ]; then
Expand Down
Loading