bufio | Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
bytes | Package bytes implements functions for the manipulation of byte slices. |
context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
crypto | Package crypto collects common cryptographic constants. |
crypto/rand | Package rand implements a cryptographically secure random number generator. |
crypto/sha256 | Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4. |
encoding/pem | Package pem implements the PEM data encoding, which originated in Privacy Enhanced Mail. |
errors | Package errors implements functions to manipulate errors. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/golang/glog | Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. |
github.com/golang/protobuf/ptypes | Package ptypes provides functionality for interacting with well-known types. |
github.com/google/certificate-transparency-go | Package ct holds core types and utilities for Certificate Transparency. |
github.com/google/certificate-transparency-go/client | Package client is a CT log client implementation and contains types and code for interacting with RFC6962-compliant CT Log instances. |
github.com/google/certificate-transparency-go/jsonclient | Package jsonclient provides a simple client for fetching and parsing JSON CT structures from a log. |
github.com/google/certificate-transparency-go/tls | Package tls implements functionality for dealing with TLS-encoded data, as defined in RFC 5246. |
github.com/google/certificate-transparency-go/trillian/ctfe | Package ctfe contains a usage example by providing an implementation of an RFC6962 compatible CT log server using a Trillian log server as backend storage via its GRPC API. |
github.com/google/certificate-transparency-go/trillian/ctfe/configpb | |
github.com/google/certificate-transparency-go/x509 | Package x509 parses X.509-encoded keys and certificates. |
github.com/google/certificate-transparency-go/x509/pkix | Package pkix contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP. |
github.com/google/trillian | Package trillian contains the generated protobuf code for the Trillian API. |
github.com/google/trillian/client | Package client verifies responses from the Trillian log. |
github.com/google/trillian/crypto/keys | Package keys provides access to public and private keys for signing and verification of signatures. |
github.com/google/trillian/crypto/keys/pem | Package pem contains functions for marshaling and unmarshaling keys in PEM format. |
github.com/google/trillian/crypto/keyspb | |
github.com/google/trillian/merkle | |
github.com/google/trillian/merkle/rfc6962 | |
github.com/google/trillian/monitoring | Package monitoring provides monitoring functionality. |
github.com/google/trillian/monitoring/prometheus | Package prometheus provides a Prometheus-based implementation of the MetricFactory abstraction. |
github.com/google/trillian/storage/testonly | Package testonly contains utilities and helpers to use in the storage tests. |
github.com/google/trillian/testonly/integration | Package integration provides test-only code for performing integrated tests of Trillian functionality. |
github.com/kylelemons/godebug/pretty | Package pretty pretty-prints Go structures. |
github.com/prometheus/client_golang/prometheus/promhttp | Package promhttp provides tooling around HTTP servers and clients. |
golang.org/x/net/context/ctxhttp | Package ctxhttp provides helper functions for performing context-aware HTTP requests. |
google.golang.org/genproto/protobuf/field_mask | Package field_mask aliases all exported identifiers in package "google.golang.org/protobuf/types/known/fieldmaskpb". |
google.golang.org/grpc | Package grpc implements an RPC system called gRPC. |
io/ioutil | Package ioutil implements some I/O utility functions. |
math/rand | Package rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work. |
net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
net/http | Package http provides HTTP client and server implementations. |
path/filepath | Package filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
regexp | Package regexp implements regular expression search. |
strconv | Package strconv implements conversions to and from string representations of basic data types. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
time | Package time provides functionality for measuring and displaying time. |