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/ecdsa | Package ecdsa implements the Elliptic Curve Digital Signature Algorithm, as defined in [FIPS 186-5]. |
crypto/elliptic | Package elliptic implements the standard NIST P-224, P-256, P-384, and P-521 elliptic curves over prime fields. |
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/base64 | Package base64 implements base64 encoding as specified by RFC 4648. |
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/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/scanner | Package scanner holds code for iterating through the contents of a CT log. |
github.com/google/certificate-transparency-go/schedule | Package schedule provides support for periodically running a function. |
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/certificate-transparency-go/x509util | Package x509util includes utility code for working with X.509 certificates from the x509 package. |
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/keyspb | |
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. |
github.com/transparency-dev/merkle | |
github.com/transparency-dev/merkle/proof | |
github.com/transparency-dev/merkle/rfc6962 | |
golang.org/x/net/context/ctxhttp | Package ctxhttp provides helper functions for performing context-aware HTTP requests. |
google.golang.org/grpc | Package grpc implements an RPC system called gRPC. |
google.golang.org/grpc/credentials/insecure | Package insecure provides an implementation of the credentials.TransportCredentials interface which disables transport security. |
google.golang.org/protobuf/types/known/fieldmaskpb | Package fieldmaskpb contains generated types for google/protobuf/field_mask.proto. |
k8s.io/klog/v2 | Package klog contains the following functionality: |
log | Package log implements a simple logging package. |
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. |
os | Package os provides a platform-independent interface to operating system functionality. |
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. |