mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5a1b06d7fd
* run latest vndr so as to collect more LICENSE files * remove unused packages * vendor github.com/philhofer/fwd with LICENSE.md (MIT) * vendor github.com/bsphere/le_go with LICENSE (MIT) Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
25 lines
722 B
Markdown
25 lines
722 B
Markdown
This is the really early beginnings of a certificate transparency log
|
|
client written in Go, along with a log scanner tool.
|
|
|
|
You'll need go v1.1 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:
|
|
|
|
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:
|
|
|
|
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.
|