https://github.com/bsiegert/certificate-transparency-go
Auditing for TLS certificates, Go code.
https://github.com/bsiegert/certificate-transparency-go
Last synced: 5 months ago
JSON representation
Auditing for TLS certificates, Go code.
- Host: GitHub
- URL: https://github.com/bsiegert/certificate-transparency-go
- Owner: bsiegert
- License: apache-2.0
- Fork: true (google/certificate-transparency-go)
- Created: 2018-02-07T14:39:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-07T15:15:33.000Z (over 8 years ago)
- Last Synced: 2024-06-20T15:45:57.246Z (almost 2 years ago)
- Language: Go
- Homepage: http://www.certificate-transparency.org/
- Size: 4.33 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
This is the beginnings of a certificate transparency log
client written in Go, along with a log scanner tool.
You'll need go v1.8 or higher to compile.
# Installation
This go code must be imported into your go workspace before you can
use it, which can be done with:
```bash
go get github.com/google/certificate-transparency-go/client
go get github.com/google/certificate-transparency-go/scanner
# etc.
```
# Building the binaries
To compile the log scanner run:
```bash
go build github.com/google/certificate-transparency-go/scanner/main/scanner.go
```
# Contributing
When sending pull requests, please ensure that everything's been run
through ```gofmt``` beforehand so we can keep everything nice and
tidy.