-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ea3d316
Showing
12 changed files
with
1,452 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Build and Deploy | ||
on: | ||
push: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build-and-deploy: | ||
concurrency: ci-${{ github.ref }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- run: make | ||
|
||
- name: Deploy | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.idea/ | ||
public/tinfoil-verifier.wasm | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
all: clean patch build | ||
|
||
clean: | ||
rm -rf tinfoil-verifier.wasm | ||
|
||
update-release: | ||
go get github.com/tinfoilanalytics/verifier@$(shell curl -sL https://api.github.com/repos/tinfoilanalytics/verifier/releases/latest | jq -r ".tag_name") | ||
|
||
patch: # This is a hack. We should upstream this | ||
go mod vendor | ||
cp util_unix.go.patched vendor/github.com/in-toto/in-toto-golang/in_toto/util_unix.go | ||
|
||
build: | ||
GOOS=js GOARCH=wasm go build \ | ||
-trimpath \ | ||
-ldflags=-buildid= \ | ||
-o public/tinfoil-verifier.wasm | ||
#cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Tinfoil Verifier for JavaScript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
module github.com/tinfoilanalytics/verifier-js | ||
|
||
go 1.23.2 | ||
|
||
require github.com/tinfoilanalytics/verifier v0.0.2 | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/blocky/nitrite v0.0.1 // indirect | ||
github.com/cyberphone/json-canonicalization v0.0.0-20220623050100-57a0ce2678a7 // indirect | ||
github.com/digitorus/pkcs7 v0.0.0-20230818184609-3a137a874352 // indirect | ||
github.com/digitorus/timestamp v0.0.0-20231217203849-220c5c2851b7 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/fxamacker/cbor/v2 v2.7.0 // indirect | ||
github.com/go-chi/chi v4.1.2+incompatible // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.2 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-openapi/analysis v0.23.0 // indirect | ||
github.com/go-openapi/errors v0.22.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/jsonreference v0.21.0 // indirect | ||
github.com/go-openapi/loads v0.22.0 // indirect | ||
github.com/go-openapi/runtime v0.28.0 // indirect | ||
github.com/go-openapi/spec v0.21.0 // indirect | ||
github.com/go-openapi/strfmt v0.23.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/go-openapi/validate v0.24.0 // indirect | ||
github.com/google/certificate-transparency-go v1.2.1 // indirect | ||
github.com/google/go-containerregistry v0.20.2 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/in-toto/attestation v1.1.0 // indirect | ||
github.com/in-toto/in-toto-golang v0.9.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jedisct1/go-minisign v0.0.0-20211028175153-1c139d1cc84b // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sagikazarmark/locafero v0.4.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sassoftware/relic v7.2.1+incompatible // indirect | ||
github.com/secure-systems-lab/go-securesystemslib v0.8.0 // indirect | ||
github.com/shibumi/go-pathspec v1.3.0 // indirect | ||
github.com/sigstore/protobuf-specs v0.3.2 // indirect | ||
github.com/sigstore/rekor v1.3.6 // indirect | ||
github.com/sigstore/sigstore v1.8.9 // indirect | ||
github.com/sigstore/sigstore-go v0.6.2 // indirect | ||
github.com/sigstore/timestamp-authority v1.2.2 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/cobra v1.8.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.18.2 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/theupdateframework/go-tuf v0.7.0 // indirect | ||
github.com/theupdateframework/go-tuf/v2 v2.0.0 // indirect | ||
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect | ||
github.com/transparency-dev/merkle v0.0.2 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
go.mongodb.org/mongo-driver v1.14.0 // indirect | ||
go.opentelemetry.io/otel v1.27.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.27.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.27.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.27.0 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 // indirect | ||
golang.org/x/mod v0.22.0 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/term v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/klog/v2 v2.120.1 // indirect | ||
) |
Oops, something went wrong.