An open API service indexing awesome lists of open source software.

https://github.com/mattfenwick/tls-tester

Test certs from client and server sides.
https://github.com/mattfenwick/tls-tester

certificates tls

Last synced: about 1 year ago
JSON representation

Test certs from client and server sides.

Awesome Lists containing this project

README

          

# tls-tester

Example project to test certs from client and server sides.

## Usage

Generate certs:

```bash
pushd certs
./generate-certs.sh
popd
```

Run server:

```bash
go run cmd/server/main.go \
certs/end-entity.crt \
certs/end-entity.key
```

Run client:

```bash
./client-tests.sh
```