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.
- Host: GitHub
- URL: https://github.com/mattfenwick/tls-tester
- Owner: mattfenwick
- License: mit
- Created: 2021-07-12T11:40:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-02T16:49:36.000Z (over 3 years ago)
- Last Synced: 2024-12-25T15:41:55.708Z (over 1 year ago)
- Topics: certificates, tls
- Language: Go
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```