Imports of package integration

PathSynopsis
bufioPackage 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.
bytesPackage bytes implements functions for the manipulation of byte slices.
contextPackage context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
cryptoPackage crypto collects common cryptographic constants.
crypto/randPackage rand implements a cryptographically secure random number generator.
crypto/sha256Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
encoding/pemPackage pem implements the PEM data encoding, which originated in Privacy Enhanced Mail.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/golang/glogPackage glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup.
github.com/golang/protobuf/ptypesPackage ptypes provides functionality for interacting with well-known types.
github.com/google/certificate-transparency-goPackage ct holds core types and utilities for Certificate Transparency.
github.com/google/certificate-transparency-go/clientPackage 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/jsonclientPackage jsonclient provides a simple client for fetching and parsing JSON CT structures from a log.
github.com/google/certificate-transparency-go/merkletree
github.com/google/certificate-transparency-go/tlsPackage tls implements functionality for dealing with TLS-encoded data, as defined in RFC 5246.
github.com/google/certificate-transparency-go/trillian/ctfePackage 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/x509Package x509 parses X.509-encoded keys and certificates.
github.com/google/certificate-transparency-go/x509/pkixPackage pkix contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP.
github.com/google/trillian
github.com/google/trillian/client
github.com/google/trillian/crypto/keys
github.com/google/trillian/crypto/keys/pem
github.com/google/trillian/crypto/keyspb
github.com/google/trillian/monitoring
github.com/google/trillian/monitoring/prometheus
github.com/google/trillian/storage/testonly
github.com/google/trillian/testonly/integration
github.com/kylelemons/godebug/prettyPackage pretty pretty-prints Go structures.
github.com/prometheus/client_golang/prometheus/promhttpPackage promhttp provides tooling around HTTP servers and clients.
golang.org/x/net/context/ctxhttpPackage ctxhttp provides helper functions for performing context-aware HTTP requests.
io/ioutilPackage ioutil implements some I/O utility functions.
math/randPackage rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
netPackage net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
net/httpPackage http provides HTTP client and server implementations.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
regexpPackage regexp implements regular expression search.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
timePackage time provides functionality for measuring and displaying time.