1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
#!/bin/bash
##===----------------------------------------------------------------------===##
##
## This source file is part of the SwiftNIO open source project
##
## Copyright (c) 2019 Apple Inc. and the SwiftNIO project authors
## Licensed under Apache License v2.0
##
## See LICENSE.txt for license information
## See CONTRIBUTORS.txt for the list of SwiftNIO project authors
##
## SPDX-License-Identifier: Apache-2.0
##
##===----------------------------------------------------------------------===##
source defines.sh
swift build
# Generate a self-signed certificate.
cat << EOF > "$tmp/openssl.cnf"
[ req ]
distinguished_name = subject
req_extensions = req_ext
x509_extensions = x509_ext
[ subject ]
countryName = Country Name (2 letter code)
countryName_default = US
stateOrProvinceName = State or Province Name (full name)
stateOrProvinceName_default = NY
localityName = Locality Name (eg, city)
localityName_default = New York
organizationName = Organization Name (eg, company)
organizationName_default = Example, LLC
[ req_ext ]
basicConstraints = CA:FALSE
[ x509_ext ]
subjectKeyIdentifier = hash
subjectAltName = @alternate_names
[ alternate_names ]
DNS.1 = localhost
EOF
openssl req -new -newkey rsa:4096 -days 365 -nodes -config "$tmp/openssl.cnf" -x509 \
-subj "/C=US/ST=NJ/L=Wall/O=NIO/CN=localhost" \
-keyout "$tmp/key.pem" -out "$tmp/cert.pem"
expect -c "
spawn openssl s_server -no_tls1_3 -cert \"$tmp/cert.pem\" -key \"$tmp/key.pem\"
set serverspawn \$spawn_id
expect {
\"ACCEPT\" {
}
timeout {
exit 1
}
}
spawn $(client_path) http://localhost:4433/get \"$tmp/cert.pem\" \"$tmp/key.pem\" \"$tmp/cert.pem\"
set spawn_id \$serverspawn
expect {
\"close\\r\\r\" {
}
timeout {
exit 2
}
}
send \"R\r\"
expect {
\"Read BLOCK\\r\" {
}
timeout {
exit 3
}
}
"
|