Skip to content

Commit

Permalink
docs: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
natesales committed Jan 16, 2025
1 parent a3a28f4 commit f8041bc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down

0 comments on commit f8041bc

Please sign in to comment.