summaryrefslogtreecommitdiff
path: root/test/regression/interoperability_test/nx_secure_test/test_scripts/openssl_echo_server.sh
blob: 3e07913e65cfb1409476f19c9259931a5a9ad5e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
##############################################################################
# Copyright (c) 2024 Microsoft Corporation
# Copyright (c) 2026 Eclipse ThreadX contributors
#
# This program and the accompanying materials are made available under the
# terms of the MIT License which is available at
# https://opensource.org/licenses/MIT.
#
# SPDX-License-Identifier: MIT
##############################################################################


date
#Show script name.
echo $0 $@

arg1=$1
arg2=$2
shift 2

cd "$( dirname "$0" )"
echo "hello" | openssl s_server -key "$arg1" -cert "$arg2" -naccept 1 $@