Implement trusted import functionality
Showing
- cmd/infohub/main.go 13 additions, 1 deletioncmd/infohub/main.go
- go.mod 2 additions, 2 deletionsgo.mod
- internal/credential/issuer.go 31 additions, 6 deletionsinternal/credential/issuer.go
- internal/credential/keyfetcher/web_key_fetcher.go 105 additions, 0 deletionsinternal/credential/keyfetcher/web_key_fetcher.go
- internal/service/infohub/infohubfakes/fake_cache.go 87 additions, 0 deletionsinternal/service/infohub/infohubfakes/fake_cache.go
- internal/service/infohub/infohubfakes/fake_credentials.go 84 additions, 0 deletionsinternal/service/infohub/infohubfakes/fake_credentials.go
- internal/service/infohub/service.go 56 additions, 2 deletionsinternal/service/infohub/service.go
- vendor/code.vereign.com/gaiax/tsa/golib/goadec/bytes_decoder.go 0 additions, 0 deletions.../code.vereign.com/gaiax/tsa/golib/goadec/bytes_decoder.go
- vendor/modules.txt 0 additions, 0 deletionsvendor/modules.txt
... | ... | @@ -4,9 +4,11 @@ go 1.17 |
require ( | ||
code.vereign.com/gaiax/tsa/golib v0.0.0-20220617105657-d5117fe7a1f4 | ||
github.com/google/uuid v1.3.0 | ||
github.com/hyperledger/aries-framework-go v0.1.8 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/piprate/json-gold v0.4.1 | ||
github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693 | ||
github.com/stretchr/testify v1.7.1 | ||
go.mongodb.org/mongo-driver v1.9.1 | ||
go.uber.org/zap v1.21.0 | ||
... | ... | @@ -27,7 +29,6 @@ require ( |
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/google/tink/go v1.6.1-0.20210519071714-58be99b3c4d0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gopherjs/gopherjs v1.17.2 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/hyperledger/aries-framework-go/spi v0.0.0-20220322085443-50e8f9bd208b // indirect | ||
... | ... | @@ -44,7 +45,6 @@ require ( |
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/smartystreets/assertions v1.13.0 // indirect | ||
github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693 // indirect | ||
github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.0.2 // indirect | ||
... | ... |
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Please register or sign in to comment