rustls 0.1.1

Rustls is a modern TLS library written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# This script fetches, builds, and runs the BoringSSL
# TLS test tool ('BoGo') against rustls.

set -xe

sed -i -e 's/\(DANGEROUS_DISABLE_VERIFY: bool = \)false/\1true/g' ../src/verify.rs
cargo test --no-run

if [ ! -e bogo/ ] ; then
  ./fetch-and-build
fi

cd bogo && ./bogo.test -shim-path ../../target/debug/examples/bogo_shim \
     -shim-config ../config.json \
     -test.parallel 1 -num-workers 1 \
     -pipe -allow-unimplemented