diff --git a/README.md b/README.md index 21de27b..886fe20 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,18 @@ # Tinfoil Verifier -## Online In-Browser Verification +Tinfoil's client-side portable remote attestation verifier. -https://tinfoilanalytics.github.io/verifier +[![Build Status](https://github.com/tinfoilanalytics/verifier/workflows/Run%20tests/badge.svg)](https://github.com/tinfoilanalytics/verifier/actions) +[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) -## Local Verification +## Getting Started + +### Online Verification + +#### In Browser +Access the browser-based verifier at https://tinfoilanalytics.github.io/verifier + +#### CLI ```bash go run cmd/manual/main.go \ diff --git a/pkg/client/client.go b/pkg/client/client.go index 7ca2cb6..b2d58c9 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -76,7 +76,7 @@ func (s *SecureClient) VerificationState() *EnclaveState { return s.verifiedState } -// HTTPClient returns a HTTP client that only accepts TLS connections to the verified enclave +// HTTPClient returns an HTTP client that only accepts TLS connections to the verified enclave func (s *SecureClient) HTTPClient() *http.Client { return &http.Client{ Transport: &TLSBoundRoundTripper{s.verifiedState.CertFingerprint},