diff --git a/cmd/sync/main.go b/cmd/sync/main.go index d59f7f9a1fd9ea744c62831f93334a756de1d281..2462f6cefc44c37fb5283c533c24d6e128b1e74a 100644 --- a/cmd/sync/main.go +++ b/cmd/sync/main.go @@ -1,5 +1,5 @@ -// Package main provides a script to clone a repository containing Rego policies -// and add them to a Mongo DB collection +// Package provides a script to clone a repository containing Rego policies +// and add them to a Mongo DB collection. package main import ( @@ -14,7 +14,7 @@ import ( "strings" "time" - git "github.com/go-git/go-git/v5" + "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/plumbing" "github.com/go-git/go-git/v5/plumbing/transport/http" "go.mongodb.org/mongo-driver/bson" diff --git a/go.mod b/go.mod index 6ebaaeedfa8b0d377ee0b3e173e7c7b7161e44c3..73b394277bd2afcdfcef4b85149f59bf2e3c2b90 100644 --- a/go.mod +++ b/go.mod @@ -4,8 +4,11 @@ go 1.17 require ( code.vereign.com/gaiax/tsa/golib v0.0.0-20220321093827-5fdf8f34aad9 + github.com/hashicorp/vault/api v1.0.4 + github.com/hyperledger/aries-framework-go v0.1.8 github.com/kelseyhightower/envconfig v1.4.0 github.com/open-policy-agent/opa v0.38.1 + github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c github.com/stretchr/testify v1.7.0 go.mongodb.org/mongo-driver v1.8.4 go.uber.org/zap v1.21.0 @@ -15,29 +18,56 @@ require ( require ( github.com/OneOfOne/xxhash v1.2.8 // indirect + github.com/VictoriaMetrics/fastcache v1.5.7 // indirect + github.com/btcsuite/btcd v0.22.0-beta // indirect + github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce // indirect + github.com/cespare/xxhash/v2 v2.1.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect github.com/ghodss/yaml v1.0.0 // indirect github.com/go-stack/stack v1.8.0 // indirect github.com/gobwas/glob v0.2.3 // indirect + github.com/golang/protobuf v1.5.2 // indirect github.com/golang/snappy v0.0.4 // 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 v0.0.0-20220221023154-0b2280d3ff96 // indirect github.com/gorilla/websocket v1.5.0 // indirect + github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/hashicorp/go-cleanhttp v0.5.2 // indirect + github.com/hashicorp/go-multierror v1.1.0 // indirect + github.com/hashicorp/go-retryablehttp v0.5.4 // indirect + github.com/hashicorp/go-rootcerts v1.0.2 // indirect + github.com/hashicorp/go-sockaddr v1.0.2 // indirect + github.com/hashicorp/hcl v1.0.0 // indirect + github.com/hashicorp/vault/sdk v0.1.13 // indirect + github.com/hyperledger/aries-framework-go/spi v0.0.0-20220322085443-50e8f9bd208b // indirect github.com/jtolds/gls v4.20.0+incompatible // indirect + github.com/kilic/bls12-381 v0.1.1-0.20210503002446-7b7597926c69 // indirect github.com/klauspost/compress v1.13.6 // indirect github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect + github.com/mitchellh/go-homedir v1.1.0 // indirect + github.com/mitchellh/mapstructure v1.4.3 // indirect + github.com/mr-tron/base58 v1.1.3 // indirect + github.com/multiformats/go-base32 v0.0.3 // indirect + github.com/multiformats/go-multibase v0.0.1 // indirect + github.com/pierrec/lz4 v2.0.5+incompatible // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect + github.com/ryanuber/go-glob v1.0.0 // indirect github.com/sergi/go-diff v1.2.0 // indirect github.com/smartystreets/assertions v1.2.1 // 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 github.com/xdg-go/stringprep v1.0.2 // indirect github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect + github.com/xeipuuv/gojsonschema v1.2.0 // indirect github.com/yashtewari/glob-intersection v0.0.0-20180916065949-5c77d914dd0b // indirect github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect github.com/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect @@ -45,10 +75,14 @@ require ( go.uber.org/multierr v1.6.0 // indirect golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect + golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect golang.org/x/sys v0.0.0-20220317061510-51cd9980dadf // indirect golang.org/x/text v0.3.7 // indirect + golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect golang.org/x/tools v0.1.10 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect + google.golang.org/protobuf v1.27.1 // indirect + gopkg.in/square/go-jose.v2 v2.3.1 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect ) diff --git a/go.sum b/go.sum index a4915180cbb67304dafa024f8660e42f4c4ac619..c4cf59d8bb0948a3697854bf2852dcab06e947bc 100644 --- a/go.sum +++ b/go.sum @@ -55,11 +55,15 @@ github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3 github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.8 h1:31czK/TI9sNkxIKfaUfGlU47BAxQ0ztGgd9vPyqimf8= github.com/OneOfOne/xxhash v1.2.8/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= +github.com/VictoriaMetrics/fastcache v1.5.7 h1:4y6y0G8PRzszQUYIQHHssv/jgPHAb5qQuuDNdCbyAgw= +github.com/VictoriaMetrics/fastcache v1.5.7/go.mod h1:ptDBkNMQI4RtmVo8VS/XwRY6RoTu1dAWCbrk+6WsEM8= +github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= +github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= @@ -67,6 +71,7 @@ github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmV github.com/armon/go-metrics v0.3.10/go.mod h1:4O98XIr/9W0sxpJ8UaYkvjk10Iff7SnFrb4QAOwNTFc= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/aws/aws-sdk-go v1.36.29/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= @@ -74,6 +79,20 @@ github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+Ce github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM= +github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= +github.com/btcsuite/btcd v0.22.0-beta h1:LTDpDKUM5EeOFBPM8IXpinEcmZ6FWfNZbE3lfrfdnWo= +github.com/btcsuite/btcd v0.22.0-beta/go.mod h1:9n5ntfhhHQBIhUvlhDvD3Qg6fRUj4jkN0VB8L8svzOA= +github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA= +github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= +github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce h1:YtWJF7RHm2pYCvA5t0RPmAaLUhREsKuKd+SLhxFbFeQ= +github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce/go.mod h1:0DVlHczLPewLcPGEIeUEzfOJhqGPQ0mJJRDBtD307+o= +github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= +github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVaaLLH7j4eDXPRvw78tMflu7Ie2bzYOH4Y8rRKBY= +github.com/btcsuite/goleveldb v1.0.0/go.mod h1:QiK9vBlgftBg6rWQIj6wFzbPfRjiykIEhBH4obrXJ/I= +github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= +github.com/btcsuite/snappy-go v1.0.0/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= +github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= +github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= github.com/bytecodealliance/wasmtime-go v0.34.0 h1:PaWS0DUusaXaU3aNoSYjag6WmuxjyPYBHgkrC4EXips= github.com/bytecodealliance/wasmtime-go v0.34.0/go.mod h1:q320gUxqyI8yB+ZqRuaJOEnGkAnHh6WtJjMaT2CW4wI= github.com/cenkalti/backoff/v4 v4.1.2/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= @@ -109,9 +128,11 @@ github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwc github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0tEMk218= github.com/dgraph-io/badger/v3 v3.2103.2 h1:dpyM5eCJAtQCBcMCZcT4UBZchuTJgCywerHHgmxfxM8= github.com/dgraph-io/badger/v3 v3.2103.2/go.mod h1:RHo4/GmYcKKh5Lxu63wLEMHJ70Pac2JqZRYGhlyAo2M= github.com/dgraph-io/ristretto v0.1.0 h1:Jv3CGQHp9OjuMBSne1485aDpUkTKEcUqF+jm/LuerPI= @@ -138,6 +159,7 @@ github.com/envoyproxy/protoc-gen-validate v0.6.2/go.mod h1:2t7qjJNvHPx8IjnBOzl9E github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= +github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= github.com/felixge/httpsnoop v1.0.2/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= @@ -156,6 +178,7 @@ github.com/go-ini/ini v1.66.4/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3I github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= +github.com/go-ldap/ldap v3.0.2+incompatible/go.mod h1:qfd9rJvER9Q0/D/Sqn1DfHRoBp40uXYvFoEVrNEPqRc= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= @@ -166,6 +189,7 @@ github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh github.com/go-openapi/swag v0.19.13/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-test/deep v1.0.2-0.20181118220953-042da051cf31/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y= github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= @@ -251,6 +275,8 @@ github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/tink/go v1.6.1-0.20210519071714-58be99b3c4d0 h1:M1kxKye//XPsRJs+DaWPeDgMWK2zuZHWx/easVWhcVc= +github.com/google/tink/go v1.6.1-0.20210519071714-58be99b3c4d0/go.mod h1:IGW53kTgag+st5yPhKKwJ6u2l+SSp5/v9XF7spovjlY= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= @@ -269,28 +295,42 @@ github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBt github.com/hashicorp/consul/api v1.11.0/go.mod h1:XjsvQN+RJGWI2TWy1/kqaE16HrR2J/FWgkYjdZQsX9M= github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= github.com/hashicorp/consul/sdk v0.8.0/go.mod h1:GBvyrGALthsZObzUGsfgHZQDXjg4lOjagTIwIR1vPms= +github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= +github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd/go.mod h1:9bjs9uLqI8l75knNv3lV1kA55veR+WUPSiKIWcQHudI= +github.com/hashicorp/go-hclog v0.8.0/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-hclog v1.0.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-multierror v1.1.0 h1:B9UzwGQJehnUY1yNrnwREHc3fGbC2xefo8g4TbElacI= github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= +github.com/hashicorp/go-plugin v1.0.1/go.mod h1:++UyYGoz3o5w9ZzAdZxtQKrWWP+iqPBn3cQptSMzBuY= github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= +github.com/hashicorp/go-retryablehttp v0.5.4 h1:1BZvpawXoJCWX6pNtow9+rpEj+3itIlutiqnntI6jOE= +github.com/hashicorp/go-retryablehttp v0.5.4/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= +github.com/hashicorp/go-rootcerts v1.0.1/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= +github.com/hashicorp/go-rootcerts v1.0.2 h1:jzhAVGtqPKbwpyCPELlgNWhE1znq+qwJtW5Oi2viEzc= github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= +github.com/hashicorp/go-sockaddr v1.0.2 h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc= +github.com/hashicorp/go-sockaddr v1.0.2/go.mod h1:rB4wwRAUzs07qva3c5SdrY/NEtAUjGlgmH/UkBUC97A= github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-version v1.1.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= @@ -302,12 +342,28 @@ github.com/hashicorp/memberlist v0.3.0/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOn github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= github.com/hashicorp/serf v0.9.5/go.mod h1:UWDWwZeL5cuWDJdl0C6wrvrUwEqtQ4ZKBKKENpqIUyk= github.com/hashicorp/serf v0.9.6/go.mod h1:TXZNMjZQijwlDvp+r0b63xZ45H7JmCmgg4gpTwn9UV4= +github.com/hashicorp/vault/api v1.0.4 h1:j08Or/wryXT4AcHj1oCbMd7IijXcKzYUGw59LGu9onU= +github.com/hashicorp/vault/api v1.0.4/go.mod h1:gDcqh3WGcR1cpF5AJz/B1UFheUEneMoIospckxBxk6Q= +github.com/hashicorp/vault/sdk v0.1.13 h1:mOEPeOhT7jl0J4AMl1E705+BcmeRs1VmKNb9F0sMLy8= +github.com/hashicorp/vault/sdk v0.1.13/go.mod h1:B+hVj7TpuQY1Y/GPbCpffmgd+tSEwvhkWnjtSYCaS2M= +github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM= +github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/hyperledger/aries-framework-go v0.1.8 h1:nKPGTqh+gYWrczJ7mf6clbnDegKPJg7TDis8SYNxcGo= +github.com/hyperledger/aries-framework-go v0.1.8/go.mod h1:7ilurt17sjWruVIBxZSrwn8qUbROq8LXYYY+O7dNxIM= +github.com/hyperledger/aries-framework-go/spi v0.0.0-20220322085443-50e8f9bd208b h1:Fo9mK3eB+TiYu2/hbTWtt0kWg9j1QRqnnbQQqaytJzE= +github.com/hyperledger/aries-framework-go/spi v0.0.0-20220322085443-50e8f9bd208b/go.mod h1:4bD5c5fj5K7rkQurVa/8I8+TfNcI4bxIBzaUNcxTOTg= github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= +github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= @@ -321,8 +377,11 @@ github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7V github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/kelseyhightower/envconfig v1.4.0 h1:Im6hONhd3pLkfDFsbRgu68RDNkGF1r3dvMUtDTo2cv8= github.com/kelseyhightower/envconfig v1.4.0/go.mod h1:cccZRl6mQpaq41TPp5QxidR+Sa3axMbJDNb//FQX6Gg= +github.com/kilic/bls12-381 v0.1.1-0.20210503002446-7b7597926c69 h1:kMJlf8z8wUcpyI+FQJIdGjAhfTww1y0AbQEv86bpVQI= +github.com/kilic/bls12-381 v0.1.1-0.20210503002446-7b7597926c69/go.mod h1:tlkavyke+Ac7h8R3gZIjI5LKBcvMlSWnXNMgT3vZXo8= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/klauspost/compress v1.12.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc= @@ -368,28 +427,46 @@ github.com/miekg/dns v1.1.43 h1:JKfpVSCB84vrAmHzyrsxB5NAr5kLoMXZArPSw7Qlgyg= github.com/miekg/dns v1.1.43/go.mod h1:+evo5L0630/F6ca/Z9+GAqzhjGyn8/c+TBaOyfEl0V4= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= +github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= +github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs= github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= +github.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8= +github.com/mr-tron/base58 v1.1.3 h1:v+sk57XuaCKGXpWtVBX8YJzO7hMGx4Aajh4TQbdEFdc= +github.com/mr-tron/base58 v1.1.3/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= +github.com/multiformats/go-base32 v0.0.3 h1:tw5+NhuwaOjJCC5Pp82QuXbrmLzWg7uxlMFp8Nq/kkI= +github.com/multiformats/go-base32 v0.0.3/go.mod h1:pLiuGC8y0QR3Ue4Zug5UzK9LjgbkL8NSQj0zQ5Nz/AA= +github.com/multiformats/go-multibase v0.0.1 h1:PN9/v21eLywrFWdFNsFKaU04kLJzuYzmrJR+ubhT9qA= +github.com/multiformats/go-multibase v0.0.1/go.mod h1:bja2MqRZ3ggyXtZSEDKpl0uO/gviWFaSteVbWT51qgs= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod h1:kHJEU3ofeGjhHklVoIGuVj85JJwZ6kWPaJwCIxgnFmo= github.com/neelance/sourcemap v0.0.0-20200213170602-2833bce08e4c/go.mod h1:Qr6/a/Q4r9LP1IltGz7tA7iOK1WonHEYhu1HRBA7ZiM= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v1.4.1/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/open-policy-agent/opa v0.38.1 h1:4iSk7OBFe0kiO4Jfs5gWgDP+Hly9eoAs4jUcWG6j0Vo= github.com/open-policy-agent/opa v0.38.1/go.mod h1:z0+Gw2+Re8cEf4/GjHr/wAL1diGy8BkhICIiCUb8y6A= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= @@ -398,6 +475,10 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9 github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/peterh/liner v0.0.0-20170211195444-bf27d3ba8e1d/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= +github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c h1:F4YQvOA7UTccz06y59KLw4C0iXD28hnKUP9R9zeSe8U= +github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c/go.mod h1:OK1z7UgtBZk06n2cDE2OSq1kffmjFFp5/2yhLLCz9UM= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= @@ -407,6 +488,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= +github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 h1:J9b7z+QKAmPf4YLrFg6oQUotqHQeUNWwkvo7jZp1GLU= +github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= @@ -436,6 +519,9 @@ github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/ryanuber/go-glob v1.0.0 h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk= +github.com/ryanuber/go-glob v1.0.0/go.mod h1:807d1WSdnB0XRJzKNil9Om6lcp/3a0v4qIHxIXzX/Yc= github.com/sagikazarmark/crypt v0.3.0/go.mod h1:uD/D+6UF4SrIR1uGEv7bBNkNqLGqUr43MRiaGWX1Nig= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/sergi/go-diff v1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ= @@ -471,6 +557,8 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns= github.com/spf13/viper v1.10.0/go.mod h1:SoyBPwAtKDzypXNDFKN5kzH7ppppbGZtls1UpIy5AsM= +github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693 h1:wD1IWQwAhdWclCwaf6DdzgCAe9Bfz1M+4AHRd7N786Y= +github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693/go.mod h1:6hSY48PjDm4UObWmGLyJE9DxYVKTgR9kbCspXXJEhcU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= @@ -481,6 +569,8 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= +github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8 h1:RBkacARv7qY5laaXGlF4wFB/tk5rnthhPb8oIBGoagY= +github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8/go.mod h1:9PdLyPiZIiW3UopXyRnPYyjUXSpiQNHRLu8fOsR3o8M= github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4= github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= @@ -491,10 +581,13 @@ github.com/xdg-go/scram v1.0.2 h1:akYIkZ28e6A96dkWNJQu3nmCzH3YfwMPQExUYDaRv7w= github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs= github.com/xdg-go/stringprep v1.0.2 h1:6iq84/ryjjeRmMJwxutI51F2GIPlP5BfTvXHeYjyhBc= github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo= github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= github.com/yashtewari/glob-intersection v0.0.0-20180916065949-5c77d914dd0b h1:vVRagRXf67ESqAb72hG2C/ZwI8NtJF2u2V76EsuOHGY= github.com/yashtewari/glob-intersection v0.0.0-20180916065949-5c77d914dd0b/go.mod h1:HptNXiXVDcJjXe9SqMd0v2FsL9f8dz4GnXgltU6q/co= @@ -550,6 +643,7 @@ go.uber.org/zap v1.21.0 h1:WefMeulhovoZ2sYXz7st6K0sLj7bBhpiFaud4r4zST8= go.uber.org/zap v1.21.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw= goa.design/goa/v3 v3.7.0 h1:yQfWNvee4tpR4YyZq5mz+gWhVyN0SDhne+sbS0y9WRE= goa.design/goa/v3 v3.7.0/go.mod h1:ZTtOqLweXERJmfOfdKsUscAWWph+e3aS9WGAOmpxl1k= +golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -557,9 +651,14 @@ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACk golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190911031432-227b76d455e7/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200115085410-6d4e4cb37c7d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= @@ -603,8 +702,10 @@ golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 h1:kQgndtyPBW/JIYERgdxfwMYh3AVStj88WQTlNDi2a+o= golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= +golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -683,12 +784,15 @@ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190129075346-302c3dd5f1cc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -764,6 +868,7 @@ golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuX golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= @@ -774,6 +879,7 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba h1:O8mE0/t419eoIwhTFpKVkHiTs/Igowgfkj25AcZrtiE= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -855,6 +961,7 @@ google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0M google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/api v0.32.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= @@ -881,6 +988,7 @@ google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCID google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -943,9 +1051,11 @@ google.golang.org/genproto v0.0.0-20211203200212-54befc351ae9/go.mod h1:5CzLGKJ6 google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20220317150908-0efb43f6373e/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.22.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= @@ -989,14 +1099,19 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod h1:cuepJuh7vyXfUyUwEgHQXw849cJrilpS5NeIjOWESAw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f h1:BLraFXnmrev5lT+xlilqcH8XK9/i0At2xKjWk4p6zsU= gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.66.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/square/go-jose.v2 v2.3.1 h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4= +gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/internal/clients/vault/client.go b/internal/clients/vault/client.go new file mode 100644 index 0000000000000000000000000000000000000000..4f94b472c134e7ab67a581779e7bd1145818fc69 --- /dev/null +++ b/internal/clients/vault/client.go @@ -0,0 +1,22 @@ +package vault + +import vaultpkg "github.com/hashicorp/vault/api" + +type Client struct { + client *vaultpkg.Client +} + +func New(addr string) (*Client, error) { + cfg := vaultpkg.DefaultConfig() + cfg.Address = addr + client, err := vaultpkg.NewClient(cfg) + if err != nil { + + } + + return &Client{addr: addr} +} + +func (c *Client) Sign(data []byte) ([]byte, error) { + +} diff --git a/internal/regofunc/cache.go b/internal/regofunc/cache.go index f4233e1b4f939832a99d3948571782d4ebf95d29..75b715ff158fc172f42a92e104ad7bfdb079803a 100644 --- a/internal/regofunc/cache.go +++ b/internal/regofunc/cache.go @@ -29,14 +29,14 @@ func (cf *CacheFuncs) CacheGetFunc() (*rego.Function, rego.Builtin3) { Decl: types.NewFunction(types.Args(types.S, types.S, types.S), types.A), Memoize: true, }, - func(bctx rego.BuiltinContext, a, b, c *ast.Term) (*ast.Term, error) { + func(bctx rego.BuiltinContext, parKey, parNamespace, parScope *ast.Term) (*ast.Term, error) { var key, namespace, scope string - if err := ast.As(a.Value, &key); err != nil { + if err := ast.As(parKey.Value, &key); err != nil { return nil, fmt.Errorf("invalid key: %s", err) - } else if err = ast.As(b.Value, &namespace); err != nil { + } else if err = ast.As(parNamespace.Value, &namespace); err != nil { return nil, fmt.Errorf("invalid namespace: %s", err) - } else if err = ast.As(c.Value, &scope); err != nil { + } else if err = ast.As(parScope.Value, &scope); err != nil { return nil, fmt.Errorf("invalid scope: %s", err) } diff --git a/internal/regofunc/did_resolver.go b/internal/regofunc/did_resolver.go index a4b0bf48581b244a04cec007cc4eba4eb7022b5a..683a1c14844bfd264387712a15e37a0c82e8a786 100644 --- a/internal/regofunc/did_resolver.go +++ b/internal/regofunc/did_resolver.go @@ -7,8 +7,6 @@ import ( "github.com/open-policy-agent/opa/ast" "github.com/open-policy-agent/opa/rego" "github.com/open-policy-agent/opa/types" - - "code.vereign.com/gaiax/tsa/golib/errors" ) type DIDResolverFuncs struct { @@ -29,14 +27,14 @@ func (dr *DIDResolverFuncs) ResolveFunc() (*rego.Function, rego.Builtin1) { Decl: types.NewFunction(types.Args(types.S), types.A), Memoize: true, }, - func(bctx rego.BuiltinContext, a *ast.Term) (*ast.Term, error) { + func(bctx rego.BuiltinContext, did *ast.Term) (*ast.Term, error) { var DID string - if err := ast.As(a.Value, &DID); err != nil { + if err := ast.As(did.Value, &DID); err != nil { return nil, fmt.Errorf("invalid DID: %s", err) } if DID == "" { - return nil, errors.New("DID cannot be empty") + return nil, fmt.Errorf("DID cannot be empty") } req, err := http.NewRequest("GET", dr.resolverAddr+"/1.0/identifiers/"+DID, nil) diff --git a/internal/regofunc/jsonld.go b/internal/regofunc/jsonld.go new file mode 100644 index 0000000000000000000000000000000000000000..3c16e287f3ce7e57353f076a08c8fc59b908ee9e --- /dev/null +++ b/internal/regofunc/jsonld.go @@ -0,0 +1,94 @@ +package regofunc + +import ( + "fmt" + "net/http" + "time" + + "github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld" + "github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite" + "github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2018" + "github.com/hyperledger/aries-framework-go/pkg/doc/util" + "github.com/hyperledger/aries-framework-go/pkg/doc/verifiable" + "github.com/open-policy-agent/opa/ast" + "github.com/open-policy-agent/opa/rego" + "github.com/open-policy-agent/opa/types" + "github.com/piprate/json-gold/ld" +) + +type Signer interface { + Sign(data []byte) ([]byte, error) +} + +type JsonLDFuncs struct { + // proof issuer + issuer string + + docLoader *ld.CachingDocumentLoader + + // proofContext is used to generate linked data proof + proofContext *verifiable.LinkedDataProofContext +} + +func NewJsonLDFuncs(signer Signer, issuer string, verificationMethod string, httpClient *http.Client) *JsonLDFuncs { + sigSuite := ed25519signature2018.New( + suite.WithSigner(signer), + suite.WithVerifier(ed25519signature2018.NewPublicKeyVerifier())) + + proofContext := &verifiable.LinkedDataProofContext{ + Suite: sigSuite, + SignatureType: ed25519signature2018.SignatureType, + SignatureRepresentation: verifiable.SignatureProofValue, + VerificationMethod: verificationMethod, // e.g. "did:example:123456#key1" + } + + loader := ld.NewDefaultDocumentLoader(httpClient) + + return &JsonLDFuncs{ + proofContext: proofContext, + docLoader: ld.NewCachingDocumentLoader(loader), + } +} + +// JsonLDTransform converts the given json input to jsonld document +// and adds a signature proof using the signer. +func (j *JsonLDFuncs) JsonLDTransform() (*rego.Function, rego.Builtin1) { + return ®o.Function{ + Name: "jsonld.transform", + Decl: types.NewFunction(types.Args(types.S), types.A), + Memoize: true, + }, + func(bctx rego.BuiltinContext, jsonInput *ast.Term) (*ast.Term, error) { + var data map[string]interface{} + + if err := ast.As(jsonInput.Value, &data); err != nil { + return nil, fmt.Errorf("invalid json input: %s", err) + } + + cred := &verifiable.Credential{ + Context: []string{ + "https://www.w3.org/2018/credentials/v1", + }, + Types: []string{verifiable.VCType}, + Issuer: verifiable.Issuer{ID: j.issuer}, + Issued: &util.TimeWrapper{Time: time.Now()}, + Subject: verifiable.Subject{ + CustomFields: data, + }, + } + + if err := cred.AddLinkedDataProof( + j.proofContext, + jsonld.WithDocumentLoader(j.docLoader), + ); err != nil { + return nil, err + } + + val, err := ast.InterfaceToValue(cred) + if err != nil { + return nil, err + } + + return ast.NewTerm(val), nil + } +} diff --git a/internal/storage/policies_tmp_store.go b/internal/storage/policies_tmp_store.go index 2725a3904bb1b33721a44f8d1c4d913a14c4f1b9..a887b1226fd62ff28b1d0a6430d506fb2d6c1e36 100644 --- a/internal/storage/policies_tmp_store.go +++ b/internal/storage/policies_tmp_store.go @@ -1,9 +1,12 @@ package storage -// Temporary hardcoded policy storage as a simple map. -// When we finalize with Steffen how we're going to store -// and synchronize policy files, this will be replaced with -// real policy store. +// +//import "time" +// +//// Temporary hardcoded policy storage as a simple map. +//// When we finalize with Steffen how we're going to store +//// and synchronize policy files, this will be replaced with +//// real policy store. //var policies = map[string]*Policy{ // "example:example:1.0": { // Filename: "example_1.0.rego", @@ -15,13 +18,42 @@ package storage // Rego: ` // package example.example // -// abc := "hello world" +// default allow = false // -// allow { -// abc == "hello world" +// allow = true { +// input.msg == "hello world" // } +// `, +// }, +// "example:cacheset:1.0": { +// Filename: "cacheset_1.0.rego", +// Name: "cacheset", +// Group: "example", +// Version: "1.0", +// Locked: false, +// LastUpdate: time.Now(), +// Rego: ` +// package example.cacheset +// +// default success = false +// +// success = true { +// msg := cache.set("mykey", "mynamespace", "myscope", input) +// msg == "success" +// } +// `, +// }, +// "example:cacheget:1.0": { +// Filename: "cacheget_1.0.rego", +// Name: "cacheget", +// Group: "example", +// Version: "1.0", +// Locked: false, +// LastUpdate: time.Now(), +// Rego: ` +// package example.cacheget // -// taskID := "deadbeef" +// result := cache.get("mykey", "mynamespace", "myscope") // `, // }, //} diff --git a/vendor/github.com/VictoriaMetrics/fastcache/LICENSE b/vendor/github.com/VictoriaMetrics/fastcache/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..9a8145e5834e4a221253add5f1eeb8ea20193be4 Binary files /dev/null and b/vendor/github.com/VictoriaMetrics/fastcache/LICENSE differ diff --git a/vendor/github.com/VictoriaMetrics/fastcache/README.md b/vendor/github.com/VictoriaMetrics/fastcache/README.md new file mode 100644 index 0000000000000000000000000000000000000000..b353214af69e93df61c04d129981bc40d7d2b377 Binary files /dev/null and b/vendor/github.com/VictoriaMetrics/fastcache/README.md differ diff --git a/vendor/github.com/VictoriaMetrics/fastcache/bigcache.go b/vendor/github.com/VictoriaMetrics/fastcache/bigcache.go new file mode 100644 index 0000000000000000000000000000000000000000..7ca6f483af2ffb71feea0e755acba94128c639f0 Binary files /dev/null and b/vendor/github.com/VictoriaMetrics/fastcache/bigcache.go differ diff --git a/vendor/github.com/VictoriaMetrics/fastcache/fastcache.go b/vendor/github.com/VictoriaMetrics/fastcache/fastcache.go new file mode 100644 index 0000000000000000000000000000000000000000..20a3c02185c0df4eee845e6b1e6c0244a3a1cfb4 Binary files /dev/null and b/vendor/github.com/VictoriaMetrics/fastcache/fastcache.go differ diff --git a/vendor/github.com/VictoriaMetrics/fastcache/file.go b/vendor/github.com/VictoriaMetrics/fastcache/file.go new file mode 100644 index 0000000000000000000000000000000000000000..bab5484e827e242a0f7f609667f992974c13c5b2 Binary files /dev/null and b/vendor/github.com/VictoriaMetrics/fastcache/file.go differ diff --git a/vendor/github.com/VictoriaMetrics/fastcache/malloc_heap.go b/vendor/github.com/VictoriaMetrics/fastcache/malloc_heap.go new file mode 100644 index 0000000000000000000000000000000000000000..79a71832adbd8842e2764952ed094365a86a4db9 Binary files /dev/null and b/vendor/github.com/VictoriaMetrics/fastcache/malloc_heap.go differ diff --git a/vendor/github.com/VictoriaMetrics/fastcache/malloc_mmap.go b/vendor/github.com/VictoriaMetrics/fastcache/malloc_mmap.go new file mode 100644 index 0000000000000000000000000000000000000000..424b79b43ac3812c3113681ca706242e10cc2603 Binary files /dev/null and b/vendor/github.com/VictoriaMetrics/fastcache/malloc_mmap.go differ diff --git a/vendor/github.com/btcsuite/btcd/LICENSE b/vendor/github.com/btcsuite/btcd/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..53ba0c5608dd00a8f89fe6a3090bae0fd8971480 Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/LICENSE differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/README.md b/vendor/github.com/btcsuite/btcd/btcec/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a6dd2cf2851fd287df461671bdd560e1e094a38c Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/README.md differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/btcec.go b/vendor/github.com/btcsuite/btcd/btcec/btcec.go new file mode 100644 index 0000000000000000000000000000000000000000..a2e20f4b3139ca91cdd72a80cfce78612c45f2bf Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/btcec.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/ciphering.go b/vendor/github.com/btcsuite/btcd/btcec/ciphering.go new file mode 100644 index 0000000000000000000000000000000000000000..b18c9b7a306cf8627f8614f42181d2dce5b52480 Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/ciphering.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/doc.go b/vendor/github.com/btcsuite/btcd/btcec/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..fa8346ab0f917f935af034733bc0f726c2aa19f1 Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/doc.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/field.go b/vendor/github.com/btcsuite/btcd/btcec/field.go new file mode 100644 index 0000000000000000000000000000000000000000..98105ed8e48a47cb5b36b9ddc4df94f1eab41eb5 Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/field.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/gensecp256k1.go b/vendor/github.com/btcsuite/btcd/btcec/gensecp256k1.go new file mode 100644 index 0000000000000000000000000000000000000000..1928702da84ffeb2240c15b4faa13b5255b83a3b Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/gensecp256k1.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/precompute.go b/vendor/github.com/btcsuite/btcd/btcec/precompute.go new file mode 100644 index 0000000000000000000000000000000000000000..034cd55332152ad05e501813528c98e12123ce59 Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/precompute.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/privkey.go b/vendor/github.com/btcsuite/btcd/btcec/privkey.go new file mode 100644 index 0000000000000000000000000000000000000000..676a8c3fb010b730fd3ce5efa722294dc275fbd3 Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/privkey.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/pubkey.go b/vendor/github.com/btcsuite/btcd/btcec/pubkey.go new file mode 100644 index 0000000000000000000000000000000000000000..3c9d5d02d21ee9f31f2180e957b3f25c70fb7dfb Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/pubkey.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/secp256k1.go b/vendor/github.com/btcsuite/btcd/btcec/secp256k1.go new file mode 100644 index 0000000000000000000000000000000000000000..1b1b8179e167f5e2d1d5d2c189b9bfec70c387a4 Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/secp256k1.go differ diff --git a/vendor/github.com/btcsuite/btcd/btcec/signature.go b/vendor/github.com/btcsuite/btcd/btcec/signature.go new file mode 100644 index 0000000000000000000000000000000000000000..cdd7cedfb879832db4fd3b8da1011394df3b039c Binary files /dev/null and b/vendor/github.com/btcsuite/btcd/btcec/signature.go differ diff --git a/vendor/github.com/btcsuite/btcutil/LICENSE b/vendor/github.com/btcsuite/btcutil/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..3e7b16791ffedc9c20856d7ef5d2784bbd33cc98 Binary files /dev/null and b/vendor/github.com/btcsuite/btcutil/LICENSE differ diff --git a/vendor/github.com/btcsuite/btcutil/base58/README.md b/vendor/github.com/btcsuite/btcutil/base58/README.md new file mode 100644 index 0000000000000000000000000000000000000000..98dfb1db883940753aa9d94f2e38fd339b51cd0b Binary files /dev/null and b/vendor/github.com/btcsuite/btcutil/base58/README.md differ diff --git a/vendor/github.com/btcsuite/btcutil/base58/alphabet.go b/vendor/github.com/btcsuite/btcutil/base58/alphabet.go new file mode 100644 index 0000000000000000000000000000000000000000..6bb39fef11ccf82148bf1bae8a400523a6a8acf4 Binary files /dev/null and b/vendor/github.com/btcsuite/btcutil/base58/alphabet.go differ diff --git a/vendor/github.com/btcsuite/btcutil/base58/base58.go b/vendor/github.com/btcsuite/btcutil/base58/base58.go new file mode 100644 index 0000000000000000000000000000000000000000..8ee595671875aefa8fc447da74f08abc65512fbd Binary files /dev/null and b/vendor/github.com/btcsuite/btcutil/base58/base58.go differ diff --git a/vendor/github.com/btcsuite/btcutil/base58/base58check.go b/vendor/github.com/btcsuite/btcutil/base58/base58check.go new file mode 100644 index 0000000000000000000000000000000000000000..7cdafeeece16c8c679524e4e7b08269c94843f9e Binary files /dev/null and b/vendor/github.com/btcsuite/btcutil/base58/base58check.go differ diff --git a/vendor/github.com/btcsuite/btcutil/base58/cov_report.sh b/vendor/github.com/btcsuite/btcutil/base58/cov_report.sh new file mode 100644 index 0000000000000000000000000000000000000000..307f05b76ca185754fa8520291c95f9eea55756a Binary files /dev/null and b/vendor/github.com/btcsuite/btcutil/base58/cov_report.sh differ diff --git a/vendor/github.com/btcsuite/btcutil/base58/doc.go b/vendor/github.com/btcsuite/btcutil/base58/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..9a2c0e6e3d15bbd53f64e4f4b54603575acf6a5b Binary files /dev/null and b/vendor/github.com/btcsuite/btcutil/base58/doc.go differ diff --git a/vendor/github.com/cespare/xxhash/v2/LICENSE.txt b/vendor/github.com/cespare/xxhash/v2/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..24b53065f40b5d7d277a64375956ec19cb2123c5 Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/LICENSE.txt differ diff --git a/vendor/github.com/cespare/xxhash/v2/README.md b/vendor/github.com/cespare/xxhash/v2/README.md new file mode 100644 index 0000000000000000000000000000000000000000..792b4a60b346536061e65b9fbaeeb2475be4e3c1 Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/README.md differ diff --git a/vendor/github.com/cespare/xxhash/v2/xxhash.go b/vendor/github.com/cespare/xxhash/v2/xxhash.go new file mode 100644 index 0000000000000000000000000000000000000000..15c835d5417c06d14182c50afc7c5b2ca0b45fce Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/xxhash.go differ diff --git a/vendor/github.com/cespare/xxhash/v2/xxhash_amd64.go b/vendor/github.com/cespare/xxhash/v2/xxhash_amd64.go new file mode 100644 index 0000000000000000000000000000000000000000..ad14b807f4d96913a9c77366a61f075b188554cc Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/xxhash_amd64.go differ diff --git a/vendor/github.com/cespare/xxhash/v2/xxhash_amd64.s b/vendor/github.com/cespare/xxhash/v2/xxhash_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..be8db5bf796015120afa0748cf1c39f2acf4f576 Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/xxhash_amd64.s differ diff --git a/vendor/github.com/cespare/xxhash/v2/xxhash_other.go b/vendor/github.com/cespare/xxhash/v2/xxhash_other.go new file mode 100644 index 0000000000000000000000000000000000000000..4a5a821603e5b8d876d07219882c5e127619f1a3 Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/xxhash_other.go differ diff --git a/vendor/github.com/cespare/xxhash/v2/xxhash_safe.go b/vendor/github.com/cespare/xxhash/v2/xxhash_safe.go new file mode 100644 index 0000000000000000000000000000000000000000..fc9bea7a31f2b7cb8b9e6724735b4166eba2adc6 Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/xxhash_safe.go differ diff --git a/vendor/github.com/cespare/xxhash/v2/xxhash_unsafe.go b/vendor/github.com/cespare/xxhash/v2/xxhash_unsafe.go new file mode 100644 index 0000000000000000000000000000000000000000..376e0ca2e49745ecb087871d2e27afb4ed2d987d Binary files /dev/null and b/vendor/github.com/cespare/xxhash/v2/xxhash_unsafe.go differ diff --git a/vendor/github.com/golang/protobuf/AUTHORS b/vendor/github.com/golang/protobuf/AUTHORS new file mode 100644 index 0000000000000000000000000000000000000000..15167cd746c560e5b3d3b233a169aa64d3e9101e Binary files /dev/null and b/vendor/github.com/golang/protobuf/AUTHORS differ diff --git a/vendor/github.com/golang/protobuf/CONTRIBUTORS b/vendor/github.com/golang/protobuf/CONTRIBUTORS new file mode 100644 index 0000000000000000000000000000000000000000..1c4577e9680611383f46044d17fa343a96997c3c Binary files /dev/null and b/vendor/github.com/golang/protobuf/CONTRIBUTORS differ diff --git a/vendor/github.com/golang/protobuf/LICENSE b/vendor/github.com/golang/protobuf/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..0f646931a4627fbe7c4259f3fb0337d04d798d8e Binary files /dev/null and b/vendor/github.com/golang/protobuf/LICENSE differ diff --git a/vendor/github.com/golang/protobuf/jsonpb/decode.go b/vendor/github.com/golang/protobuf/jsonpb/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..60e82caa9a2d30ac3d1abbd2b9ab6049f33a1a36 Binary files /dev/null and b/vendor/github.com/golang/protobuf/jsonpb/decode.go differ diff --git a/vendor/github.com/golang/protobuf/jsonpb/encode.go b/vendor/github.com/golang/protobuf/jsonpb/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..685c80a62bc91a5744e9f958f4cf2b3855080a41 Binary files /dev/null and b/vendor/github.com/golang/protobuf/jsonpb/encode.go differ diff --git a/vendor/github.com/golang/protobuf/jsonpb/json.go b/vendor/github.com/golang/protobuf/jsonpb/json.go new file mode 100644 index 0000000000000000000000000000000000000000..480e2448de661ad598f50c0232425287a8a617e6 Binary files /dev/null and b/vendor/github.com/golang/protobuf/jsonpb/json.go differ diff --git a/vendor/github.com/golang/protobuf/proto/buffer.go b/vendor/github.com/golang/protobuf/proto/buffer.go new file mode 100644 index 0000000000000000000000000000000000000000..e810e6fea129d47402785bf2850cc8505d51e4c9 Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/buffer.go differ diff --git a/vendor/github.com/golang/protobuf/proto/defaults.go b/vendor/github.com/golang/protobuf/proto/defaults.go new file mode 100644 index 0000000000000000000000000000000000000000..d399bf069c3dfe42082892a2744d4b730c441b23 Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/defaults.go differ diff --git a/vendor/github.com/golang/protobuf/proto/deprecated.go b/vendor/github.com/golang/protobuf/proto/deprecated.go new file mode 100644 index 0000000000000000000000000000000000000000..e8db57e097a1a92dd5998e0724ee4ea40910c168 Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/deprecated.go differ diff --git a/vendor/github.com/golang/protobuf/proto/discard.go b/vendor/github.com/golang/protobuf/proto/discard.go new file mode 100644 index 0000000000000000000000000000000000000000..2187e877fa4a32adaa63a387fed5d4d5ba3d00cb Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/discard.go differ diff --git a/vendor/github.com/golang/protobuf/proto/extensions.go b/vendor/github.com/golang/protobuf/proto/extensions.go new file mode 100644 index 0000000000000000000000000000000000000000..42fc120c972b8399411cf9e5e3bc73644d166525 Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/extensions.go differ diff --git a/vendor/github.com/golang/protobuf/proto/properties.go b/vendor/github.com/golang/protobuf/proto/properties.go new file mode 100644 index 0000000000000000000000000000000000000000..dcdc2202fada8b87c063dbc721c83f44a728dea4 Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/properties.go differ diff --git a/vendor/github.com/golang/protobuf/proto/proto.go b/vendor/github.com/golang/protobuf/proto/proto.go new file mode 100644 index 0000000000000000000000000000000000000000..5aee89c323e0ad4b166ad6e409456c43c16862ea Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/proto.go differ diff --git a/vendor/github.com/golang/protobuf/proto/registry.go b/vendor/github.com/golang/protobuf/proto/registry.go new file mode 100644 index 0000000000000000000000000000000000000000..066b4323b4995c640feaa8a87fa50a72b42124eb Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/registry.go differ diff --git a/vendor/github.com/golang/protobuf/proto/text_decode.go b/vendor/github.com/golang/protobuf/proto/text_decode.go new file mode 100644 index 0000000000000000000000000000000000000000..47eb3e44501d6aa83188385684f5016ec7e4d351 Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/text_decode.go differ diff --git a/vendor/github.com/golang/protobuf/proto/text_encode.go b/vendor/github.com/golang/protobuf/proto/text_encode.go new file mode 100644 index 0000000000000000000000000000000000000000..a31134eeb3b7dc49285ea1215f6e643d72eccb5d Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/text_encode.go differ diff --git a/vendor/github.com/golang/protobuf/proto/wire.go b/vendor/github.com/golang/protobuf/proto/wire.go new file mode 100644 index 0000000000000000000000000000000000000000..d7c28da5a7582d112760893e587cbbb33b2469dc Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/wire.go differ diff --git a/vendor/github.com/golang/protobuf/proto/wrappers.go b/vendor/github.com/golang/protobuf/proto/wrappers.go new file mode 100644 index 0000000000000000000000000000000000000000..398e348599bd33179a11f5a5d7694095353bbe6e Binary files /dev/null and b/vendor/github.com/golang/protobuf/proto/wrappers.go differ diff --git a/vendor/github.com/google/tink/go/LICENSE b/vendor/github.com/google/tink/go/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..d645695673349e3947e8e5ae42332d0ac3164cd7 Binary files /dev/null and b/vendor/github.com/google/tink/go/LICENSE differ diff --git a/vendor/github.com/google/tink/go/aead/BUILD.bazel b/vendor/github.com/google/tink/go/aead/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..e7fd410413c41cae9e91a987abefcad86d8cd4eb Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/aead/aead.go b/vendor/github.com/google/tink/go/aead/aead.go new file mode 100644 index 0000000000000000000000000000000000000000..bc7ec0c0cad240a93e2890bc7ed82699ed850a56 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/aead.go differ diff --git a/vendor/github.com/google/tink/go/aead/aead_factory.go b/vendor/github.com/google/tink/go/aead/aead_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..8cf77c6dec0f352c17cc72669c047b629f323c86 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/aead_factory.go differ diff --git a/vendor/github.com/google/tink/go/aead/aead_key_templates.go b/vendor/github.com/google/tink/go/aead/aead_key_templates.go new file mode 100644 index 0000000000000000000000000000000000000000..e5d502548c55d9eb2efc05a9ec59e46009427d0d Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/aead_key_templates.go differ diff --git a/vendor/github.com/google/tink/go/aead/aes_ctr_hmac_aead_key_manager.go b/vendor/github.com/google/tink/go/aead/aes_ctr_hmac_aead_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..1b4f222a5f75dd00bfc420140152812cb4ed6eec Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/aes_ctr_hmac_aead_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/aead/aes_gcm_key_manager.go b/vendor/github.com/google/tink/go/aead/aes_gcm_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..671c3f8843d15bc3b21f90cdad55b8eb1f7bd805 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/aes_gcm_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/aead/chacha20poly1305_key_manager.go b/vendor/github.com/google/tink/go/aead/chacha20poly1305_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..628a6219745d25ed0be72afe06a23bb2d1ec1583 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/chacha20poly1305_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/aead/kms_envelope_aead.go b/vendor/github.com/google/tink/go/aead/kms_envelope_aead.go new file mode 100644 index 0000000000000000000000000000000000000000..688c3ce421ef9b6e6f744bf44466cf6613b42562 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/kms_envelope_aead.go differ diff --git a/vendor/github.com/google/tink/go/aead/kms_envelope_aead_key_manager.go b/vendor/github.com/google/tink/go/aead/kms_envelope_aead_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..b80605754dc3925c206bc62c304fbed3d9baa284 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/kms_envelope_aead_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/BUILD.bazel b/vendor/github.com/google/tink/go/aead/subtle/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..599234515f67640ce807202b8ac0a77f7e572a61 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/aes_ctr.go b/vendor/github.com/google/tink/go/aead/subtle/aes_ctr.go new file mode 100644 index 0000000000000000000000000000000000000000..a5cdde8cd1f4d5c14e9167bad440c14d979ec826 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/aes_ctr.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/aes_gcm.go b/vendor/github.com/google/tink/go/aead/subtle/aes_gcm.go new file mode 100644 index 0000000000000000000000000000000000000000..62b503f5756df819566770deb2476d0cfb7118f0 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/aes_gcm.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/aes_gcm_siv.go b/vendor/github.com/google/tink/go/aead/subtle/aes_gcm_siv.go new file mode 100644 index 0000000000000000000000000000000000000000..348a7eb56eed1a44f33383816598a4613e593742 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/aes_gcm_siv.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/chacha20poly1305.go b/vendor/github.com/google/tink/go/aead/subtle/chacha20poly1305.go new file mode 100644 index 0000000000000000000000000000000000000000..a325c4b18e7b3068db3f5ff8249ce4194480f9c3 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/chacha20poly1305.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/encrypt_then_authenticate.go b/vendor/github.com/google/tink/go/aead/subtle/encrypt_then_authenticate.go new file mode 100644 index 0000000000000000000000000000000000000000..22c8679ae7dc6ebb4a145e3222fb4ddb3281d6d2 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/encrypt_then_authenticate.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/ind_cpa.go b/vendor/github.com/google/tink/go/aead/subtle/ind_cpa.go new file mode 100644 index 0000000000000000000000000000000000000000..7a661bc9e1bcb2959e8500ed4fac3cf4b98c6745 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/ind_cpa.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/polyval.go b/vendor/github.com/google/tink/go/aead/subtle/polyval.go new file mode 100644 index 0000000000000000000000000000000000000000..e2b66b6291722564ce53939d88c7566cd81c8eff Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/polyval.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/subtle.go b/vendor/github.com/google/tink/go/aead/subtle/subtle.go new file mode 100644 index 0000000000000000000000000000000000000000..ec34154f45be73142f159b5bf4a643f00c1f3dd1 Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/subtle.go differ diff --git a/vendor/github.com/google/tink/go/aead/subtle/xchacha20poly1305.go b/vendor/github.com/google/tink/go/aead/subtle/xchacha20poly1305.go new file mode 100644 index 0000000000000000000000000000000000000000..7cbab130db7be865dcde5df289e9e2090d3a9caf Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/subtle/xchacha20poly1305.go differ diff --git a/vendor/github.com/google/tink/go/aead/xchacha20poly1305_key_manager.go b/vendor/github.com/google/tink/go/aead/xchacha20poly1305_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..3f53b4e45b7b00097eb0922f417d9b6a6ec6ab5a Binary files /dev/null and b/vendor/github.com/google/tink/go/aead/xchacha20poly1305_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/core/cryptofmt/BUILD.bazel b/vendor/github.com/google/tink/go/core/cryptofmt/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..68bbc0a4d62bd1463c92e6355ae7ba2f9fd88a91 Binary files /dev/null and b/vendor/github.com/google/tink/go/core/cryptofmt/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/core/cryptofmt/cryptofmt.go b/vendor/github.com/google/tink/go/core/cryptofmt/cryptofmt.go new file mode 100644 index 0000000000000000000000000000000000000000..b259cb2b2180f6c3391c4149dea331652cdaa161 Binary files /dev/null and b/vendor/github.com/google/tink/go/core/cryptofmt/cryptofmt.go differ diff --git a/vendor/github.com/google/tink/go/core/primitiveset/BUILD.bazel b/vendor/github.com/google/tink/go/core/primitiveset/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..fef3e66dd558768c2aaa6a3ad46a2464a585df5f Binary files /dev/null and b/vendor/github.com/google/tink/go/core/primitiveset/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/core/primitiveset/primitiveset.go b/vendor/github.com/google/tink/go/core/primitiveset/primitiveset.go new file mode 100644 index 0000000000000000000000000000000000000000..c8319d013e45de696a2e854e31b575dc67d6d842 Binary files /dev/null and b/vendor/github.com/google/tink/go/core/primitiveset/primitiveset.go differ diff --git a/vendor/github.com/google/tink/go/core/registry/BUILD.bazel b/vendor/github.com/google/tink/go/core/registry/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..db19783bc0bfe979febdc4becc6af80983a1dbf6 Binary files /dev/null and b/vendor/github.com/google/tink/go/core/registry/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/core/registry/key_manager.go b/vendor/github.com/google/tink/go/core/registry/key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..1aad33f47d83543f0fd263a59de93ce0e9eb280c Binary files /dev/null and b/vendor/github.com/google/tink/go/core/registry/key_manager.go differ diff --git a/vendor/github.com/google/tink/go/core/registry/kms_client.go b/vendor/github.com/google/tink/go/core/registry/kms_client.go new file mode 100644 index 0000000000000000000000000000000000000000..85f67418248c2cc484b6c1909716a801fa8004c8 Binary files /dev/null and b/vendor/github.com/google/tink/go/core/registry/kms_client.go differ diff --git a/vendor/github.com/google/tink/go/core/registry/private_key_manager.go b/vendor/github.com/google/tink/go/core/registry/private_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..018b93fd5297c200c0b50e9d661681c0ce7cbaf4 Binary files /dev/null and b/vendor/github.com/google/tink/go/core/registry/private_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/core/registry/registry.go b/vendor/github.com/google/tink/go/core/registry/registry.go new file mode 100644 index 0000000000000000000000000000000000000000..45d69a8dc5a0612a619af666d6fd67a1fdc3b455 Binary files /dev/null and b/vendor/github.com/google/tink/go/core/registry/registry.go differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/BUILD.bazel b/vendor/github.com/google/tink/go/hybrid/subtle/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..dfc1bb9903422acb560af07d71ec59bf7dec212f Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_dem_helper.go b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_dem_helper.go new file mode 100644 index 0000000000000000000000000000000000000000..56fb5ee7e018dab8be0d67f2acba7588e2b0fc52 Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_dem_helper.go differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_hybrid_decrypt.go b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_hybrid_decrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..d5a3a2660e26fedb0d72a40f15a54e67a86d5942 Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_hybrid_decrypt.go differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_hybrid_encrypt.go b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_hybrid_encrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..ab4a21dd3dc14df45b78f4fc3154dee50927af7d Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_aead_hkdf_hybrid_encrypt.go differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/ecies_hkdf_recipient_kem.go b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_hkdf_recipient_kem.go new file mode 100644 index 0000000000000000000000000000000000000000..829569234c8ae2e36a402056a28bfe3c47b8ed7d Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_hkdf_recipient_kem.go differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/ecies_hkdf_sender_kem.go b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_hkdf_sender_kem.go new file mode 100644 index 0000000000000000000000000000000000000000..0f6b2db195e1e1e4eb65dfc661192f04fab0636a Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/ecies_hkdf_sender_kem.go differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/elliptic_curves.go b/vendor/github.com/google/tink/go/hybrid/subtle/elliptic_curves.go new file mode 100644 index 0000000000000000000000000000000000000000..ff0087823fae7314383381f47382494a1027464c Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/elliptic_curves.go differ diff --git a/vendor/github.com/google/tink/go/hybrid/subtle/subtle.go b/vendor/github.com/google/tink/go/hybrid/subtle/subtle.go new file mode 100644 index 0000000000000000000000000000000000000000..61ba41f74d2f211312fc01e0864f7e18b29a27a2 Binary files /dev/null and b/vendor/github.com/google/tink/go/hybrid/subtle/subtle.go differ diff --git a/vendor/github.com/google/tink/go/insecurecleartextkeyset/BUILD.bazel b/vendor/github.com/google/tink/go/insecurecleartextkeyset/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..0119dfe32d83caf581c9bcbe1d44b41221a5c304 Binary files /dev/null and b/vendor/github.com/google/tink/go/insecurecleartextkeyset/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/insecurecleartextkeyset/insecurecleartextkeyset.go b/vendor/github.com/google/tink/go/insecurecleartextkeyset/insecurecleartextkeyset.go new file mode 100644 index 0000000000000000000000000000000000000000..a0bd250b91d9a2b01cd6bf15de9779d3f4aa7d60 Binary files /dev/null and b/vendor/github.com/google/tink/go/insecurecleartextkeyset/insecurecleartextkeyset.go differ diff --git a/vendor/github.com/google/tink/go/internal/BUILD.bazel b/vendor/github.com/google/tink/go/internal/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..f87a285de1aa946d2302e3e79abe705806ad3819 Binary files /dev/null and b/vendor/github.com/google/tink/go/internal/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/internal/internal.go b/vendor/github.com/google/tink/go/internal/internal.go new file mode 100644 index 0000000000000000000000000000000000000000..582329f073bb96822807e19d6b56b4f6be46e164 Binary files /dev/null and b/vendor/github.com/google/tink/go/internal/internal.go differ diff --git a/vendor/github.com/google/tink/go/keyset/BUILD.bazel b/vendor/github.com/google/tink/go/keyset/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..cee12d48179f1613070020c36dae84ca91283a9c Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/keyset/binary_io.go b/vendor/github.com/google/tink/go/keyset/binary_io.go new file mode 100644 index 0000000000000000000000000000000000000000..7e8e58438a1a7702bf069a4e49425cbbc0eb72f1 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/binary_io.go differ diff --git a/vendor/github.com/google/tink/go/keyset/handle.go b/vendor/github.com/google/tink/go/keyset/handle.go new file mode 100644 index 0000000000000000000000000000000000000000..db069b855e6ff71adffbd045f6026bb1b797bf29 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/handle.go differ diff --git a/vendor/github.com/google/tink/go/keyset/json_io.go b/vendor/github.com/google/tink/go/keyset/json_io.go new file mode 100644 index 0000000000000000000000000000000000000000..aa7a8b3aefe226eabed468a994611331a829db84 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/json_io.go differ diff --git a/vendor/github.com/google/tink/go/keyset/keyset.go b/vendor/github.com/google/tink/go/keyset/keyset.go new file mode 100644 index 0000000000000000000000000000000000000000..8a7be4a49993c7f1102d3714b28d5fbeec0bd664 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/keyset.go differ diff --git a/vendor/github.com/google/tink/go/keyset/manager.go b/vendor/github.com/google/tink/go/keyset/manager.go new file mode 100644 index 0000000000000000000000000000000000000000..9101ae6761417c6205967547ff8dc188c4800248 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/manager.go differ diff --git a/vendor/github.com/google/tink/go/keyset/mem_io.go b/vendor/github.com/google/tink/go/keyset/mem_io.go new file mode 100644 index 0000000000000000000000000000000000000000..cbe87f7864cd797762a4cfc59071be36e774e688 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/mem_io.go differ diff --git a/vendor/github.com/google/tink/go/keyset/reader.go b/vendor/github.com/google/tink/go/keyset/reader.go new file mode 100644 index 0000000000000000000000000000000000000000..de80c30e7166580f9d9c6f6590e74a6111b2a3dc Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/reader.go differ diff --git a/vendor/github.com/google/tink/go/keyset/validation.go b/vendor/github.com/google/tink/go/keyset/validation.go new file mode 100644 index 0000000000000000000000000000000000000000..6c4dbc8498c8bbf09c1c9f726e312c8c19d63e41 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/validation.go differ diff --git a/vendor/github.com/google/tink/go/keyset/writer.go b/vendor/github.com/google/tink/go/keyset/writer.go new file mode 100644 index 0000000000000000000000000000000000000000..16af8396dcdcea361e5a7c1c887a3570d8b413e6 Binary files /dev/null and b/vendor/github.com/google/tink/go/keyset/writer.go differ diff --git a/vendor/github.com/google/tink/go/mac/BUILD.bazel b/vendor/github.com/google/tink/go/mac/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..2ddc527dd1887ab7fa19585d8afdb6617d6ad6d9 Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/mac/aes_cmac_key_manager.go b/vendor/github.com/google/tink/go/mac/aes_cmac_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..8d6518680cfe6504015ff3bea6abf32691ff05f1 Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/aes_cmac_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/mac/hmac_key_manager.go b/vendor/github.com/google/tink/go/mac/hmac_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..debd40ff38a97c6a9a69e874657d6c07569549a5 Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/hmac_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/mac/mac.go b/vendor/github.com/google/tink/go/mac/mac.go new file mode 100644 index 0000000000000000000000000000000000000000..640eae0a46a192acb72403ab501cb4279a4518d5 Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/mac.go differ diff --git a/vendor/github.com/google/tink/go/mac/mac_factory.go b/vendor/github.com/google/tink/go/mac/mac_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..bad77bfff0ef6362ed59ed3fe303d1fe599792b8 Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/mac_factory.go differ diff --git a/vendor/github.com/google/tink/go/mac/mac_key_templates.go b/vendor/github.com/google/tink/go/mac/mac_key_templates.go new file mode 100644 index 0000000000000000000000000000000000000000..c41b461393b360cde0042be5daaed3b8d71fe7ed Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/mac_key_templates.go differ diff --git a/vendor/github.com/google/tink/go/mac/subtle/BUILD.bazel b/vendor/github.com/google/tink/go/mac/subtle/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..a475c2ea043be1fc2f87f417db199a97957b3e34 Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/subtle/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/mac/subtle/cmac.go b/vendor/github.com/google/tink/go/mac/subtle/cmac.go new file mode 100644 index 0000000000000000000000000000000000000000..8229291d5c4e01ba368fd6c00f1fe8fa9b384af5 Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/subtle/cmac.go differ diff --git a/vendor/github.com/google/tink/go/mac/subtle/hmac.go b/vendor/github.com/google/tink/go/mac/subtle/hmac.go new file mode 100644 index 0000000000000000000000000000000000000000..185007e0ab4cd79e7bce3051cc0d6b8cf0e2ff4f Binary files /dev/null and b/vendor/github.com/google/tink/go/mac/subtle/hmac.go differ diff --git a/vendor/github.com/google/tink/go/prf/subtle/BUILD.bazel b/vendor/github.com/google/tink/go/prf/subtle/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..5ccfa6a0097c7333f604c5ed707132af3c28f5f4 Binary files /dev/null and b/vendor/github.com/google/tink/go/prf/subtle/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/prf/subtle/aes_cmac.go b/vendor/github.com/google/tink/go/prf/subtle/aes_cmac.go new file mode 100644 index 0000000000000000000000000000000000000000..0baebf9080dc5793f5d8e070440be367c2b8a8be Binary files /dev/null and b/vendor/github.com/google/tink/go/prf/subtle/aes_cmac.go differ diff --git a/vendor/github.com/google/tink/go/prf/subtle/hkdf.go b/vendor/github.com/google/tink/go/prf/subtle/hkdf.go new file mode 100644 index 0000000000000000000000000000000000000000..9f8516aacbcee22c95a30c94d2b7206cba886273 Binary files /dev/null and b/vendor/github.com/google/tink/go/prf/subtle/hkdf.go differ diff --git a/vendor/github.com/google/tink/go/prf/subtle/hmac.go b/vendor/github.com/google/tink/go/prf/subtle/hmac.go new file mode 100644 index 0000000000000000000000000000000000000000..0d8d1feea61020a4b4da55b229b38386043f4608 Binary files /dev/null and b/vendor/github.com/google/tink/go/prf/subtle/hmac.go differ diff --git a/vendor/github.com/google/tink/go/prf/subtle/subtle.go b/vendor/github.com/google/tink/go/prf/subtle/subtle.go new file mode 100644 index 0000000000000000000000000000000000000000..1261c70d07165a0d0e415207086890a9df7b9a9b Binary files /dev/null and b/vendor/github.com/google/tink/go/prf/subtle/subtle.go differ diff --git a/vendor/github.com/google/tink/go/proto/aes_cmac_go_proto/aes_cmac.pb.go b/vendor/github.com/google/tink/go/proto/aes_cmac_go_proto/aes_cmac.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..6953eb32e5cf15928492628045259b270ef50a0d Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/aes_cmac_go_proto/aes_cmac.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/aes_ctr_go_proto/aes_ctr.pb.go b/vendor/github.com/google/tink/go/proto/aes_ctr_go_proto/aes_ctr.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..21a2906fe74bb7bc77266f62a2952997b577bcb9 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/aes_ctr_go_proto/aes_ctr.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/aes_ctr_hmac_aead_go_proto/aes_ctr_hmac_aead.pb.go b/vendor/github.com/google/tink/go/proto/aes_ctr_hmac_aead_go_proto/aes_ctr_hmac_aead.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..cf4315cfb06c83f39e0d32a416700318da298560 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/aes_ctr_hmac_aead_go_proto/aes_ctr_hmac_aead.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/aes_gcm_go_proto/aes_gcm.pb.go b/vendor/github.com/google/tink/go/proto/aes_gcm_go_proto/aes_gcm.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..84b0d373d33a94004eb3c7d67088964eb0e21649 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/aes_gcm_go_proto/aes_gcm.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/chacha20_poly1305_go_proto/chacha20_poly1305.pb.go b/vendor/github.com/google/tink/go/proto/chacha20_poly1305_go_proto/chacha20_poly1305.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..d4d4a5edd78ece8effbd56a913c6dc79d803bcca Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/chacha20_poly1305_go_proto/chacha20_poly1305.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/common_go_proto/common.pb.go b/vendor/github.com/google/tink/go/proto/common_go_proto/common.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..182b6e5aaebac727c3b7b2b311cb3c99cba36e07 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/common_go_proto/common.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/ecdsa_go_proto/ecdsa.pb.go b/vendor/github.com/google/tink/go/proto/ecdsa_go_proto/ecdsa.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..93ffe421917dcbfc72d30777e35b9c302d8002c1 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/ecdsa_go_proto/ecdsa.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/ed25519_go_proto/ed25519.pb.go b/vendor/github.com/google/tink/go/proto/ed25519_go_proto/ed25519.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..3a53e9db39409f7d279f2c5944f1bbcd6910d9b0 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/ed25519_go_proto/ed25519.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/hmac_go_proto/hmac.pb.go b/vendor/github.com/google/tink/go/proto/hmac_go_proto/hmac.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..0b740828fc12129a22ea2f017c63582d4cd7ef78 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/hmac_go_proto/hmac.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/kms_envelope_go_proto/kms_envelope.pb.go b/vendor/github.com/google/tink/go/proto/kms_envelope_go_proto/kms_envelope.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..41b9e33a97c6a53c9fb7f755fa122e4d50a25477 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/kms_envelope_go_proto/kms_envelope.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/tink_go_proto/tink.pb.go b/vendor/github.com/google/tink/go/proto/tink_go_proto/tink.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..897a10bc46f6bde0a9a58023a95b46106c5d7763 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/tink_go_proto/tink.pb.go differ diff --git a/vendor/github.com/google/tink/go/proto/xchacha20_poly1305_go_proto/xchacha20_poly1305.pb.go b/vendor/github.com/google/tink/go/proto/xchacha20_poly1305_go_proto/xchacha20_poly1305.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..9195eb4b4f5bba48317f19e655c8d6a26e608be4 Binary files /dev/null and b/vendor/github.com/google/tink/go/proto/xchacha20_poly1305_go_proto/xchacha20_poly1305.pb.go differ diff --git a/vendor/github.com/google/tink/go/signature/BUILD.bazel b/vendor/github.com/google/tink/go/signature/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..3f93ac416de42649cf7775b8c740ba8114321087 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/signature/ecdsa_signer_key_manager.go b/vendor/github.com/google/tink/go/signature/ecdsa_signer_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..294f750dba2a05943284fa5f150de123bb964d8b Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/ecdsa_signer_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/signature/ecdsa_verifier_key_manager.go b/vendor/github.com/google/tink/go/signature/ecdsa_verifier_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..df206c1ec40e547a97ed636072facced60ed26bf Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/ecdsa_verifier_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/signature/ed25519_signer_key_manager.go b/vendor/github.com/google/tink/go/signature/ed25519_signer_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..19dcd5c226cabde673f7bb483a43a88529ea748b Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/ed25519_signer_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/signature/ed25519_verifier_key_manager.go b/vendor/github.com/google/tink/go/signature/ed25519_verifier_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..ba96f6998387c7cf4e82187b8cbc3b1b5d43ad0c Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/ed25519_verifier_key_manager.go differ diff --git a/vendor/github.com/google/tink/go/signature/proto.go b/vendor/github.com/google/tink/go/signature/proto.go new file mode 100644 index 0000000000000000000000000000000000000000..5151d2a31da997575eca82104bc310df93862090 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/proto.go differ diff --git a/vendor/github.com/google/tink/go/signature/signature.go b/vendor/github.com/google/tink/go/signature/signature.go new file mode 100644 index 0000000000000000000000000000000000000000..9eda16d88ed6efccbe47d7197d227bae067af11d Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/signature.go differ diff --git a/vendor/github.com/google/tink/go/signature/signature_key_templates.go b/vendor/github.com/google/tink/go/signature/signature_key_templates.go new file mode 100644 index 0000000000000000000000000000000000000000..682778cd64c904ef80fa9902d08c15a0dfc2f0fb Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/signature_key_templates.go differ diff --git a/vendor/github.com/google/tink/go/signature/signer_factory.go b/vendor/github.com/google/tink/go/signature/signer_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..81c6ea84a10809754f80200c76843ef96bf39542 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/signer_factory.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/BUILD.bazel b/vendor/github.com/google/tink/go/signature/subtle/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..9408c291dbf40bacb6682db85f0862cabcb147dd Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/ecdsa.go b/vendor/github.com/google/tink/go/signature/subtle/ecdsa.go new file mode 100644 index 0000000000000000000000000000000000000000..c823d546dd07ee05276597d2e834d890bb44d111 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/ecdsa.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/ecdsa_signer.go b/vendor/github.com/google/tink/go/signature/subtle/ecdsa_signer.go new file mode 100644 index 0000000000000000000000000000000000000000..4f3d790e89fa74b5dd6fab17bda796a303738bb3 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/ecdsa_signer.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/ecdsa_verifier.go b/vendor/github.com/google/tink/go/signature/subtle/ecdsa_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..cf4ecc895cda687ee29ea708b8c9042b3e036d3d Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/ecdsa_verifier.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/ed25519_signer.go b/vendor/github.com/google/tink/go/signature/subtle/ed25519_signer.go new file mode 100644 index 0000000000000000000000000000000000000000..5df6b63b46735950df5395a68f0bb265b762b456 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/ed25519_signer.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/ed25519_verifier.go b/vendor/github.com/google/tink/go/signature/subtle/ed25519_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..1cad4117e52a4989450d71eb4205377c53181422 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/ed25519_verifier.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/encoding.go b/vendor/github.com/google/tink/go/signature/subtle/encoding.go new file mode 100644 index 0000000000000000000000000000000000000000..b5445203b9bf1b8ddd2e829e232884955c8340a7 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/encoding.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/rsa.go b/vendor/github.com/google/tink/go/signature/subtle/rsa.go new file mode 100644 index 0000000000000000000000000000000000000000..24c75e594272334418a2e997afda4d11b2073f91 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/rsa.go differ diff --git a/vendor/github.com/google/tink/go/signature/subtle/subtle.go b/vendor/github.com/google/tink/go/signature/subtle/subtle.go new file mode 100644 index 0000000000000000000000000000000000000000..aba98afc8e20fdf8937ea7c9c0fe6a5c45a6eafb Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/subtle/subtle.go differ diff --git a/vendor/github.com/google/tink/go/signature/verifier_factory.go b/vendor/github.com/google/tink/go/signature/verifier_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..27bd34fc6bd4ccb07c42444de2e5ff56db2751c8 Binary files /dev/null and b/vendor/github.com/google/tink/go/signature/verifier_factory.go differ diff --git a/vendor/github.com/google/tink/go/subtle/BUILD.bazel b/vendor/github.com/google/tink/go/subtle/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..9640035a11ed449860140b1e5cb0ac5388e7bbd9 Binary files /dev/null and b/vendor/github.com/google/tink/go/subtle/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/subtle/hkdf.go b/vendor/github.com/google/tink/go/subtle/hkdf.go new file mode 100644 index 0000000000000000000000000000000000000000..5ffab5343a091700f9f3b05b780e2c2f7160cc71 Binary files /dev/null and b/vendor/github.com/google/tink/go/subtle/hkdf.go differ diff --git a/vendor/github.com/google/tink/go/subtle/random/BUILD.bazel b/vendor/github.com/google/tink/go/subtle/random/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..9a0197b97a5756e380f67ce3207c391f9a29de63 Binary files /dev/null and b/vendor/github.com/google/tink/go/subtle/random/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/subtle/random/random.go b/vendor/github.com/google/tink/go/subtle/random/random.go new file mode 100644 index 0000000000000000000000000000000000000000..1899c54553353304dea3edb0885b6a6c76c08dd7 Binary files /dev/null and b/vendor/github.com/google/tink/go/subtle/random/random.go differ diff --git a/vendor/github.com/google/tink/go/subtle/subtle.go b/vendor/github.com/google/tink/go/subtle/subtle.go new file mode 100644 index 0000000000000000000000000000000000000000..797879ba06ee2523f35a5ce12b4f0fc14ba97c8e Binary files /dev/null and b/vendor/github.com/google/tink/go/subtle/subtle.go differ diff --git a/vendor/github.com/google/tink/go/tink/BUILD.bazel b/vendor/github.com/google/tink/go/tink/BUILD.bazel new file mode 100644 index 0000000000000000000000000000000000000000..8f1c449761b1af87be8a2cae482f548b0bb787f9 Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/BUILD.bazel differ diff --git a/vendor/github.com/google/tink/go/tink/aead.go b/vendor/github.com/google/tink/go/tink/aead.go new file mode 100644 index 0000000000000000000000000000000000000000..31a7be6d0b3b4e5c4fdaf9359caa4254d9a22437 Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/aead.go differ diff --git a/vendor/github.com/google/tink/go/tink/deterministic_aead.go b/vendor/github.com/google/tink/go/tink/deterministic_aead.go new file mode 100644 index 0000000000000000000000000000000000000000..9740cbf8995727f38448d576fd03a3328970a229 Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/deterministic_aead.go differ diff --git a/vendor/github.com/google/tink/go/tink/hybrid_decrypt.go b/vendor/github.com/google/tink/go/tink/hybrid_decrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..4012100700a5c0d1ef659538123bceff45ad2929 Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/hybrid_decrypt.go differ diff --git a/vendor/github.com/google/tink/go/tink/hybrid_encrypt.go b/vendor/github.com/google/tink/go/tink/hybrid_encrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..4e1d87cafe83e7e4fbf39ad8f015d92d1b6317be Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/hybrid_encrypt.go differ diff --git a/vendor/github.com/google/tink/go/tink/mac.go b/vendor/github.com/google/tink/go/tink/mac.go new file mode 100644 index 0000000000000000000000000000000000000000..d411714a9f23523d5e78f39838ed5b37552b607b Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/mac.go differ diff --git a/vendor/github.com/google/tink/go/tink/signer.go b/vendor/github.com/google/tink/go/tink/signer.go new file mode 100644 index 0000000000000000000000000000000000000000..80a81248cdfbb9f6a165ffbd511caded7a106d96 Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/signer.go differ diff --git a/vendor/github.com/google/tink/go/tink/streamingaead.go b/vendor/github.com/google/tink/go/tink/streamingaead.go new file mode 100644 index 0000000000000000000000000000000000000000..0f9fb6db5ec0a1ebf570c7c668eed1e9d23e7995 Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/streamingaead.go differ diff --git a/vendor/github.com/google/tink/go/tink/verifier.go b/vendor/github.com/google/tink/go/tink/verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..83f8680ad27c873324920ea2b1128d4d80fc6891 Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/verifier.go differ diff --git a/vendor/github.com/google/tink/go/tink/version.go b/vendor/github.com/google/tink/go/tink/version.go new file mode 100644 index 0000000000000000000000000000000000000000..9d662e5b0b8190ead1651458448e4b85fdd9996f Binary files /dev/null and b/vendor/github.com/google/tink/go/tink/version.go differ diff --git a/vendor/github.com/hashicorp/errwrap/LICENSE b/vendor/github.com/hashicorp/errwrap/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..c33dcc7c928c646b497b74de395fb53916a7be25 Binary files /dev/null and b/vendor/github.com/hashicorp/errwrap/LICENSE differ diff --git a/vendor/github.com/hashicorp/errwrap/README.md b/vendor/github.com/hashicorp/errwrap/README.md new file mode 100644 index 0000000000000000000000000000000000000000..444df08f8e775967f248994a47d2e070126b12a5 Binary files /dev/null and b/vendor/github.com/hashicorp/errwrap/README.md differ diff --git a/vendor/github.com/hashicorp/errwrap/errwrap.go b/vendor/github.com/hashicorp/errwrap/errwrap.go new file mode 100644 index 0000000000000000000000000000000000000000..a733bef18c0590ec04a0e0aff46acf6f6610cf76 Binary files /dev/null and b/vendor/github.com/hashicorp/errwrap/errwrap.go differ diff --git a/vendor/github.com/hashicorp/go-cleanhttp/LICENSE b/vendor/github.com/hashicorp/go-cleanhttp/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..e87a115e462e1f5fee7905ea914c72e24d2eee42 Binary files /dev/null and b/vendor/github.com/hashicorp/go-cleanhttp/LICENSE differ diff --git a/vendor/github.com/hashicorp/go-cleanhttp/README.md b/vendor/github.com/hashicorp/go-cleanhttp/README.md new file mode 100644 index 0000000000000000000000000000000000000000..036e5313fc8f91fd38136ad16db65ef23ce69d64 Binary files /dev/null and b/vendor/github.com/hashicorp/go-cleanhttp/README.md differ diff --git a/vendor/github.com/hashicorp/go-cleanhttp/cleanhttp.go b/vendor/github.com/hashicorp/go-cleanhttp/cleanhttp.go new file mode 100644 index 0000000000000000000000000000000000000000..fe28d15b6f939db93a34f6f759e8ab520c341cfe Binary files /dev/null and b/vendor/github.com/hashicorp/go-cleanhttp/cleanhttp.go differ diff --git a/vendor/github.com/hashicorp/go-cleanhttp/doc.go b/vendor/github.com/hashicorp/go-cleanhttp/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..05841092a7b34896d87f547ae5044122ee8ef086 Binary files /dev/null and b/vendor/github.com/hashicorp/go-cleanhttp/doc.go differ diff --git a/vendor/github.com/hashicorp/go-cleanhttp/handlers.go b/vendor/github.com/hashicorp/go-cleanhttp/handlers.go new file mode 100644 index 0000000000000000000000000000000000000000..3c845dc0dc6f85976d20fdcf3f4d44bbb22e7608 Binary files /dev/null and b/vendor/github.com/hashicorp/go-cleanhttp/handlers.go differ diff --git a/vendor/github.com/hashicorp/go-multierror/.travis.yml b/vendor/github.com/hashicorp/go-multierror/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..24b80388f72a2e886e8dd925f620e17196a9c4cc Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/.travis.yml differ diff --git a/vendor/github.com/hashicorp/go-multierror/LICENSE b/vendor/github.com/hashicorp/go-multierror/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..82b4de97c7e3246775ac5836680284ea8a628dd9 Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/LICENSE differ diff --git a/vendor/github.com/hashicorp/go-multierror/Makefile b/vendor/github.com/hashicorp/go-multierror/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..b97cd6ed02b5b67f40119c94a14d7dc2fd44d1e7 Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/Makefile differ diff --git a/vendor/github.com/hashicorp/go-multierror/README.md b/vendor/github.com/hashicorp/go-multierror/README.md new file mode 100644 index 0000000000000000000000000000000000000000..e92fa614cd618a5e8f44e3c1813fc8d2fc1e0991 Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/README.md differ diff --git a/vendor/github.com/hashicorp/go-multierror/append.go b/vendor/github.com/hashicorp/go-multierror/append.go new file mode 100644 index 0000000000000000000000000000000000000000..775b6e753e77bc610c91f94b61e4c4a411d1a6ff Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/append.go differ diff --git a/vendor/github.com/hashicorp/go-multierror/flatten.go b/vendor/github.com/hashicorp/go-multierror/flatten.go new file mode 100644 index 0000000000000000000000000000000000000000..aab8e9abec9d86f6ac11394b311e00dfd1dec7ec Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/flatten.go differ diff --git a/vendor/github.com/hashicorp/go-multierror/format.go b/vendor/github.com/hashicorp/go-multierror/format.go new file mode 100644 index 0000000000000000000000000000000000000000..47f13c49a673e2c7e3515b19765d1405b936ed8a Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/format.go differ diff --git a/vendor/github.com/hashicorp/go-multierror/group.go b/vendor/github.com/hashicorp/go-multierror/group.go new file mode 100644 index 0000000000000000000000000000000000000000..9c29efb7f87e911e2787146940ffbf74a447dba9 Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/group.go differ diff --git a/vendor/github.com/hashicorp/go-multierror/multierror.go b/vendor/github.com/hashicorp/go-multierror/multierror.go new file mode 100644 index 0000000000000000000000000000000000000000..d05dd9269873d5e3ea1901224146addf6679496a Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/multierror.go differ diff --git a/vendor/github.com/hashicorp/go-multierror/prefix.go b/vendor/github.com/hashicorp/go-multierror/prefix.go new file mode 100644 index 0000000000000000000000000000000000000000..5c477abe44f80ed57b73796c77bce65b3dbfb15d Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/prefix.go differ diff --git a/vendor/github.com/hashicorp/go-multierror/sort.go b/vendor/github.com/hashicorp/go-multierror/sort.go new file mode 100644 index 0000000000000000000000000000000000000000..fecb14e81c5428e4fb7fe5458c34f641a0e24eb3 Binary files /dev/null and b/vendor/github.com/hashicorp/go-multierror/sort.go differ diff --git a/vendor/github.com/hashicorp/go-retryablehttp/.gitignore b/vendor/github.com/hashicorp/go-retryablehttp/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..4e309e0b326d2ddd3dc8a449423e65aee4ea5915 Binary files /dev/null and b/vendor/github.com/hashicorp/go-retryablehttp/.gitignore differ diff --git a/vendor/github.com/hashicorp/go-retryablehttp/.travis.yml b/vendor/github.com/hashicorp/go-retryablehttp/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..c4fb6d6c8bbc1dcc749a4444565b3acaabab22b0 Binary files /dev/null and b/vendor/github.com/hashicorp/go-retryablehttp/.travis.yml differ diff --git a/vendor/github.com/hashicorp/go-retryablehttp/LICENSE b/vendor/github.com/hashicorp/go-retryablehttp/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..e87a115e462e1f5fee7905ea914c72e24d2eee42 Binary files /dev/null and b/vendor/github.com/hashicorp/go-retryablehttp/LICENSE differ diff --git a/vendor/github.com/hashicorp/go-retryablehttp/Makefile b/vendor/github.com/hashicorp/go-retryablehttp/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..da17640e644ce4edefad5bcf15d100260c1a8fea Binary files /dev/null and b/vendor/github.com/hashicorp/go-retryablehttp/Makefile differ diff --git a/vendor/github.com/hashicorp/go-retryablehttp/README.md b/vendor/github.com/hashicorp/go-retryablehttp/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ccdc7e87cad7f892478f9eb55aaee64643dbab25 Binary files /dev/null and b/vendor/github.com/hashicorp/go-retryablehttp/README.md differ diff --git a/vendor/github.com/hashicorp/go-retryablehttp/client.go b/vendor/github.com/hashicorp/go-retryablehttp/client.go new file mode 100644 index 0000000000000000000000000000000000000000..d5e250a5bfa322f25613691c8589dfe7eb7f2779 Binary files /dev/null and b/vendor/github.com/hashicorp/go-retryablehttp/client.go differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/.travis.yml b/vendor/github.com/hashicorp/go-rootcerts/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..80e1de44e96d3169d95ccb77361b4e7d9348be4b Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/.travis.yml differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/LICENSE b/vendor/github.com/hashicorp/go-rootcerts/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..e87a115e462e1f5fee7905ea914c72e24d2eee42 Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/LICENSE differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/Makefile b/vendor/github.com/hashicorp/go-rootcerts/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..c3989e789f690cb21aee1db639105c41e6054f88 Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/Makefile differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/README.md b/vendor/github.com/hashicorp/go-rootcerts/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6a128e1e14a2987ef3aacc5fb50b7050c2692647 Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/README.md differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/doc.go b/vendor/github.com/hashicorp/go-rootcerts/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..b55cc62848504f925ed89360b1615fdfb3433d97 Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/doc.go differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/rootcerts.go b/vendor/github.com/hashicorp/go-rootcerts/rootcerts.go new file mode 100644 index 0000000000000000000000000000000000000000..69aabd6bc74ade8a16c760c5b68858027785cee9 Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/rootcerts.go differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/rootcerts_base.go b/vendor/github.com/hashicorp/go-rootcerts/rootcerts_base.go new file mode 100644 index 0000000000000000000000000000000000000000..66b1472c4a0434e663395afd08e6559e6e10e9ac Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/rootcerts_base.go differ diff --git a/vendor/github.com/hashicorp/go-rootcerts/rootcerts_darwin.go b/vendor/github.com/hashicorp/go-rootcerts/rootcerts_darwin.go new file mode 100644 index 0000000000000000000000000000000000000000..a9a040657fe3f830ebc2dd0fdf80dec3d5ccc2c8 Binary files /dev/null and b/vendor/github.com/hashicorp/go-rootcerts/rootcerts_darwin.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/.gitignore b/vendor/github.com/hashicorp/go-sockaddr/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..41720b86e3ece98c2a7503b77501a3e6ff8e30b5 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/.gitignore differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/GNUmakefile b/vendor/github.com/hashicorp/go-sockaddr/GNUmakefile new file mode 100644 index 0000000000000000000000000000000000000000..0f3ae1661e2989cd7da61e8198479d560a35802b Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/GNUmakefile differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/LICENSE b/vendor/github.com/hashicorp/go-sockaddr/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..a612ad9813b006ce81d1ee438dd784da99a54007 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/LICENSE differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/README.md b/vendor/github.com/hashicorp/go-sockaddr/README.md new file mode 100644 index 0000000000000000000000000000000000000000..a2e170ae09cffae7f096bc0ecbd16f7aa13caefc Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/README.md differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/doc.go b/vendor/github.com/hashicorp/go-sockaddr/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..90671deb51d84f056a90345510f1b33c10e22f79 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/doc.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/ifaddr.go b/vendor/github.com/hashicorp/go-sockaddr/ifaddr.go new file mode 100644 index 0000000000000000000000000000000000000000..0811b27599056f37e65bb32e3cf92fd779d6c1b8 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/ifaddr.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/ifaddrs.go b/vendor/github.com/hashicorp/go-sockaddr/ifaddrs.go new file mode 100644 index 0000000000000000000000000000000000000000..80f61bef6808b733c59f3a14ca3b01821c4fae29 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/ifaddrs.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/ifattr.go b/vendor/github.com/hashicorp/go-sockaddr/ifattr.go new file mode 100644 index 0000000000000000000000000000000000000000..6984cb4a354d38d9884e4df2a062c17217764de2 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/ifattr.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/ipaddr.go b/vendor/github.com/hashicorp/go-sockaddr/ipaddr.go new file mode 100644 index 0000000000000000000000000000000000000000..b47d15c2016295239ac6f574299602089d5d8e39 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/ipaddr.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/ipaddrs.go b/vendor/github.com/hashicorp/go-sockaddr/ipaddrs.go new file mode 100644 index 0000000000000000000000000000000000000000..6eeb7ddd2f16eef6db1bba23571d20bfa8db013f Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/ipaddrs.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/ipv4addr.go b/vendor/github.com/hashicorp/go-sockaddr/ipv4addr.go new file mode 100644 index 0000000000000000000000000000000000000000..4d395dc954b6546ba9d24b829c92c0b5138780c0 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/ipv4addr.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/ipv6addr.go b/vendor/github.com/hashicorp/go-sockaddr/ipv6addr.go new file mode 100644 index 0000000000000000000000000000000000000000..d7f4121113096e74886152e158feb42d30493911 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/ipv6addr.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/rfc.go b/vendor/github.com/hashicorp/go-sockaddr/rfc.go new file mode 100644 index 0000000000000000000000000000000000000000..02e188f6fe64704b53364e4cfb85519ff522f06f Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/rfc.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info.go b/vendor/github.com/hashicorp/go-sockaddr/route_info.go new file mode 100644 index 0000000000000000000000000000000000000000..2a3ee1db9e86e9c9b21ed1aa2e1f1cfe38b28f45 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/route_info.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info_android.go b/vendor/github.com/hashicorp/go-sockaddr/route_info_android.go new file mode 100644 index 0000000000000000000000000000000000000000..9885915a6bada9b620a566b66f0a4c9958b7bf18 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/route_info_android.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info_bsd.go b/vendor/github.com/hashicorp/go-sockaddr/route_info_bsd.go new file mode 100644 index 0000000000000000000000000000000000000000..705757abc7bb30c2035f11141c92855fefbc8c81 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/route_info_bsd.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info_default.go b/vendor/github.com/hashicorp/go-sockaddr/route_info_default.go new file mode 100644 index 0000000000000000000000000000000000000000..d1b009f653871dde5385197b46703cc569e076e7 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/route_info_default.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info_linux.go b/vendor/github.com/hashicorp/go-sockaddr/route_info_linux.go new file mode 100644 index 0000000000000000000000000000000000000000..b62ce6ecb217895550509e6c42e8a81925d221fb Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/route_info_linux.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go b/vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go new file mode 100644 index 0000000000000000000000000000000000000000..ee8e7984d792c4c81b296f150266b6e343024278 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info_windows.go b/vendor/github.com/hashicorp/go-sockaddr/route_info_windows.go new file mode 100644 index 0000000000000000000000000000000000000000..3da972883e813bd0dd2914fe19ff0ce36a7e8383 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/route_info_windows.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/sockaddr.go b/vendor/github.com/hashicorp/go-sockaddr/sockaddr.go new file mode 100644 index 0000000000000000000000000000000000000000..826c91c2e3d06b37e3b2e27a063fae3c4ba0481a Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/sockaddr.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/sockaddrs.go b/vendor/github.com/hashicorp/go-sockaddr/sockaddrs.go new file mode 100644 index 0000000000000000000000000000000000000000..75fbffb1eab73d3a45d61062f302ef4f8e9f9145 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/sockaddrs.go differ diff --git a/vendor/github.com/hashicorp/go-sockaddr/unixsock.go b/vendor/github.com/hashicorp/go-sockaddr/unixsock.go new file mode 100644 index 0000000000000000000000000000000000000000..f3be3f67e7746eda7b7a60a84d1e5cddacba9310 Binary files /dev/null and b/vendor/github.com/hashicorp/go-sockaddr/unixsock.go differ diff --git a/vendor/github.com/hashicorp/hcl/.gitignore b/vendor/github.com/hashicorp/hcl/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..15586a2b540d6d58644ff6db5af4378c7fe94bdc Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/.gitignore differ diff --git a/vendor/github.com/hashicorp/hcl/.travis.yml b/vendor/github.com/hashicorp/hcl/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..cb63a32161bbfdcc2b810a24c0a8496feb886324 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/.travis.yml differ diff --git a/vendor/github.com/hashicorp/hcl/LICENSE b/vendor/github.com/hashicorp/hcl/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..c33dcc7c928c646b497b74de395fb53916a7be25 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/LICENSE differ diff --git a/vendor/github.com/hashicorp/hcl/Makefile b/vendor/github.com/hashicorp/hcl/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..84fd743f5cc28a747e8004be2adad093e5ca65cf Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/Makefile differ diff --git a/vendor/github.com/hashicorp/hcl/README.md b/vendor/github.com/hashicorp/hcl/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c8223326ddc47958b8b4ccf1a5648d9c07aad8bb Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/README.md differ diff --git a/vendor/github.com/hashicorp/hcl/appveyor.yml b/vendor/github.com/hashicorp/hcl/appveyor.yml new file mode 100644 index 0000000000000000000000000000000000000000..4db0b7112728269c3cfcc877920582b8f630c7bf Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/appveyor.yml differ diff --git a/vendor/github.com/hashicorp/hcl/decoder.go b/vendor/github.com/hashicorp/hcl/decoder.go new file mode 100644 index 0000000000000000000000000000000000000000..bed9ebbe141e38e021463bf5531e77eb0fd8806e Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/decoder.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl.go b/vendor/github.com/hashicorp/hcl/hcl.go new file mode 100644 index 0000000000000000000000000000000000000000..575a20b50b5c1114f5f79ab940fbb388ee3cb0f3 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go b/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go new file mode 100644 index 0000000000000000000000000000000000000000..6e5ef654bb839e1df8e43c5fac5ae949119df14d Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go b/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go new file mode 100644 index 0000000000000000000000000000000000000000..ba07ad42b022ebc7841f38efa8fa2a41cf69df15 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/parser/error.go b/vendor/github.com/hashicorp/hcl/hcl/parser/error.go new file mode 100644 index 0000000000000000000000000000000000000000..5c99381dfbf1332e2cf495efc831b6a3bb74021f Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/parser/error.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go b/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go new file mode 100644 index 0000000000000000000000000000000000000000..64c83bcfb557ea98f230ea60c66eee5d59eeb51a Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go b/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go new file mode 100644 index 0000000000000000000000000000000000000000..624a18fe3a7d7af3a64dc4c3e9145afecba90ded Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go b/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go new file mode 100644 index 0000000000000000000000000000000000000000..5f981eaa2f0f68875d300b9aec553ad8cca3a945 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/token/position.go b/vendor/github.com/hashicorp/hcl/hcl/token/position.go new file mode 100644 index 0000000000000000000000000000000000000000..59c1bb72d4a4ed0c773cc263f2e003d083b507fc Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/token/position.go differ diff --git a/vendor/github.com/hashicorp/hcl/hcl/token/token.go b/vendor/github.com/hashicorp/hcl/hcl/token/token.go new file mode 100644 index 0000000000000000000000000000000000000000..e37c0664ecd3a82484f4d48c3e8f42fbad59b66d Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/hcl/token/token.go differ diff --git a/vendor/github.com/hashicorp/hcl/json/parser/flatten.go b/vendor/github.com/hashicorp/hcl/json/parser/flatten.go new file mode 100644 index 0000000000000000000000000000000000000000..f652d6fe78e4e9aa9c2ae54de693e8d40a8b2780 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/json/parser/flatten.go differ diff --git a/vendor/github.com/hashicorp/hcl/json/parser/parser.go b/vendor/github.com/hashicorp/hcl/json/parser/parser.go new file mode 100644 index 0000000000000000000000000000000000000000..125a5f07298c293260c1140aeea31220ff41486d Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/json/parser/parser.go differ diff --git a/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go b/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go new file mode 100644 index 0000000000000000000000000000000000000000..fe3f0f095026925817450d6feb9092a35fffb322 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go differ diff --git a/vendor/github.com/hashicorp/hcl/json/token/position.go b/vendor/github.com/hashicorp/hcl/json/token/position.go new file mode 100644 index 0000000000000000000000000000000000000000..59c1bb72d4a4ed0c773cc263f2e003d083b507fc Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/json/token/position.go differ diff --git a/vendor/github.com/hashicorp/hcl/json/token/token.go b/vendor/github.com/hashicorp/hcl/json/token/token.go new file mode 100644 index 0000000000000000000000000000000000000000..95a0c3eee653a0a666b16ffa8a8db565636595d8 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/json/token/token.go differ diff --git a/vendor/github.com/hashicorp/hcl/lex.go b/vendor/github.com/hashicorp/hcl/lex.go new file mode 100644 index 0000000000000000000000000000000000000000..d9993c2928a5f8d09236751bcff3ba8f19f80ce4 Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/lex.go differ diff --git a/vendor/github.com/hashicorp/hcl/parse.go b/vendor/github.com/hashicorp/hcl/parse.go new file mode 100644 index 0000000000000000000000000000000000000000..1fca53c4cee2a727fba5fcc5e5c7d1d94411847d Binary files /dev/null and b/vendor/github.com/hashicorp/hcl/parse.go differ diff --git a/vendor/github.com/hashicorp/vault/api/LICENSE b/vendor/github.com/hashicorp/vault/api/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..e87a115e462e1f5fee7905ea914c72e24d2eee42 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/LICENSE differ diff --git a/vendor/github.com/hashicorp/vault/api/auth.go b/vendor/github.com/hashicorp/vault/api/auth.go new file mode 100644 index 0000000000000000000000000000000000000000..da870c111cc40f261283584d7e37b5f9969047bf Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/auth.go differ diff --git a/vendor/github.com/hashicorp/vault/api/auth_token.go b/vendor/github.com/hashicorp/vault/api/auth_token.go new file mode 100644 index 0000000000000000000000000000000000000000..6807c89c3878ddf9e1057adfa1b1602f5ca492e5 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/auth_token.go differ diff --git a/vendor/github.com/hashicorp/vault/api/client.go b/vendor/github.com/hashicorp/vault/api/client.go new file mode 100644 index 0000000000000000000000000000000000000000..fb50f2073983de4ffe728d1db45a90310430574c Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/client.go differ diff --git a/vendor/github.com/hashicorp/vault/api/help.go b/vendor/github.com/hashicorp/vault/api/help.go new file mode 100644 index 0000000000000000000000000000000000000000..321bd597c1a253978914794cf5176e2224a0f1fb Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/help.go differ diff --git a/vendor/github.com/hashicorp/vault/api/logical.go b/vendor/github.com/hashicorp/vault/api/logical.go new file mode 100644 index 0000000000000000000000000000000000000000..d5f946446b627b1255b6dece6cd254adc7109d59 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/logical.go differ diff --git a/vendor/github.com/hashicorp/vault/api/output_string.go b/vendor/github.com/hashicorp/vault/api/output_string.go new file mode 100644 index 0000000000000000000000000000000000000000..b836b77a5afc1e97bc28a29f81036bbb17732869 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/output_string.go differ diff --git a/vendor/github.com/hashicorp/vault/api/plugin_helpers.go b/vendor/github.com/hashicorp/vault/api/plugin_helpers.go new file mode 100644 index 0000000000000000000000000000000000000000..e664d5ebc495daf159935c751a2e7400898c99e2 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/plugin_helpers.go differ diff --git a/vendor/github.com/hashicorp/vault/api/renewer.go b/vendor/github.com/hashicorp/vault/api/renewer.go new file mode 100644 index 0000000000000000000000000000000000000000..1d37a1938212f4747111b1f7c6e1114126d1aed0 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/renewer.go differ diff --git a/vendor/github.com/hashicorp/vault/api/request.go b/vendor/github.com/hashicorp/vault/api/request.go new file mode 100644 index 0000000000000000000000000000000000000000..0ed04220e37a774a1c0d40ea441be4db679cb2cf Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/request.go differ diff --git a/vendor/github.com/hashicorp/vault/api/response.go b/vendor/github.com/hashicorp/vault/api/response.go new file mode 100644 index 0000000000000000000000000000000000000000..aed2a52e0869acebf3b67753f8c222c3c4ec69b8 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/response.go differ diff --git a/vendor/github.com/hashicorp/vault/api/secret.go b/vendor/github.com/hashicorp/vault/api/secret.go new file mode 100644 index 0000000000000000000000000000000000000000..d5b9ce9729ebe30cd94bccb555dd0278da4affd2 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/secret.go differ diff --git a/vendor/github.com/hashicorp/vault/api/ssh.go b/vendor/github.com/hashicorp/vault/api/ssh.go new file mode 100644 index 0000000000000000000000000000000000000000..837eac4ff78dd0150305875465fc2f91952240d5 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/ssh.go differ diff --git a/vendor/github.com/hashicorp/vault/api/ssh_agent.go b/vendor/github.com/hashicorp/vault/api/ssh_agent.go new file mode 100644 index 0000000000000000000000000000000000000000..a4348ca2ed7e7c5b867d0e545d4f25f8b82b7102 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/ssh_agent.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys.go b/vendor/github.com/hashicorp/vault/api/sys.go new file mode 100644 index 0000000000000000000000000000000000000000..5fb111887c0d385ee3d780e40fb503bf8fe6f1b9 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_audit.go b/vendor/github.com/hashicorp/vault/api/sys_audit.go new file mode 100644 index 0000000000000000000000000000000000000000..2448c0367cbd421875d7f599228181523f818b76 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_audit.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_auth.go b/vendor/github.com/hashicorp/vault/api/sys_auth.go new file mode 100644 index 0000000000000000000000000000000000000000..e7a9c222d8f534863352c577ed4708558443e33e Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_auth.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_capabilities.go b/vendor/github.com/hashicorp/vault/api/sys_capabilities.go new file mode 100644 index 0000000000000000000000000000000000000000..64b3951dd101db9ab27a2ef26840889e0b17e5ee Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_capabilities.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_config_cors.go b/vendor/github.com/hashicorp/vault/api/sys_config_cors.go new file mode 100644 index 0000000000000000000000000000000000000000..d153a47c3a496a79b49344ec20d84c9e878b1c81 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_config_cors.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_generate_root.go b/vendor/github.com/hashicorp/vault/api/sys_generate_root.go new file mode 100644 index 0000000000000000000000000000000000000000..66f72dff69ebd6fbf0fbc2ebc47d33954d625f63 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_generate_root.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_health.go b/vendor/github.com/hashicorp/vault/api/sys_health.go new file mode 100644 index 0000000000000000000000000000000000000000..d5d7796008fa842c14246ca9d4d1caa370796555 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_health.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_init.go b/vendor/github.com/hashicorp/vault/api/sys_init.go new file mode 100644 index 0000000000000000000000000000000000000000..0e499c6e3c63743b12abc4359e8121328d31dac0 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_init.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_leader.go b/vendor/github.com/hashicorp/vault/api/sys_leader.go new file mode 100644 index 0000000000000000000000000000000000000000..8846dcdfae9e4dd79ffbad814bcf44bd5fad8aba Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_leader.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_leases.go b/vendor/github.com/hashicorp/vault/api/sys_leases.go new file mode 100644 index 0000000000000000000000000000000000000000..09c9642a95d89ce2b4011415532f9d140494b6f1 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_leases.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_mounts.go b/vendor/github.com/hashicorp/vault/api/sys_mounts.go new file mode 100644 index 0000000000000000000000000000000000000000..354b1ee93465eb7de17f64f3b5f053ed20d22b2c Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_mounts.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_plugins.go b/vendor/github.com/hashicorp/vault/api/sys_plugins.go new file mode 100644 index 0000000000000000000000000000000000000000..0ab022ba0949f0a249095add70391be5a721774c Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_plugins.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_policy.go b/vendor/github.com/hashicorp/vault/api/sys_policy.go new file mode 100644 index 0000000000000000000000000000000000000000..c0c239f960c668419e8c2ec153ba34bd16f84004 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_policy.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_raft.go b/vendor/github.com/hashicorp/vault/api/sys_raft.go new file mode 100644 index 0000000000000000000000000000000000000000..6897dc0a7eb2b93e766d02b6df11d52b8a893c6f Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_raft.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_rekey.go b/vendor/github.com/hashicorp/vault/api/sys_rekey.go new file mode 100644 index 0000000000000000000000000000000000000000..153e486c6d60224a83dd1678c5c91edc05721ff0 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_rekey.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_rotate.go b/vendor/github.com/hashicorp/vault/api/sys_rotate.go new file mode 100644 index 0000000000000000000000000000000000000000..c525feb00d3a50767f92554987de16763c2091fc Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_rotate.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_seal.go b/vendor/github.com/hashicorp/vault/api/sys_seal.go new file mode 100644 index 0000000000000000000000000000000000000000..301d3f26a102e90deb5d4cb53466b17bd2fd0e8c Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_seal.go differ diff --git a/vendor/github.com/hashicorp/vault/api/sys_stepdown.go b/vendor/github.com/hashicorp/vault/api/sys_stepdown.go new file mode 100644 index 0000000000000000000000000000000000000000..55dc6fbcb7bd58d4343ddf741ee1c9b55a63a1b6 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/api/sys_stepdown.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/LICENSE b/vendor/github.com/hashicorp/vault/sdk/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..e87a115e462e1f5fee7905ea914c72e24d2eee42 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/LICENSE differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/compressutil/compress.go b/vendor/github.com/hashicorp/vault/sdk/helper/compressutil/compress.go new file mode 100644 index 0000000000000000000000000000000000000000..356d4548fa4cf1cb2509687bd4b8ecb956e3d17a Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/compressutil/compress.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/consts/agent.go b/vendor/github.com/hashicorp/vault/sdk/helper/consts/agent.go new file mode 100644 index 0000000000000000000000000000000000000000..b62962e37e31385132261b8b87d8451829ffea54 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/consts/agent.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/consts/consts.go b/vendor/github.com/hashicorp/vault/sdk/helper/consts/consts.go new file mode 100644 index 0000000000000000000000000000000000000000..769a7858369dd52730aa82f8b61950770933aae5 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/consts/consts.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/consts/error.go b/vendor/github.com/hashicorp/vault/sdk/helper/consts/error.go new file mode 100644 index 0000000000000000000000000000000000000000..d4e60e54e347f15482fe0be800c6cde8930dba27 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/consts/error.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/consts/plugin_types.go b/vendor/github.com/hashicorp/vault/sdk/helper/consts/plugin_types.go new file mode 100644 index 0000000000000000000000000000000000000000..e0a00e4860c66465f0d95abb877c346c55d313db Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/consts/plugin_types.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/consts/replication.go b/vendor/github.com/hashicorp/vault/sdk/helper/consts/replication.go new file mode 100644 index 0000000000000000000000000000000000000000..f3cafe75f2c2f4e7ded6ce16e1c9dbaf9943cd8e Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/consts/replication.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/hclutil/hcl.go b/vendor/github.com/hashicorp/vault/sdk/helper/hclutil/hcl.go new file mode 100644 index 0000000000000000000000000000000000000000..0b120367d5a6ac8ca91888f976534a509fb8ea5c Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/hclutil/hcl.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/jsonutil/json.go b/vendor/github.com/hashicorp/vault/sdk/helper/jsonutil/json.go new file mode 100644 index 0000000000000000000000000000000000000000..c03a4f8c8d14c486066aa61bac99f1c1eb89717b Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/jsonutil/json.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/parseutil/parseutil.go b/vendor/github.com/hashicorp/vault/sdk/helper/parseutil/parseutil.go new file mode 100644 index 0000000000000000000000000000000000000000..ea8289b4361eb3f23ffd3647bc3e00e8f542fe33 Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/parseutil/parseutil.go differ diff --git a/vendor/github.com/hashicorp/vault/sdk/helper/strutil/strutil.go b/vendor/github.com/hashicorp/vault/sdk/helper/strutil/strutil.go new file mode 100644 index 0000000000000000000000000000000000000000..0069a1377b2bbbdf2d9d3200986e649e34bbd4fe Binary files /dev/null and b/vendor/github.com/hashicorp/vault/sdk/helper/strutil/strutil.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/LICENSE b/vendor/github.com/hyperledger/aries-framework-go/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..8f71f43fee3f78649d238238cbde51e6d7055c82 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/LICENSE differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/LICENSE b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..7a4a3ea2424c09fbe48d455aed1eaa94d9124835 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/LICENSE differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/README.md b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/README.md new file mode 100644 index 0000000000000000000000000000000000000000..4bce9e655f6e43b9603061dc273146fc09f1890d Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/README.md differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/README_custom.md b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/README_custom.md new file mode 100644 index 0000000000000000000000000000000000000000..45858964b66e3d92c6fe0f40db91c3f7110bbcf2 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/README_custom.md differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/arithmetic_decl.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/arithmetic_decl.go new file mode 100644 index 0000000000000000000000000000000000000000..1efd36f73ca8354bfc03d3a55dd7118623e33e2a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/arithmetic_decl.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/arithmetic_fallback.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/arithmetic_fallback.go new file mode 100644 index 0000000000000000000000000000000000000000..dd8e3a99d44747d7f14dc73a283dca0c7c9ed55e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/arithmetic_fallback.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/bls12_381.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/bls12_381.go new file mode 100644 index 0000000000000000000000000000000000000000..8945e3a53056cd671b601f949a27260f8a4e9a15 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/bls12_381.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/field_element.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/field_element.go new file mode 100644 index 0000000000000000000000000000000000000000..4d3e92217cf083e4318398cbbda871c279bd72a9 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/field_element.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp.go new file mode 100644 index 0000000000000000000000000000000000000000..a163a222da5240c19e853dbdab0e4733e6e255c8 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp12.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp12.go new file mode 100644 index 0000000000000000000000000000000000000000..8b5af825ce32fe6505acf561052ec9a76eba61e3 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp12.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp2.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp2.go new file mode 100644 index 0000000000000000000000000000000000000000..aad59d32b3d0ea19c49b2e045c7fb9fdd9b499b0 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp2.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp2_arithmetic_x86.s b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp2_arithmetic_x86.s new file mode 100644 index 0000000000000000000000000000000000000000..d3d542150d00bfab2a9406b4c1bfa13833474db0 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp2_arithmetic_x86.s differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp6.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp6.go new file mode 100644 index 0000000000000000000000000000000000000000..509b0ec56d344313b7c43fe73d978e7347149056 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp6.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp_arithmetic_x86.s b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp_arithmetic_x86.s new file mode 100644 index 0000000000000000000000000000000000000000..04abfe5fe0fd4d526a76a6a69aa463ac5cb42bbe Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp_arithmetic_x86.s differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp_fallback.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp_fallback.go new file mode 100644 index 0000000000000000000000000000000000000000..35954486151594015f0fb1ffc7426e2ea4c4bdef Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fp_fallback.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr.go new file mode 100644 index 0000000000000000000000000000000000000000..bc043fd6a7ae0eb1876ee9574ee6eca4da56a267 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr_arithmetic_x86.s b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr_arithmetic_x86.s new file mode 100644 index 0000000000000000000000000000000000000000..0c421a0213c665c50d835f4ab197fdf49804a491 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr_arithmetic_x86.s differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr_fallback.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr_fallback.go new file mode 100644 index 0000000000000000000000000000000000000000..236d3cf3ae974e0f102ea2a534e07f75bc59fee3 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/fr_fallback.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g1.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g1.go new file mode 100644 index 0000000000000000000000000000000000000000..20e54ffcecb80825d71e9269737b8a8a248106f1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g1.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g1_custom.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g1_custom.go new file mode 100644 index 0000000000000000000000000000000000000000..79eadb6ea3f6b27f24c59e0b128bed54de534a0e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g1_custom.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g2.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g2.go new file mode 100644 index 0000000000000000000000000000000000000000..7c56ffd140659e17efdf54fe151c7c52978a7b94 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/g2.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/glv.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/glv.go new file mode 100644 index 0000000000000000000000000000000000000000..0e6181892804b7caa6b55d420e931fcd23269153 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/glv.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/gt.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/gt.go new file mode 100644 index 0000000000000000000000000000000000000000..3e28bb366fba2fd5b2ac8c51f2a9b4417a1d0113 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/gt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/hash_to_field.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/hash_to_field.go new file mode 100644 index 0000000000000000000000000000000000000000..9e440076916e980e8c37872771e261348d10b264 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/hash_to_field.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/hash_to_field_custom.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/hash_to_field_custom.go new file mode 100644 index 0000000000000000000000000000000000000000..70081373ce4bab03c44fbf4f7e1f799c6a6b0e1d Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/hash_to_field_custom.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/isogeny.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/isogeny.go new file mode 100644 index 0000000000000000000000000000000000000000..6a99e44c09dc5564f20ce5e0f8e5c0efa09812be Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/isogeny.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/pairing.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/pairing.go new file mode 100644 index 0000000000000000000000000000000000000000..abdc0a8790dc14db39d318888a8d7783f69f202f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/pairing.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu.go new file mode 100644 index 0000000000000000000000000000000000000000..0569ff0bb8ab82a4876d11a2d817d99667f7f4f1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu_custom.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu_custom.go new file mode 100644 index 0000000000000000000000000000000000000000..94ee43a0acf7fff38134c17ede0afdcd12ca989e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu_custom.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu_mod.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu_mod.go new file mode 100644 index 0000000000000000000000000000000000000000..81b6f6af954fbee5a77f3e2e5ba9cee4a399a2da Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/swu_mod.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/utils.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..a5fb988e017f616cfeee1660072ceceff50d8abc Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/utils.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/wnaf.go b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/wnaf.go new file mode 100644 index 0000000000000000000000000000000000000000..9ab2d57306652b151805f028e02a188b9496885b Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/internal/third_party/kilic/bls12-381/wnaf.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/common/log/logger.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/common/log/logger.go new file mode 100644 index 0000000000000000000000000000000000000000..fe5259f46d657d484a50bdc4784662671b185a4e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/common/log/logger.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/common/log/provider.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/common/log/provider.go new file mode 100644 index 0000000000000000000000000000000000000000..63fee1869f8480c11fa70d50eae67ea5d389d300 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/common/log/provider.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/api.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/api.go new file mode 100644 index 0000000000000000000000000000000000000000..6dfaf8935f6f366acdbccd43e86c0b03d01ea450 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/api.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/eckey.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/eckey.go new file mode 100644 index 0000000000000000000000000000000000000000..d2b5fe64e5e8c2f6ab57b73f909577d350a31686 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/eckey.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/bbs.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/bbs.go new file mode 100644 index 0000000000000000000000000000000000000000..7036342ad101757dc8589efefb6d8607840e0572 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/bbs.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/fr.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/fr.go new file mode 100644 index 0000000000000000000000000000000000000000..1458375f2ebd1f8e377b1c0ae8355e8e2140a019 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/fr.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/keys.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/keys.go new file mode 100644 index 0000000000000000000000000000000000000000..8214a791a65be8b3b235f41f73643090f8e6ace1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/keys.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/proof_of_knowledge.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/proof_of_knowledge.go new file mode 100644 index 0000000000000000000000000000000000000000..1455912e0df75691d9307a595ba7d5d56f7c75b4 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/proof_of_knowledge.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature.go new file mode 100644 index 0000000000000000000000000000000000000000..2d7b1c28b192a5406921c51c9cb45aff8c5d26b0 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature_message.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature_message.go new file mode 100644 index 0000000000000000000000000000000000000000..bd25fa896013851df7e4b8b8877522cc1f087bde Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature_message.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature_proof.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature_proof.go new file mode 100644 index 0000000000000000000000000000000000000000..d4bd1f414f60f48fc895e40baeb50c6428db2f1e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/signature_proof.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/utils.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..2b9d812f96033a489223dde728086747cbf34660 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/primitive/bbs12381g2pub/utils.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/crypto.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/crypto.go new file mode 100644 index 0000000000000000000000000000000000000000..80184f16c46c62520b15ab7fb1032a224883c41f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/crypto.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/key_wrapper.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/key_wrapper.go new file mode 100644 index 0000000000000000000000000000000000000000..5399920fba430c3e29196a4570e072f198fdbe6e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/key_wrapper.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aead.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aead.go new file mode 100644 index 0000000000000000000000000000000000000000..9b68150e8e148052a199d2061c41b62354eb11e3 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aead.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aead_key_templates.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aead_key_templates.go new file mode 100644 index 0000000000000000000000000000000000000000..5035490e5086d0230d6164094e575536cfca934f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aead_key_templates.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aes_cbc_hmac_aead_key_manager.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aes_cbc_hmac_aead_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..240d8a1094423f89d080e4d63c93c3658bde8905 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/aes_cbc_hmac_aead_key_manager.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/aes_cbc.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/aes_cbc.go new file mode 100644 index 0000000000000000000000000000000000000000..4c3a85542639e4c36a3520bae191fdd6d4358dbf Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/aes_cbc.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/gojose_aes_cbc_hmac.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/gojose_aes_cbc_hmac.go new file mode 100644 index 0000000000000000000000000000000000000000..7c367de9df41111eb52847d3a27712a6a4fcbe8a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/gojose_aes_cbc_hmac.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/subtle.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/subtle.go new file mode 100644 index 0000000000000000000000000000000000000000..0422c36d3b7a7b3e4c81a66e42165e826280fa9e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/aead/subtle/subtle.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/api/signer.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/api/signer.go new file mode 100644 index 0000000000000000000000000000000000000000..ae5679580115a83dee66dd45c02c0016a8fb5b7e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/api/signer.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/api/verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/api/verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..ccbea30fa0d3a85c64a8ba3b983b234d2fc5e377 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/api/verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs.go new file mode 100644 index 0000000000000000000000000000000000000000..e931733405eb8bd42b5bfac11a25771b1e3bdbad Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_key_template.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_key_template.go new file mode 100644 index 0000000000000000000000000000000000000000..98cbbb1950b94dcc1ca9995c0d7ce8502363cfc7 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_key_template.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_signer_factory.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_signer_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..812cbc0731bc9095d1a02e129fd4110689b6e274 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_signer_factory.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_signer_key_manager.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_signer_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..a3210ba8d2f60a1ac18e0daad0f06a38a01e6abb Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_signer_key_manager.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_verifier_factory.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_verifier_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..16d707585f6d0bbe827bbe30fb768a5e21e13a1f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_verifier_factory.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_verifier_key_manager.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_verifier_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..068d8a06bacc4234064d16373946515717815efc Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/bbs_verifier_key_manager.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/subtle/bls12381g2_signer.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/subtle/bls12381g2_signer.go new file mode 100644 index 0000000000000000000000000000000000000000..c1d11cf9c9af2cc806506642207c1b493ddbfa01 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/subtle/bls12381g2_signer.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/subtle/bls12381g2_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/subtle/bls12381g2_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..ce181dda1b6f9a5ff29dcbc2ee0d21d7c2b23734 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/bbs/subtle/bls12381g2_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/aead_enc_helper.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/aead_enc_helper.go new file mode 100644 index 0000000000000000000000000000000000000000..d2fb521d4e259af3e0db86eb7c7620631e434fb1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/aead_enc_helper.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/api/composite_decrypt.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/api/composite_decrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..f298d51a54080f8ee5ed7e3065fab36c951a8f90 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/api/composite_decrypt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/api/composite_encrypt.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/api/composite_encrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..3a4c08292bcda2236b563a5ff9faef1c1558f68b Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/api/composite_encrypt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/composite_common.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/composite_common.go new file mode 100644 index 0000000000000000000000000000000000000000..df9f07800911aab6dc26bfd318383f14ae4ff597 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/composite_common.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh.go new file mode 100644 index 0000000000000000000000000000000000000000..eb855e61b1d11c636a68bd60860afb821db8fec9 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_decrypt_factory.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_decrypt_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..2e052d232f39c454628bb31ef405e33a0e606c2e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_decrypt_factory.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_encrypt_factory.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_encrypt_factory.go new file mode 100644 index 0000000000000000000000000000000000000000..0b29b1af640ae90a4cb3138ca0d32c890c56b68f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_encrypt_factory.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_key_template.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_key_template.go new file mode 100644 index 0000000000000000000000000000000000000000..90ece48b84519a3666ab0dda0d97809790d96beb Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_key_template.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_nistpkw_private_key_manager.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_nistpkw_private_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..45f8768e2de801550bca26f22d1a63a40b416191 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_nistpkw_private_key_manager.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_nistpkw_public_key_manager.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_nistpkw_public_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..67502e62c8fa8eea40ed26bdcaeda91ce9283c53 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_nistpkw_public_key_manager.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_x25519kw_private_key_manager.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_x25519kw_private_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..a031c5a08d5c23a5b94eddf5a06bbdd0c8ed5c93 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_x25519kw_private_key_manager.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_x25519kw_public_key_manager.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_x25519kw_public_key_manager.go new file mode 100644 index 0000000000000000000000000000000000000000..a8596650e09eb726d860c4cb4d8776774967efb7 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/ecdh_x25519kw_public_key_manager.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/subtle/ecdh_aes_aead_composite_decrypt.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/subtle/ecdh_aes_aead_composite_decrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..c675f811cc07e518de43a4e968838fcabfa88a81 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/subtle/ecdh_aes_aead_composite_decrypt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/subtle/ecdh_aes_aead_composite_encrypt.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/subtle/ecdh_aes_aead_composite_encrypt.go new file mode 100644 index 0000000000000000000000000000000000000000..3068bb1c261e815f4f4fba27060e773c8271ce6c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/ecdh/subtle/ecdh_aes_aead_composite_encrypt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/keyio/composite_key_export.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/keyio/composite_key_export.go new file mode 100644 index 0000000000000000000000000000000000000000..fe55154926aa54437657256e8d8f90d6c63ac8fe Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/keyio/composite_key_export.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/register_ecdh_aead_enc_helper.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/register_ecdh_aead_enc_helper.go new file mode 100644 index 0000000000000000000000000000000000000000..bdd0c4b0510e193fbd105987f01696c3f4a3ef49 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/composite/register_ecdh_aead_enc_helper.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/aes_cbc_go_proto/aes_cbc.pb.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/aes_cbc_go_proto/aes_cbc.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..84739ac0985653fc01f95bafa9e776adbaf593cd Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/aes_cbc_go_proto/aes_cbc.pb.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/aes_cbc_hmac_aead_go_proto/aes_cbc_hmac_aead.pb.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/aes_cbc_hmac_aead_go_proto/aes_cbc_hmac_aead.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..0a5d15b7c09363717b69d06fdf4a8dadf6625fd6 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/aes_cbc_hmac_aead_go_proto/aes_cbc_hmac_aead.pb.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/bbs_go_proto/bbs.pb.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/bbs_go_proto/bbs.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..7d33b9ee4917e537997db23a0ab2cbf4a1f23ba0 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/bbs_go_proto/bbs.pb.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/ecdh_aead_go_proto/ecdh_aead.pb.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/ecdh_aead_go_proto/ecdh_aead.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..978bae73392a66176a24456beef4bd260c718c01 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/primitive/proto/ecdh_aead_go_proto/ecdh_aead.pb.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/alice_epk_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/alice_epk_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..2ef436d8a5f74fdfae37954d7bd9ed33eeb49ee5 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/alice_epk_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/alice_key_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/alice_key_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..49d3c5a9bb30075cb462bf3b7cabf6fd966b3146 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/alice_key_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/bob_key_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/bob_key_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..8ac4bd65f3bc665c11413383f17575748efa26a8 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/bob_key_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/charlie_key_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/charlie_key_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..6eb8865c56822bee59df81ffaf08b9f4ee3b9d09 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/charlie_key_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/ecdh_1pu_bob.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/ecdh_1pu_bob.json new file mode 100644 index 0000000000000000000000000000000000000000..2eaaecaa152755d9297fbd09cdeedd5b5a36209a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/ecdh_1pu_bob.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/ecdh_1pu_charlie.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/ecdh_1pu_charlie.json new file mode 100644 index 0000000000000000000000000000000000000000..f843f2a1ece0489bb83a1c7e74005b8a5fbb7185 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/ecdh_1pu_charlie.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/protected_headers_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/protected_headers_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..0e63035b29669ec14b09e5ffad24d29868af0bf1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/testdata/protected_headers_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/unwrap_support.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/unwrap_support.go new file mode 100644 index 0000000000000000000000000000000000000000..0019f7075a85407e3eb1f0f78079937bbd4d16c9 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/unwrap_support.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/wrap_support.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/wrap_support.go new file mode 100644 index 0000000000000000000000000000000000000000..22df984dd303de2c315c790ffb263371e4b6a5f9 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/tinkcrypto/wrap_support.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/wrapkey_opts.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/wrapkey_opts.go new file mode 100644 index 0000000000000000000000000000000000000000..66f6a0847390444883b9940e0766e418c2e0e12a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/crypto/wrapkey_opts.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/doc.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..70a4a6bfe40a52dc3d954c9f197907b1d08ce6ad Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/doc.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/helpers.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/helpers.go new file mode 100644 index 0000000000000000000000000000000000000000..2a157fa6f0120af960581b743391bced62791701 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/helpers.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/schema.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/schema.go new file mode 100644 index 0000000000000000000000000000000000000000..47f8871005478d5267d66cf5977f891408a804f0 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/schema.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/serialize_default.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/serialize_default.go new file mode 100644 index 0000000000000000000000000000000000000000..0999dc9aee1520e19b3c22321fc25eef4757c421 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/serialize_default.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/serialize_interop.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/serialize_interop.go new file mode 100644 index 0000000000000000000000000000000000000000..7679b2c123ca7489f9a69f12ec8593867b44fb0a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/serialize_interop.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/invalid_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/invalid_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..7923cdbf61dff587606fa4107025768876d45a28 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/invalid_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..5c70757778cba59ea383ea840d124dc937190aa6 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_resolution.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_resolution.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..20a0656a13a296ce6c54384c476c80f38995aa72 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_resolution.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_v0.11.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_v0.11.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..e9b46214b222a2bfbfddca81d5d4192fd4c0406d Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_v0.11.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_with_base.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_with_base.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..a2c73b3445d8536650a28a297e62e296f3bd6d71 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/did/testdata/valid_doc_with_base.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/common.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/common.go new file mode 100644 index 0000000000000000000000000000000000000000..aafd18ae8501b730922b6ae7e4d71d1f193c1166 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/common.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/decrypter.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/decrypter.go new file mode 100644 index 0000000000000000000000000000000000000000..07df8d45973f6a4294bfcce8874a433f8a7dc8e3 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/decrypter.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/encrypter.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/encrypter.go new file mode 100644 index 0000000000000000000000000000000000000000..7662fba4c938a092ed6582f3b203aac9c936fd33 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/encrypter.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwe.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwe.go new file mode 100644 index 0000000000000000000000000000000000000000..d0c31da0e5566d7acee7cf651e7975d38b0d0d75 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwe.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwk/jwk.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwk/jwk.go new file mode 100644 index 0000000000000000000000000000000000000000..8e7c697ccfe09cfc889d7e7afa833733016a5a74 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwk/jwk.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwk/jwksupport/jwk.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwk/jwksupport/jwk.go new file mode 100644 index 0000000000000000000000000000000000000000..eb2b184bce90793759abcd819791a2e0cb8998fe Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jwk/jwksupport/jwk.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jws.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jws.go new file mode 100644 index 0000000000000000000000000000000000000000..8e481a7d8c5fc255ff306817330bc2639009e97c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/jws.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/kid/resolver/resolver.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/kid/resolver/resolver.go new file mode 100644 index 0000000000000000000000000000000000000000..8363fb3221b1f1cb831ec6befe1d4b825aed8591 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/kid/resolver/resolver.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/alice_key_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/alice_key_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..49d3c5a9bb30075cb462bf3b7cabf6fd966b3146 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/alice_key_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/bob_key_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/bob_key_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..8ac4bd65f3bc665c11413383f17575748efa26a8 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/bob_key_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/charlie_key_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/charlie_key_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..6eb8865c56822bee59df81ffaf08b9f4ee3b9d09 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/charlie_key_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/jwe_ref.json b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/jwe_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..dc8d9124d3f3a3cdec5b895f324e00e891438a94 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jose/testdata/jwe_ref.json differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jwt/jwt.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jwt/jwt.go new file mode 100644 index 0000000000000000000000000000000000000000..63c47c44d6384c353d0cc20a886620d9a9f2b0d4 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jwt/jwt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jwt/verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jwt/verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..022b1bf1a7718d023a552ba2f338c297f04d7807 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/jwt/verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/processor.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/processor.go new file mode 100644 index 0000000000000000000000000000000000000000..c0f0a22d017c19373ab982dad8bbf64faec634fb Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/processor.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf.nq new file mode 100644 index 0000000000000000000000000000000000000000..bb39c797c20e6c3e3339a067b9f31adb53db264e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf_all_filtered.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf_all_filtered.nq new file mode 100644 index 0000000000000000000000000000000000000000..dbd202f767a737540e483b224f82a3d695020e40 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf_all_filtered.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf_filtered.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf_filtered.nq new file mode 100644 index 0000000000000000000000000000000000000000..385664a5bda199c20c5ebabaab7132c36b7a5c5b Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_incorrect_rdf_filtered.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential.nq new file mode 100644 index 0000000000000000000000000000000000000000..ced5880fa9fc8efac8d5bfb35bef10ada99ee4d2 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_2.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_2.nq new file mode 100644 index 0000000000000000000000000000000000000000..1e5b637ce32090035001686392961cd1fd54520e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_2.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_filtered.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_filtered.nq new file mode 100644 index 0000000000000000000000000000000000000000..c60d151aaaada12a2990a3337615debf35c51295 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_filtered.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_not_filtered.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_not_filtered.nq new file mode 100644 index 0000000000000000000000000000000000000000..3306e374d53760c918fd9cb9c8a3a53f6cc5c0c8 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_json_credential_not_filtered.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_jsonld_proof.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_jsonld_proof.nq new file mode 100644 index 0000000000000000000000000000000000000000..870056d4db09fd23ffc46f01a2c303dff460f9f3 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_jsonld_proof.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp.nq new file mode 100644 index 0000000000000000000000000000000000000000..e26da36f8fc67c042a12c859e88356cb0a1787f7 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_2.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_2.nq new file mode 100644 index 0000000000000000000000000000000000000000..36e8ee4c4a02faf74db49e3a68197383957b4e00 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_2.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_extra_context.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_extra_context.nq new file mode 100644 index 0000000000000000000000000000000000000000..5a492ccde41ed19ed05d5c69f415a7ed8b4f77a4 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_extra_context.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_filtered.nq b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_filtered.nq new file mode 100644 index 0000000000000000000000000000000000000000..84668916efa4924b8e7b915dd2b4a6cbc3e4d180 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/canonized_sample_vp_filtered.nq differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/contexts/extra_jsonld_context.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/contexts/extra_jsonld_context.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..96560a73dfeca0dc01b6101eb8fd0d1858f2df51 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/contexts/extra_jsonld_context.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/invalid_rdf_messing_up_label_prefix_counter.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/invalid_rdf_messing_up_label_prefix_counter.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..dc1cc892953c09de4a65e8f79d5f1d75f3f04514 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/invalid_rdf_messing_up_label_prefix_counter.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/invalid_rdf_messing_up_label_prefix_counter_str.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/invalid_rdf_messing_up_label_prefix_counter_str.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..740706caa4c8263406a62b02aa16f4c18187f1c9 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/invalid_rdf_messing_up_label_prefix_counter_str.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_multiple_invalid_rdfs.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_multiple_invalid_rdfs.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..7d2c6046daa722d8596e82df15130abd4fabbf6a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_multiple_invalid_rdfs.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_proof_sample.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_proof_sample.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..39e143f65bbfb6227fbd34b1a830914928c9283c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_proof_sample.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_sample_1.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_sample_1.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..ac06d5b9d7b2f64c73fc9c36b04b8be9121742f7 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_sample_1.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_with_2_known_invalid_rdfs.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_with_2_known_invalid_rdfs.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..d67b489b2b2ac052b3db4471f934fe84faf3482c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_with_2_known_invalid_rdfs.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_with_incorrect_rdf.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_with_incorrect_rdf.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..4cdd5fe84a8be4b6830b82ae77090098bbb60969 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/jsonld_with_incorrect_rdf.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_incorrect_contexts.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_incorrect_contexts.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..a5a2e9e1703f901aee48b351ebccd45afd7e6f52 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_incorrect_contexts.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_proper_contexts.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_proper_contexts.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..ed4af09b4d9c05aa8f22e649750f7ddc92385625 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_proper_contexts.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_proper_contexts_2.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_proper_contexts_2.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..a2cb2295feec1bbe6643cca47abd1548f8e2042e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/jsonld/testdata/vc_with_proper_contexts_2.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/data.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/data.go new file mode 100644 index 0000000000000000000000000000000000000000..c196ddd2a94ad266baaf2f02c08db3f38221a1f6 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/data.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/jws.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/jws.go new file mode 100644 index 0000000000000000000000000000000000000000..a2587f53dd4ac14a11610c931882dc29585ad559 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/jws.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/proof.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/proof.go new file mode 100644 index 0000000000000000000000000000000000000000..cde8182b1c6b3559eb040d5980ca768ae75fe720 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/proof.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/testdata/valid_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/testdata/valid_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..6deb8392b59f754fcf263c1b95fab608af493539 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/testdata/valid_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/utils.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..5d8ead3b168899b500fb329aa2df3f5841a82568 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/proof/utils.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer.go new file mode 100644 index 0000000000000000000000000000000000000000..ed5e370699604e397b30ef0696cc802916c9b5e9 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer_default.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer_default.go new file mode 100644 index 0000000000000000000000000000000000000000..4a85368d22bedd1c0d490a0286f9ad8895728e41 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer_default.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer_interop.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer_interop.go new file mode 100644 index 0000000000000000000000000000000000000000..cbf4a73eee1e1e6346175f458db336acba09b858 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/signer_interop.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/testdata/valid_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/testdata/valid_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..3fdc0d49ed5f8db6de8b0fce527b08d9bd2a8094 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/signer/testdata/valid_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/public_key_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/public_key_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..74de4904743e9646ba3e7cc89c6b4927f146b818 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/public_key_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/suite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/suite.go new file mode 100644 index 0000000000000000000000000000000000000000..477dc5fdc07aac31c5628b64cf5b3df9fe14111d Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/suite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/testdata/expected_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/testdata/expected_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..547e3a25165a1069620eb33826fd4b5f5a6ef1f1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/testdata/expected_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/testdata/vc_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/testdata/vc_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..4f2fc2b19f8cdc7b1f0eadee3f52b06d7b0eaa58 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignature2020/testdata/vc_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/public_key_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/public_key_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..7820ca6ed45b437ae059e4743d59b23a10e8c2ba Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/public_key_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/signer.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/signer.go new file mode 100644 index 0000000000000000000000000000000000000000..3c736c1cb8e170294861b141130ce0cd7cbcdac7 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/signer.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/suite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/suite.go new file mode 100644 index 0000000000000000000000000000000000000000..01d0d582a05f5c92f4bef50a44b19641e99eced1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/suite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case16_reveal_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case16_reveal_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..4749003118edd0fa41eda664e190f3f51b5c20ec Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case16_reveal_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case16_vc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case16_vc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..c03b6f1d687ce9154990ee02a26b32439e954073 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case16_vc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case18_reveal_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case18_reveal_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..2ce88cf28a1e9ec96d4a724633b57ce037ec2fe3 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case18_reveal_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case18_vc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case18_vc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..2a8a65e6215dea99ce09e2e20a44882fdaed0642 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/case18_vc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/doc_with_many_proofs.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/doc_with_many_proofs.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..49236bb07f1c02816c76b9a62675b3fe054416fe Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/doc_with_many_proofs.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/expected_doc.rdf b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/expected_doc.rdf new file mode 100644 index 0000000000000000000000000000000000000000..44cdf61ee8f8942deaab3be7220d1a415963eea7 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/expected_doc.rdf differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/vc_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/vc_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..5a13bfa05b0fc8784ccc142ef9bcb690135d85ba Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/bbsblssignatureproof2020/testdata/vc_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ecdsasecp256k1signature2019/public_key_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ecdsasecp256k1signature2019/public_key_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..49258a4c79a1f7072c9cf05f7b2df694e2cefecd Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ecdsasecp256k1signature2019/public_key_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ecdsasecp256k1signature2019/suite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ecdsasecp256k1signature2019/suite.go new file mode 100644 index 0000000000000000000000000000000000000000..a460d7d86aff22e68895516b8fc82d27f1a72a51 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ecdsasecp256k1signature2019/suite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2018/public_key_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2018/public_key_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..39a8c086681cc31c2bd3fa939aec46019381b767 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2018/public_key_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2018/suite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2018/suite.go new file mode 100644 index 0000000000000000000000000000000000000000..aff594e0ec8fb43ff2102ad6cbdb556aed9b601c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2018/suite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2020/public_key_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2020/public_key_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..78368913745143e7aa66ba47b431ce4b8a9d8e7f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2020/public_key_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2020/suite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2020/suite.go new file mode 100644 index 0000000000000000000000000000000000000000..bb99f3d434965d21821ee9726b932607229e29d8 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/ed25519signature2020/suite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/jsonwebsignature2020/public_key_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/jsonwebsignature2020/public_key_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..0bf395d2a13e84bd8e4bf7fead24ecd43d84aa3e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/jsonwebsignature2020/public_key_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/jsonwebsignature2020/suite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/jsonwebsignature2020/suite.go new file mode 100644 index 0000000000000000000000000000000000000000..13a972f45265393178fc0f7814bbb462ea310fbd Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/jsonwebsignature2020/suite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/suite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/suite.go new file mode 100644 index 0000000000000000000000000000000000000000..e14c10fd34b302ff1dd83914f5f88679536e2d07 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/suite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/suite_crypto.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/suite_crypto.go new file mode 100644 index 0000000000000000000000000000000000000000..0cf1b3d9f09f564d164e817e76a639d2c4629e64 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/suite/suite_crypto.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/public_key_verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/public_key_verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..3197a3c1f02a5a4d15d2879b76e545fad3e7df8e Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/public_key_verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/testdata/valid_doc.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/testdata/valid_doc.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..e8536a2314523009b10777c681b8b020e8e987aa Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/testdata/valid_doc.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/verifier.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/verifier.go new file mode 100644 index 0000000000000000000000000000000000000000..0cb67453d72a209faa54fb580b31e8aaa8ec4a10 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/signature/verifier/verifier.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/jwkkid/kid_creator.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/jwkkid/kid_creator.go new file mode 100644 index 0000000000000000000000000000000000000000..57273fad359f09efce13115b7405a881835fbb34 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/jwkkid/kid_creator.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/kmsdidkey/kmsdidkey.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/kmsdidkey/kmsdidkey.go new file mode 100644 index 0000000000000000000000000000000000000000..29ab7461228057d397414160e280731c65e4b43a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/kmsdidkey/kmsdidkey.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/time.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/time.go new file mode 100644 index 0000000000000000000000000000000000000000..5bfb50835f155bbabdf7da80f38705015827df24 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/util/time.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/cache.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/cache.go new file mode 100644 index 0000000000000000000000000000000000000000..494422888527185dca5f942d9c3cfc984272f78c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/cache.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/cache_js_wasm.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/cache_js_wasm.go new file mode 100644 index 0000000000000000000000000000000000000000..9c3146ad977c1b115f9452d5338255052c204d92 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/cache_js_wasm.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/common.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/common.go new file mode 100644 index 0000000000000000000000000000000000000000..2bb6e85d1f5bace3db7dd840dfb64da7a10c90fc Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/common.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential.go new file mode 100644 index 0000000000000000000000000000000000000000..d032b939b48e8f7a04afeccd7cf3ba1c2aa11ce9 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_bbs.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_bbs.go new file mode 100644 index 0000000000000000000000000000000000000000..20e27365f364be93b1db00145f5eb77ee1b26f62 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_bbs.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jws.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jws.go new file mode 100644 index 0000000000000000000000000000000000000000..5f14996c84764766da2d25e3bb245ecc6f773f08 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jws.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jwt.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jwt.go new file mode 100644 index 0000000000000000000000000000000000000000..1148dfc08a23b4eb5efb208e58b2795dc2c52121 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jwt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jwt_unsecured.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jwt_unsecured.go new file mode 100644 index 0000000000000000000000000000000000000000..df373904c90098cd08480c890aa444ad6619ffdd Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_jwt_unsecured.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_ldp.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_ldp.go new file mode 100644 index 0000000000000000000000000000000000000000..a482a86e943bcaede32706ef19d92b92dc35a34a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_ldp.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_testsuite.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_testsuite.go new file mode 100644 index 0000000000000000000000000000000000000000..2d68380db9b80bd27469668a092093da1c36dc12 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/credential_testsuite.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/embedded_proof.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/embedded_proof.go new file mode 100644 index 0000000000000000000000000000000000000000..e548c47c6076f5ca1b37f4f06514774c4f3030ff Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/embedded_proof.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/json.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/json.go new file mode 100644 index 0000000000000000000000000000000000000000..755dd8765bec5c452592e5394c1218f2c9221075 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/json.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jsonld.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jsonld.go new file mode 100644 index 0000000000000000000000000000000000000000..a327c6cd449a289334a91bbed399ae8304b20b5b Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jsonld.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jws.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jws.go new file mode 100644 index 0000000000000000000000000000000000000000..2ce7a2d70b2be4c362bdcf4d845c0fa87b32e82b Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jws.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jwt_unsecured.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jwt_unsecured.go new file mode 100644 index 0000000000000000000000000000000000000000..a658a067a958e82d6b0355ca0d5318b8d3e887e1 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/jwt_unsecured.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/linked_data_proof.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/linked_data_proof.go new file mode 100644 index 0000000000000000000000000000000000000000..340805966a886b424f4584ef5f9442e5cc82489c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/linked_data_proof.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation.go new file mode 100644 index 0000000000000000000000000000000000000000..c33114768308ba79c99a478c4cb8cb0ee5f92f04 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jws.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jws.go new file mode 100644 index 0000000000000000000000000000000000000000..10e05649419d0b82dcd005a93ba92c2b0f3a818d Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jws.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jwt.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jwt.go new file mode 100644 index 0000000000000000000000000000000000000000..ca0d0e1e79b6663b29e8f9cfa280811667854fec Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jwt.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jwt_unsecured.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jwt_unsecured.go new file mode 100644 index 0000000000000000000000000000000000000000..5cfc6f9f879bdedde4b977590c07d4fff083cf5c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_jwt_unsecured.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_ldp.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_ldp.go new file mode 100644 index 0000000000000000000000000000000000000000..33d42467182d6b0b4f6594d36ff88a3065ba8ebe Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/presentation_ldp.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context1.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context1.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..b27452786d3b0b08d230ea93a8a95a6b52f84acd Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context1.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context2.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context2.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..62423c565d350a4c0a7ef5f9223677ddc3b9f679 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context2.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context3.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context3.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..2b910c1507dacb16d553cbff9b63f15e92ce686c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context3.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context4.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context4.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..4b592ae75fce40c0a925918099accc2c1f76528d Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context4.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context5.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context5.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..5afc7c99bae3c88d43c8ba694051a9e9fb6cf284 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context5.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context6.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context6.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..2a55f96c521cd5192b1b342826ec17e84ff370dd Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/context6.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/presentation_submission_v1.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/presentation_submission_v1.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..a555ccf6b4ebeecc04f1b92e662d2f58fa73392f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/context/presentation_submission_v1.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/valid_credential.jsonld b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/valid_credential.jsonld new file mode 100644 index 0000000000000000000000000000000000000000..97b03e90a56a23c5bf02f12935db6a75841fd132 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/doc/verifiable/testdata/valid_credential.jsonld differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/framework/aries/api/vdr/vdr.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/framework/aries/api/vdr/vdr.go new file mode 100644 index 0000000000000000000000000000000000000000..3bcbb648e9d09596809f2fab2a7cb2e5ac0939fb Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/framework/aries/api/vdr/vdr.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/callerInfo.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/callerInfo.go new file mode 100644 index 0000000000000000000000000000000000000000..1d9d404dfab14c0cea777852c86c1d4d682b05ca Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/callerInfo.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/level.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/level.go new file mode 100644 index 0000000000000000000000000000000000000000..27d0d298440c6eda7c82b698519c4bee77705de7 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/level.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/opts.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/opts.go new file mode 100644 index 0000000000000000000000000000000000000000..4f9c75dae39e7b2413b4f006970bdc990ddfe03d Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/opts.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/utils.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..a7a78321e2cdeebaca1d892f1ef0350ec2fd098c Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/metadata/utils.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/deflog.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/deflog.go new file mode 100644 index 0000000000000000000000000000000000000000..3a93abf9c05a9f41370aad516fe65fb283e6abfb Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/deflog.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/logtestutils.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/logtestutils.go new file mode 100644 index 0000000000000000000000000000000000000000..ae6c18d80c2a7643f3d176d81190368c989cc673 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/logtestutils.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/modlog.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/modlog.go new file mode 100644 index 0000000000000000000000000000000000000000..ff559ee0e2c9d66a141022c77856da440f28d0ca Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/common/logging/modlog/modlog.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/cryptoutil/legacy_utils.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/cryptoutil/legacy_utils.go new file mode 100644 index 0000000000000000000000000000000000000000..c2bcb7c523f133f3e5ada0314657f6d7057a929a Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/cryptoutil/legacy_utils.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/cryptoutil/utils.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/cryptoutil/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..dca9760dd955249f1d4307d71eb97e82d8724905 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/internal/cryptoutil/utils.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/kms/api.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/kms/api.go new file mode 100644 index 0000000000000000000000000000000000000000..feea7ee306b683d9f56c0635f7c96922e987c704 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/kms/api.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/kms/privKey_opts.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/kms/privKey_opts.go new file mode 100644 index 0000000000000000000000000000000000000000..cd265a7953bab1f3c86f2fca0013ece208791235 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/kms/privKey_opts.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/secretlock/api.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/secretlock/api.go new file mode 100644 index 0000000000000000000000000000000000000000..7ec7233914a88d1361f4b5ffaae651b3da6a3da3 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/secretlock/api.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/secretlock/secretlock.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/secretlock/secretlock.go new file mode 100644 index 0000000000000000000000000000000000000000..14de0d6bda2ac65164d7a4361167ce3c30870500 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/secretlock/secretlock.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/vdr/fingerprint/didfp/parse.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/vdr/fingerprint/didfp/parse.go new file mode 100644 index 0000000000000000000000000000000000000000..d5c599403768815ee4bc4312f2cd85bbdce8ea1f Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/vdr/fingerprint/didfp/parse.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/pkg/vdr/fingerprint/fingerprint.go b/vendor/github.com/hyperledger/aries-framework-go/pkg/vdr/fingerprint/fingerprint.go new file mode 100644 index 0000000000000000000000000000000000000000..49b02944b300a1711baf5ac128615e4a3bdd95a8 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/pkg/vdr/fingerprint/fingerprint.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/spi/LICENSE b/vendor/github.com/hyperledger/aries-framework-go/spi/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..8f71f43fee3f78649d238238cbde51e6d7055c82 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/spi/LICENSE differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/spi/log/log.go b/vendor/github.com/hyperledger/aries-framework-go/spi/log/log.go new file mode 100644 index 0000000000000000000000000000000000000000..0f682bda4811db2295d58d91df46bc3ef11e09bc Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/spi/log/log.go differ diff --git a/vendor/github.com/hyperledger/aries-framework-go/spi/storage/storage.go b/vendor/github.com/hyperledger/aries-framework-go/spi/storage/storage.go new file mode 100644 index 0000000000000000000000000000000000000000..4e112d8b1b2fa3f3241fa1756efa05904047c350 Binary files /dev/null and b/vendor/github.com/hyperledger/aries-framework-go/spi/storage/storage.go differ diff --git a/vendor/github.com/kilic/bls12-381/.gitignore b/vendor/github.com/kilic/bls12-381/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..24e74a5e2e9f694f6590fd89942c950217019105 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/.gitignore differ diff --git a/vendor/github.com/kilic/bls12-381/LICENSE b/vendor/github.com/kilic/bls12-381/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..7a4a3ea2424c09fbe48d455aed1eaa94d9124835 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/LICENSE differ diff --git a/vendor/github.com/kilic/bls12-381/README.md b/vendor/github.com/kilic/bls12-381/README.md new file mode 100644 index 0000000000000000000000000000000000000000..4bce9e655f6e43b9603061dc273146fc09f1890d Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/README.md differ diff --git a/vendor/github.com/kilic/bls12-381/arithmetic_decl.go b/vendor/github.com/kilic/bls12-381/arithmetic_decl.go new file mode 100644 index 0000000000000000000000000000000000000000..1efd36f73ca8354bfc03d3a55dd7118623e33e2a Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/arithmetic_decl.go differ diff --git a/vendor/github.com/kilic/bls12-381/arithmetic_fallback.go b/vendor/github.com/kilic/bls12-381/arithmetic_fallback.go new file mode 100644 index 0000000000000000000000000000000000000000..dd8e3a99d44747d7f14dc73a283dca0c7c9ed55e Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/arithmetic_fallback.go differ diff --git a/vendor/github.com/kilic/bls12-381/bls12_381.go b/vendor/github.com/kilic/bls12-381/bls12_381.go new file mode 100644 index 0000000000000000000000000000000000000000..8945e3a53056cd671b601f949a27260f8a4e9a15 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/bls12_381.go differ diff --git a/vendor/github.com/kilic/bls12-381/field_element.go b/vendor/github.com/kilic/bls12-381/field_element.go new file mode 100644 index 0000000000000000000000000000000000000000..4d3e92217cf083e4318398cbbda871c279bd72a9 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/field_element.go differ diff --git a/vendor/github.com/kilic/bls12-381/fp.go b/vendor/github.com/kilic/bls12-381/fp.go new file mode 100644 index 0000000000000000000000000000000000000000..a163a222da5240c19e853dbdab0e4733e6e255c8 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fp.go differ diff --git a/vendor/github.com/kilic/bls12-381/fp12.go b/vendor/github.com/kilic/bls12-381/fp12.go new file mode 100644 index 0000000000000000000000000000000000000000..8b5af825ce32fe6505acf561052ec9a76eba61e3 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fp12.go differ diff --git a/vendor/github.com/kilic/bls12-381/fp2.go b/vendor/github.com/kilic/bls12-381/fp2.go new file mode 100644 index 0000000000000000000000000000000000000000..aad59d32b3d0ea19c49b2e045c7fb9fdd9b499b0 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fp2.go differ diff --git a/vendor/github.com/kilic/bls12-381/fp2_arithmetic_x86.s b/vendor/github.com/kilic/bls12-381/fp2_arithmetic_x86.s new file mode 100644 index 0000000000000000000000000000000000000000..d3d542150d00bfab2a9406b4c1bfa13833474db0 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fp2_arithmetic_x86.s differ diff --git a/vendor/github.com/kilic/bls12-381/fp6.go b/vendor/github.com/kilic/bls12-381/fp6.go new file mode 100644 index 0000000000000000000000000000000000000000..509b0ec56d344313b7c43fe73d978e7347149056 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fp6.go differ diff --git a/vendor/github.com/kilic/bls12-381/fp_arithmetic_x86.s b/vendor/github.com/kilic/bls12-381/fp_arithmetic_x86.s new file mode 100644 index 0000000000000000000000000000000000000000..04abfe5fe0fd4d526a76a6a69aa463ac5cb42bbe Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fp_arithmetic_x86.s differ diff --git a/vendor/github.com/kilic/bls12-381/fp_fallback.go b/vendor/github.com/kilic/bls12-381/fp_fallback.go new file mode 100644 index 0000000000000000000000000000000000000000..35954486151594015f0fb1ffc7426e2ea4c4bdef Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fp_fallback.go differ diff --git a/vendor/github.com/kilic/bls12-381/fr.go b/vendor/github.com/kilic/bls12-381/fr.go new file mode 100644 index 0000000000000000000000000000000000000000..bc043fd6a7ae0eb1876ee9574ee6eca4da56a267 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fr.go differ diff --git a/vendor/github.com/kilic/bls12-381/fr_arithmetic_x86.s b/vendor/github.com/kilic/bls12-381/fr_arithmetic_x86.s new file mode 100644 index 0000000000000000000000000000000000000000..0c421a0213c665c50d835f4ab197fdf49804a491 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fr_arithmetic_x86.s differ diff --git a/vendor/github.com/kilic/bls12-381/fr_fallback.go b/vendor/github.com/kilic/bls12-381/fr_fallback.go new file mode 100644 index 0000000000000000000000000000000000000000..236d3cf3ae974e0f102ea2a534e07f75bc59fee3 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/fr_fallback.go differ diff --git a/vendor/github.com/kilic/bls12-381/g1.go b/vendor/github.com/kilic/bls12-381/g1.go new file mode 100644 index 0000000000000000000000000000000000000000..20e54ffcecb80825d71e9269737b8a8a248106f1 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/g1.go differ diff --git a/vendor/github.com/kilic/bls12-381/g2.go b/vendor/github.com/kilic/bls12-381/g2.go new file mode 100644 index 0000000000000000000000000000000000000000..7c56ffd140659e17efdf54fe151c7c52978a7b94 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/g2.go differ diff --git a/vendor/github.com/kilic/bls12-381/glv.go b/vendor/github.com/kilic/bls12-381/glv.go new file mode 100644 index 0000000000000000000000000000000000000000..0e6181892804b7caa6b55d420e931fcd23269153 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/glv.go differ diff --git a/vendor/github.com/kilic/bls12-381/gt.go b/vendor/github.com/kilic/bls12-381/gt.go new file mode 100644 index 0000000000000000000000000000000000000000..3e28bb366fba2fd5b2ac8c51f2a9b4417a1d0113 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/gt.go differ diff --git a/vendor/github.com/kilic/bls12-381/hash_to_field.go b/vendor/github.com/kilic/bls12-381/hash_to_field.go new file mode 100644 index 0000000000000000000000000000000000000000..9e440076916e980e8c37872771e261348d10b264 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/hash_to_field.go differ diff --git a/vendor/github.com/kilic/bls12-381/isogeny.go b/vendor/github.com/kilic/bls12-381/isogeny.go new file mode 100644 index 0000000000000000000000000000000000000000..6a99e44c09dc5564f20ce5e0f8e5c0efa09812be Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/isogeny.go differ diff --git a/vendor/github.com/kilic/bls12-381/pairing.go b/vendor/github.com/kilic/bls12-381/pairing.go new file mode 100644 index 0000000000000000000000000000000000000000..abdc0a8790dc14db39d318888a8d7783f69f202f Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/pairing.go differ diff --git a/vendor/github.com/kilic/bls12-381/swu.go b/vendor/github.com/kilic/bls12-381/swu.go new file mode 100644 index 0000000000000000000000000000000000000000..0569ff0bb8ab82a4876d11a2d817d99667f7f4f1 Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/swu.go differ diff --git a/vendor/github.com/kilic/bls12-381/utils.go b/vendor/github.com/kilic/bls12-381/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..a5fb988e017f616cfeee1660072ceceff50d8abc Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/utils.go differ diff --git a/vendor/github.com/kilic/bls12-381/wnaf.go b/vendor/github.com/kilic/bls12-381/wnaf.go new file mode 100644 index 0000000000000000000000000000000000000000..9ab2d57306652b151805f028e02a188b9496885b Binary files /dev/null and b/vendor/github.com/kilic/bls12-381/wnaf.go differ diff --git a/vendor/github.com/mitchellh/go-homedir/LICENSE b/vendor/github.com/mitchellh/go-homedir/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..f9c841a51e0d11ec20c19ff7600e88da826867fa Binary files /dev/null and b/vendor/github.com/mitchellh/go-homedir/LICENSE differ diff --git a/vendor/github.com/mitchellh/go-homedir/README.md b/vendor/github.com/mitchellh/go-homedir/README.md new file mode 100644 index 0000000000000000000000000000000000000000..d70706d5b35b6f2b877a29a6244a52c9f1f45b33 Binary files /dev/null and b/vendor/github.com/mitchellh/go-homedir/README.md differ diff --git a/vendor/github.com/mitchellh/go-homedir/homedir.go b/vendor/github.com/mitchellh/go-homedir/homedir.go new file mode 100644 index 0000000000000000000000000000000000000000..25378537eade7bdd92c07191614e56d0ea982eac Binary files /dev/null and b/vendor/github.com/mitchellh/go-homedir/homedir.go differ diff --git a/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md b/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..38a099162caaf2db72ef390eb8cb3ae95a447159 Binary files /dev/null and b/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md differ diff --git a/vendor/github.com/mitchellh/mapstructure/LICENSE b/vendor/github.com/mitchellh/mapstructure/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..f9c841a51e0d11ec20c19ff7600e88da826867fa Binary files /dev/null and b/vendor/github.com/mitchellh/mapstructure/LICENSE differ diff --git a/vendor/github.com/mitchellh/mapstructure/README.md b/vendor/github.com/mitchellh/mapstructure/README.md new file mode 100644 index 0000000000000000000000000000000000000000..0018dc7d9f947b11a11bf33ee6eda3e67decf1a2 Binary files /dev/null and b/vendor/github.com/mitchellh/mapstructure/README.md differ diff --git a/vendor/github.com/mitchellh/mapstructure/decode_hooks.go b/vendor/github.com/mitchellh/mapstructure/decode_hooks.go new file mode 100644 index 0000000000000000000000000000000000000000..4d4bbc733ba8afc164ec7d15f20cd3a431e909ed Binary files /dev/null and b/vendor/github.com/mitchellh/mapstructure/decode_hooks.go differ diff --git a/vendor/github.com/mitchellh/mapstructure/error.go b/vendor/github.com/mitchellh/mapstructure/error.go new file mode 100644 index 0000000000000000000000000000000000000000..47a99e5af3f1b700db374eca24b48d9d8fc21647 Binary files /dev/null and b/vendor/github.com/mitchellh/mapstructure/error.go differ diff --git a/vendor/github.com/mitchellh/mapstructure/mapstructure.go b/vendor/github.com/mitchellh/mapstructure/mapstructure.go new file mode 100644 index 0000000000000000000000000000000000000000..6b81b00679efd4c76749feb578bc9bb4d9855e66 Binary files /dev/null and b/vendor/github.com/mitchellh/mapstructure/mapstructure.go differ diff --git a/vendor/github.com/mr-tron/base58/LICENSE b/vendor/github.com/mr-tron/base58/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..cb7829a2c5b3bf4471657c7b59e6063e9bd0c8d0 Binary files /dev/null and b/vendor/github.com/mr-tron/base58/LICENSE differ diff --git a/vendor/github.com/mr-tron/base58/base58/DEPRECATED.md b/vendor/github.com/mr-tron/base58/base58/DEPRECATED.md new file mode 100644 index 0000000000000000000000000000000000000000..0cc7ec7229e26f301893e653ea06efe55c7b9fd7 Binary files /dev/null and b/vendor/github.com/mr-tron/base58/base58/DEPRECATED.md differ diff --git a/vendor/github.com/mr-tron/base58/base58/alphabet.go b/vendor/github.com/mr-tron/base58/base58/alphabet.go new file mode 100644 index 0000000000000000000000000000000000000000..a0f887835afe5ef2f346968ab4430363db086319 Binary files /dev/null and b/vendor/github.com/mr-tron/base58/base58/alphabet.go differ diff --git a/vendor/github.com/mr-tron/base58/base58/base58.go b/vendor/github.com/mr-tron/base58/base58/base58.go new file mode 100644 index 0000000000000000000000000000000000000000..0bbdfc0b9500d35526f84db5b81c97883e5e7037 Binary files /dev/null and b/vendor/github.com/mr-tron/base58/base58/base58.go differ diff --git a/vendor/github.com/multiformats/go-base32/LICENSE b/vendor/github.com/multiformats/go-base32/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..6a66aea5eafe0ca6a688840c47219556c552488e Binary files /dev/null and b/vendor/github.com/multiformats/go-base32/LICENSE differ diff --git a/vendor/github.com/multiformats/go-base32/base32.go b/vendor/github.com/multiformats/go-base32/base32.go new file mode 100644 index 0000000000000000000000000000000000000000..768a235099c9073720526f33b095e3d7feba43ea Binary files /dev/null and b/vendor/github.com/multiformats/go-base32/base32.go differ diff --git a/vendor/github.com/multiformats/go-base32/package.json b/vendor/github.com/multiformats/go-base32/package.json new file mode 100644 index 0000000000000000000000000000000000000000..04a9970d7361d6c742a9edc1354a41e31be12f16 Binary files /dev/null and b/vendor/github.com/multiformats/go-base32/package.json differ diff --git a/vendor/github.com/multiformats/go-multibase/.codecov.yml b/vendor/github.com/multiformats/go-multibase/.codecov.yml new file mode 100644 index 0000000000000000000000000000000000000000..db2472009c60acc72ca2f6f065bb4b674dc66746 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/.codecov.yml differ diff --git a/vendor/github.com/multiformats/go-multibase/.gitignore b/vendor/github.com/multiformats/go-multibase/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..175b291646dd3a30b8f4f6172780c545b9229338 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/.gitignore differ diff --git a/vendor/github.com/multiformats/go-multibase/.gitmodules b/vendor/github.com/multiformats/go-multibase/.gitmodules new file mode 100644 index 0000000000000000000000000000000000000000..74c037fa663860ae692766cc7ae6caa678e58d26 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/.gitmodules differ diff --git a/vendor/github.com/multiformats/go-multibase/.gxignore b/vendor/github.com/multiformats/go-multibase/.gxignore new file mode 100644 index 0000000000000000000000000000000000000000..c1d28ba5bba7d613089203e37671dc517e22d170 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/.gxignore differ diff --git a/vendor/github.com/multiformats/go-multibase/.travis.yml b/vendor/github.com/multiformats/go-multibase/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..18f4287d7659ff2a3bc08a998dbed29b4c95288d Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/.travis.yml differ diff --git a/vendor/github.com/multiformats/go-multibase/LICENSE b/vendor/github.com/multiformats/go-multibase/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..f64ffb042d2091e80cac7085b2cdba6b39ada670 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/LICENSE differ diff --git a/vendor/github.com/multiformats/go-multibase/Makefile b/vendor/github.com/multiformats/go-multibase/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..411b4a8880228a926bd0ca4d0c2a569bfa46d0e1 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/Makefile differ diff --git a/vendor/github.com/multiformats/go-multibase/README.md b/vendor/github.com/multiformats/go-multibase/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3c745445a82f268f1d6c17a0dd5097d9159689c9 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/README.md differ diff --git a/vendor/github.com/multiformats/go-multibase/base16.go b/vendor/github.com/multiformats/go-multibase/base16.go new file mode 100644 index 0000000000000000000000000000000000000000..6b8794191ae798daf98a23d018d874ad8a034856 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/base16.go differ diff --git a/vendor/github.com/multiformats/go-multibase/base2.go b/vendor/github.com/multiformats/go-multibase/base2.go new file mode 100644 index 0000000000000000000000000000000000000000..6e3f0cfff2ec3a1c0204495c851586ec53f8ee28 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/base2.go differ diff --git a/vendor/github.com/multiformats/go-multibase/base32.go b/vendor/github.com/multiformats/go-multibase/base32.go new file mode 100644 index 0000000000000000000000000000000000000000..a6fe8eb064579abde43ca3c898d4bea0ccdfca5b Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/base32.go differ diff --git a/vendor/github.com/multiformats/go-multibase/encoder.go b/vendor/github.com/multiformats/go-multibase/encoder.go new file mode 100644 index 0000000000000000000000000000000000000000..42e753f5cac4ec3e7b5a9d3f6d66d66a68a991d4 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/encoder.go differ diff --git a/vendor/github.com/multiformats/go-multibase/multibase.go b/vendor/github.com/multiformats/go-multibase/multibase.go new file mode 100644 index 0000000000000000000000000000000000000000..0f9b3961013a54a51aecbef932a99a1a7a1442e7 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/multibase.go differ diff --git a/vendor/github.com/multiformats/go-multibase/package.json b/vendor/github.com/multiformats/go-multibase/package.json new file mode 100644 index 0000000000000000000000000000000000000000..75f742e6de6aaa4dbcf91f3ebc43ce07a36782d9 Binary files /dev/null and b/vendor/github.com/multiformats/go-multibase/package.json differ diff --git a/vendor/github.com/pierrec/lz4/.gitignore b/vendor/github.com/pierrec/lz4/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e48bab32a5dd10c579e5128355bf820c351d010e Binary files /dev/null and b/vendor/github.com/pierrec/lz4/.gitignore differ diff --git a/vendor/github.com/pierrec/lz4/.travis.yml b/vendor/github.com/pierrec/lz4/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..b2c806d577e1816ca0a2ee3c0295d66d187bc866 Binary files /dev/null and b/vendor/github.com/pierrec/lz4/.travis.yml differ diff --git a/vendor/github.com/pierrec/lz4/LICENSE b/vendor/github.com/pierrec/lz4/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..bd899d8353dd51ab4bdee80db83e0dacad1357ff Binary files /dev/null and b/vendor/github.com/pierrec/lz4/LICENSE differ diff --git a/vendor/github.com/pierrec/lz4/README.md b/vendor/github.com/pierrec/lz4/README.md new file mode 100644 index 0000000000000000000000000000000000000000..50a10ee1608fcbc64366539b1d490beea9f92aed Binary files /dev/null and b/vendor/github.com/pierrec/lz4/README.md differ diff --git a/vendor/github.com/pierrec/lz4/block.go b/vendor/github.com/pierrec/lz4/block.go new file mode 100644 index 0000000000000000000000000000000000000000..ef24f17e57afb7b76ab2b7f4b38d084bec80e838 Binary files /dev/null and b/vendor/github.com/pierrec/lz4/block.go differ diff --git a/vendor/github.com/pierrec/lz4/debug.go b/vendor/github.com/pierrec/lz4/debug.go new file mode 100644 index 0000000000000000000000000000000000000000..bc5e78d40f0a3ae4c6e59de9c4d53ec4dc1fd0db Binary files /dev/null and b/vendor/github.com/pierrec/lz4/debug.go differ diff --git a/vendor/github.com/pierrec/lz4/debug_stub.go b/vendor/github.com/pierrec/lz4/debug_stub.go new file mode 100644 index 0000000000000000000000000000000000000000..44211ad96453b40d2d5dd0044ef715d2eae525d3 Binary files /dev/null and b/vendor/github.com/pierrec/lz4/debug_stub.go differ diff --git a/vendor/github.com/pierrec/lz4/internal/xxh32/xxh32zero.go b/vendor/github.com/pierrec/lz4/internal/xxh32/xxh32zero.go new file mode 100644 index 0000000000000000000000000000000000000000..850a6fdf614be7a34d85c77142dcb06ca9d5a80c Binary files /dev/null and b/vendor/github.com/pierrec/lz4/internal/xxh32/xxh32zero.go differ diff --git a/vendor/github.com/pierrec/lz4/lz4.go b/vendor/github.com/pierrec/lz4/lz4.go new file mode 100644 index 0000000000000000000000000000000000000000..35802756c4866d562a5e8b98c49daf5f80363fb0 Binary files /dev/null and b/vendor/github.com/pierrec/lz4/lz4.go differ diff --git a/vendor/github.com/pierrec/lz4/lz4_go1.10.go b/vendor/github.com/pierrec/lz4/lz4_go1.10.go new file mode 100644 index 0000000000000000000000000000000000000000..9a0fb00709d569ae3475c264feef1fd9109eaf26 Binary files /dev/null and b/vendor/github.com/pierrec/lz4/lz4_go1.10.go differ diff --git a/vendor/github.com/pierrec/lz4/lz4_notgo1.10.go b/vendor/github.com/pierrec/lz4/lz4_notgo1.10.go new file mode 100644 index 0000000000000000000000000000000000000000..12c761a2e7f977090164dac5315aab1e564d99f5 Binary files /dev/null and b/vendor/github.com/pierrec/lz4/lz4_notgo1.10.go differ diff --git a/vendor/github.com/pierrec/lz4/reader.go b/vendor/github.com/pierrec/lz4/reader.go new file mode 100644 index 0000000000000000000000000000000000000000..f08db47df7bac06e5be312fe8d2c340c31882328 Binary files /dev/null and b/vendor/github.com/pierrec/lz4/reader.go differ diff --git a/vendor/github.com/pierrec/lz4/writer.go b/vendor/github.com/pierrec/lz4/writer.go new file mode 100644 index 0000000000000000000000000000000000000000..0120438025dabb360a4ff324654c134f34ae335d Binary files /dev/null and b/vendor/github.com/pierrec/lz4/writer.go differ diff --git a/vendor/github.com/piprate/json-gold/CONTRIBUTORS.md b/vendor/github.com/piprate/json-gold/CONTRIBUTORS.md new file mode 100644 index 0000000000000000000000000000000000000000..69024f10024a5b73e618fece07cfc17a7ec59e50 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/CONTRIBUTORS.md differ diff --git a/vendor/github.com/piprate/json-gold/LICENSE b/vendor/github.com/piprate/json-gold/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..261eeb9e9f8b2b4b0d119366dda99c6fd7d35c64 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/LICENSE differ diff --git a/vendor/github.com/piprate/json-gold/ld/api.go b/vendor/github.com/piprate/json-gold/ld/api.go new file mode 100644 index 0000000000000000000000000000000000000000..8309dcda4f551731bb2d8f20b82c0af4805313ef Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/api_compact.go b/vendor/github.com/piprate/json-gold/ld/api_compact.go new file mode 100644 index 0000000000000000000000000000000000000000..7ed89366aba08f707d4e945ae7a842d9b23aa731 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api_compact.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/api_expand.go b/vendor/github.com/piprate/json-gold/ld/api_expand.go new file mode 100644 index 0000000000000000000000000000000000000000..175598694b9f197bce3c0275357ad3a94567b5fb Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api_expand.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/api_frame.go b/vendor/github.com/piprate/json-gold/ld/api_frame.go new file mode 100644 index 0000000000000000000000000000000000000000..d94750c5da930f69d2c7d012cfb5e07b1ee41c36 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api_frame.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/api_from_rdf.go b/vendor/github.com/piprate/json-gold/ld/api_from_rdf.go new file mode 100644 index 0000000000000000000000000000000000000000..852d18d68504085c58f0009881582d43786c7a9c Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api_from_rdf.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/api_generate_node_map.go b/vendor/github.com/piprate/json-gold/ld/api_generate_node_map.go new file mode 100644 index 0000000000000000000000000000000000000000..0874fc100a8151cef21704597576e31f636ddce0 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api_generate_node_map.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/api_normalize.go b/vendor/github.com/piprate/json-gold/ld/api_normalize.go new file mode 100644 index 0000000000000000000000000000000000000000..d506c2548b37a438f58f560097356abbfe380d34 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api_normalize.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/api_to_rdf.go b/vendor/github.com/piprate/json-gold/ld/api_to_rdf.go new file mode 100644 index 0000000000000000000000000000000000000000..bb4b02b28d008bc5bf46d248970a2ba1bb5930d6 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/api_to_rdf.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/context.go b/vendor/github.com/piprate/json-gold/ld/context.go new file mode 100644 index 0000000000000000000000000000000000000000..b912b0643f7ee07c32a692373902f2a4161cc068 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/context.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/document_loader.go b/vendor/github.com/piprate/json-gold/ld/document_loader.go new file mode 100644 index 0000000000000000000000000000000000000000..ef6d777c62ebcc9e697b4d35fbb0d1e43be0db1d Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/document_loader.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/errors.go b/vendor/github.com/piprate/json-gold/ld/errors.go new file mode 100644 index 0000000000000000000000000000000000000000..acee3e7879c40ca29a5e5131841e13cf6450f414 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/errors.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/id_issuer.go b/vendor/github.com/piprate/json-gold/ld/id_issuer.go new file mode 100644 index 0000000000000000000000000000000000000000..da1314f05e30a81698226c2f1446960c226a8be1 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/id_issuer.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/README.md b/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/README.md new file mode 100644 index 0000000000000000000000000000000000000000..22a97ad11f47e39f7e892967727397e6e9fc0c80 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/README.md differ diff --git a/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/es6numfmt.go b/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/es6numfmt.go new file mode 100644 index 0000000000000000000000000000000000000000..939dda1ea215f929be3263bef395e60a29fc2100 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/es6numfmt.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/jsoncanonicalizer.go b/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/jsoncanonicalizer.go new file mode 100644 index 0000000000000000000000000000000000000000..ab7a1be4794fba4abcd97d0fa45e28fdf000801a Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/internal/jsoncanonicalizer/jsoncanonicalizer.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/node.go b/vendor/github.com/piprate/json-gold/ld/node.go new file mode 100644 index 0000000000000000000000000000000000000000..cdf43d8b9b8e0e84e345278c7c07176b76a0b1b2 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/node.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/options.go b/vendor/github.com/piprate/json-gold/ld/options.go new file mode 100644 index 0000000000000000000000000000000000000000..51f8acf190c5a9ae11490ca4441170da0e8769e9 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/options.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/processor.go b/vendor/github.com/piprate/json-gold/ld/processor.go new file mode 100644 index 0000000000000000000000000000000000000000..a53cba5c796779a079a2eed454391dca025c9b48 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/processor.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/rdf_constants.go b/vendor/github.com/piprate/json-gold/ld/rdf_constants.go new file mode 100644 index 0000000000000000000000000000000000000000..b7ef00a8761449742c9ff50140eca831f4514321 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/rdf_constants.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/rdf_dataset.go b/vendor/github.com/piprate/json-gold/ld/rdf_dataset.go new file mode 100644 index 0000000000000000000000000000000000000000..d75068b822705771c1171125bca67bfbdce55af3 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/rdf_dataset.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/serialize_nquads.go b/vendor/github.com/piprate/json-gold/ld/serialize_nquads.go new file mode 100644 index 0000000000000000000000000000000000000000..66211ddbf43e03e9347f7e75d8142add4d69943d Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/serialize_nquads.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/serialize_turtle.go b/vendor/github.com/piprate/json-gold/ld/serialize_turtle.go new file mode 100644 index 0000000000000000000000000000000000000000..07364cd951a498360640564958269cd1cc15bbcb Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/serialize_turtle.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/url.go b/vendor/github.com/piprate/json-gold/ld/url.go new file mode 100644 index 0000000000000000000000000000000000000000..8594617cc6fb12d27d139b0cbb475a3b29d5c96f Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/url.go differ diff --git a/vendor/github.com/piprate/json-gold/ld/utils.go b/vendor/github.com/piprate/json-gold/ld/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..e6f31ec0705c8cf76ccba012a7c657f212a94aa8 Binary files /dev/null and b/vendor/github.com/piprate/json-gold/ld/utils.go differ diff --git a/vendor/github.com/pquerna/cachecontrol/.travis.yml b/vendor/github.com/pquerna/cachecontrol/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..f140b4971bf05457d7105dca02829d76b2bb8a96 Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/.travis.yml differ diff --git a/vendor/github.com/pquerna/cachecontrol/LICENSE b/vendor/github.com/pquerna/cachecontrol/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..d645695673349e3947e8e5ae42332d0ac3164cd7 Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/LICENSE differ diff --git a/vendor/github.com/pquerna/cachecontrol/README.md b/vendor/github.com/pquerna/cachecontrol/README.md new file mode 100644 index 0000000000000000000000000000000000000000..da0b428f307b9d1ad90a55741a722e085c86722f Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/README.md differ diff --git a/vendor/github.com/pquerna/cachecontrol/api.go b/vendor/github.com/pquerna/cachecontrol/api.go new file mode 100644 index 0000000000000000000000000000000000000000..f6f28585d16c5fc9c3d20e6a10a75c8405f03221 Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/api.go differ diff --git a/vendor/github.com/pquerna/cachecontrol/cacheobject/directive.go b/vendor/github.com/pquerna/cachecontrol/cacheobject/directive.go new file mode 100644 index 0000000000000000000000000000000000000000..afa640e7723d6d9e013da9d841993e3af6516e01 Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/cacheobject/directive.go differ diff --git a/vendor/github.com/pquerna/cachecontrol/cacheobject/lex.go b/vendor/github.com/pquerna/cachecontrol/cacheobject/lex.go new file mode 100644 index 0000000000000000000000000000000000000000..c658e09b151243ba6a6db41411788e4975c03f1d Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/cacheobject/lex.go differ diff --git a/vendor/github.com/pquerna/cachecontrol/cacheobject/object.go b/vendor/github.com/pquerna/cachecontrol/cacheobject/object.go new file mode 100644 index 0000000000000000000000000000000000000000..c20a1d659b221222de6e5e17b7d8be14e84e936d Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/cacheobject/object.go differ diff --git a/vendor/github.com/pquerna/cachecontrol/cacheobject/reasons.go b/vendor/github.com/pquerna/cachecontrol/cacheobject/reasons.go new file mode 100644 index 0000000000000000000000000000000000000000..f53d1ad593df5f846a32392740e5cbcb6b5d9601 Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/cacheobject/reasons.go differ diff --git a/vendor/github.com/pquerna/cachecontrol/cacheobject/warning.go b/vendor/github.com/pquerna/cachecontrol/cacheobject/warning.go new file mode 100644 index 0000000000000000000000000000000000000000..82f89413034196e5edbd1032bb5e2c16ac5138b1 Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/cacheobject/warning.go differ diff --git a/vendor/github.com/pquerna/cachecontrol/doc.go b/vendor/github.com/pquerna/cachecontrol/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..3fe7ed0d689c0982176801bdd2b0bf66bbc4b350 Binary files /dev/null and b/vendor/github.com/pquerna/cachecontrol/doc.go differ diff --git a/vendor/github.com/ryanuber/go-glob/.travis.yml b/vendor/github.com/ryanuber/go-glob/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..9d1ca3c378eaedec771a1bcb4ba5e594c61caa80 Binary files /dev/null and b/vendor/github.com/ryanuber/go-glob/.travis.yml differ diff --git a/vendor/github.com/ryanuber/go-glob/LICENSE b/vendor/github.com/ryanuber/go-glob/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..bdfbd951497618c8cd39a592d40ec642ee7cb428 Binary files /dev/null and b/vendor/github.com/ryanuber/go-glob/LICENSE differ diff --git a/vendor/github.com/ryanuber/go-glob/README.md b/vendor/github.com/ryanuber/go-glob/README.md new file mode 100644 index 0000000000000000000000000000000000000000..48f7fcb05a4437c24da687c7e5b725fd0d29f25f Binary files /dev/null and b/vendor/github.com/ryanuber/go-glob/README.md differ diff --git a/vendor/github.com/ryanuber/go-glob/glob.go b/vendor/github.com/ryanuber/go-glob/glob.go new file mode 100644 index 0000000000000000000000000000000000000000..e67db3be183f75c09bda284b21123a1c6d0138f3 Binary files /dev/null and b/vendor/github.com/ryanuber/go-glob/glob.go differ diff --git a/vendor/github.com/square/go-jose/v3/.gitignore b/vendor/github.com/square/go-jose/v3/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..eb29ebaefd85b6bd0343d2a4f0eb74db8f2dbae4 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/.gitignore differ diff --git a/vendor/github.com/square/go-jose/v3/.golangci.yml b/vendor/github.com/square/go-jose/v3/.golangci.yml new file mode 100644 index 0000000000000000000000000000000000000000..2a577a8f95b0349cfff3a78e5990247e2d5c18d2 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/.golangci.yml differ diff --git a/vendor/github.com/square/go-jose/v3/.travis.yml b/vendor/github.com/square/go-jose/v3/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..48de631b003b20564d0c309ce51b834e2928d5be Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/.travis.yml differ diff --git a/vendor/github.com/square/go-jose/v3/BUG-BOUNTY.md b/vendor/github.com/square/go-jose/v3/BUG-BOUNTY.md new file mode 100644 index 0000000000000000000000000000000000000000..3305db0f653f8339e6cc3cdc2726f8c974495f77 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/BUG-BOUNTY.md differ diff --git a/vendor/github.com/square/go-jose/v3/CONTRIBUTING.md b/vendor/github.com/square/go-jose/v3/CONTRIBUTING.md new file mode 100644 index 0000000000000000000000000000000000000000..b63e1f8fee5cf0743479fd5ce1287b6177454cfa Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/CONTRIBUTING.md differ diff --git a/vendor/github.com/square/go-jose/v3/LICENSE b/vendor/github.com/square/go-jose/v3/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..d645695673349e3947e8e5ae42332d0ac3164cd7 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/LICENSE differ diff --git a/vendor/github.com/square/go-jose/v3/README.md b/vendor/github.com/square/go-jose/v3/README.md new file mode 100644 index 0000000000000000000000000000000000000000..bc285ecb54102d7b88ead849f463fb0df627008f Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/README.md differ diff --git a/vendor/github.com/square/go-jose/v3/asymmetric.go b/vendor/github.com/square/go-jose/v3/asymmetric.go new file mode 100644 index 0000000000000000000000000000000000000000..46af823c6c5d99ec26d3c192f8cf2db07ea74b31 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/asymmetric.go differ diff --git a/vendor/github.com/square/go-jose/v3/cipher/cbc_hmac.go b/vendor/github.com/square/go-jose/v3/cipher/cbc_hmac.go new file mode 100644 index 0000000000000000000000000000000000000000..a249a114ffdcc13ea8b760570293cf06865037a7 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/cipher/cbc_hmac.go differ diff --git a/vendor/github.com/square/go-jose/v3/cipher/concat_kdf.go b/vendor/github.com/square/go-jose/v3/cipher/concat_kdf.go new file mode 100644 index 0000000000000000000000000000000000000000..f62c3bdba5d0e6a149cae9af1f600cba222808ab Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/cipher/concat_kdf.go differ diff --git a/vendor/github.com/square/go-jose/v3/cipher/ecdh_es.go b/vendor/github.com/square/go-jose/v3/cipher/ecdh_es.go new file mode 100644 index 0000000000000000000000000000000000000000..093c646740ba370b922a032de7c082e126b05bf3 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/cipher/ecdh_es.go differ diff --git a/vendor/github.com/square/go-jose/v3/cipher/key_wrap.go b/vendor/github.com/square/go-jose/v3/cipher/key_wrap.go new file mode 100644 index 0000000000000000000000000000000000000000..36633dbb41f9eeff0f758379bc74c9e61ca5de01 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/cipher/key_wrap.go differ diff --git a/vendor/github.com/square/go-jose/v3/crypter.go b/vendor/github.com/square/go-jose/v3/crypter.go new file mode 100644 index 0000000000000000000000000000000000000000..961cb66639cb54e9c3af64da4765f71696700cc9 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/crypter.go differ diff --git a/vendor/github.com/square/go-jose/v3/doc.go b/vendor/github.com/square/go-jose/v3/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..71ec1c419b17441017746af73537bb8e8348fa90 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/doc.go differ diff --git a/vendor/github.com/square/go-jose/v3/encoding.go b/vendor/github.com/square/go-jose/v3/encoding.go new file mode 100644 index 0000000000000000000000000000000000000000..dea533e8e1817b0484592ab9871db24f67822cec Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/encoding.go differ diff --git a/vendor/github.com/square/go-jose/v3/json/LICENSE b/vendor/github.com/square/go-jose/v3/json/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..74487567632c8f137ef3971b0f5912ca50bebcda Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/LICENSE differ diff --git a/vendor/github.com/square/go-jose/v3/json/README.md b/vendor/github.com/square/go-jose/v3/json/README.md new file mode 100644 index 0000000000000000000000000000000000000000..86de5e5581f582fb7c09c7c0ab48279651d39b0a Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/README.md differ diff --git a/vendor/github.com/square/go-jose/v3/json/decode.go b/vendor/github.com/square/go-jose/v3/json/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..37457e5a834704b83405d8d1a48b3bee72691e24 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/decode.go differ diff --git a/vendor/github.com/square/go-jose/v3/json/encode.go b/vendor/github.com/square/go-jose/v3/json/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..ea0a1361987dfeae3a47784b101961fddfac22a7 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/encode.go differ diff --git a/vendor/github.com/square/go-jose/v3/json/indent.go b/vendor/github.com/square/go-jose/v3/json/indent.go new file mode 100644 index 0000000000000000000000000000000000000000..7cd9f4db184a7df373603b18f8f98be1c941f89e Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/indent.go differ diff --git a/vendor/github.com/square/go-jose/v3/json/scanner.go b/vendor/github.com/square/go-jose/v3/json/scanner.go new file mode 100644 index 0000000000000000000000000000000000000000..ee6622e8cf844b64932ab7ac7caf2c88cff4b28c Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/scanner.go differ diff --git a/vendor/github.com/square/go-jose/v3/json/stream.go b/vendor/github.com/square/go-jose/v3/json/stream.go new file mode 100644 index 0000000000000000000000000000000000000000..8ddcf4d279ec16073ddfd2b22dffed5983071074 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/stream.go differ diff --git a/vendor/github.com/square/go-jose/v3/json/tags.go b/vendor/github.com/square/go-jose/v3/json/tags.go new file mode 100644 index 0000000000000000000000000000000000000000..c38fd5102f6302deb1e10639dbe4552ee255837e Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/json/tags.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwe.go b/vendor/github.com/square/go-jose/v3/jwe.go new file mode 100644 index 0000000000000000000000000000000000000000..97e79ec368ad401d789ef92caca417625945777e Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwe.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwk.go b/vendor/github.com/square/go-jose/v3/jwk.go new file mode 100644 index 0000000000000000000000000000000000000000..660d068016e58ce6d62c497af17247f865ea38d8 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwk.go differ diff --git a/vendor/github.com/square/go-jose/v3/jws.go b/vendor/github.com/square/go-jose/v3/jws.go new file mode 100644 index 0000000000000000000000000000000000000000..a05c56bded7240f61ac076012897314e70970b49 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jws.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwt/builder.go b/vendor/github.com/square/go-jose/v3/jwt/builder.go new file mode 100644 index 0000000000000000000000000000000000000000..d092ef502712757e87b99262df5f281710a7c546 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwt/builder.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwt/claims.go b/vendor/github.com/square/go-jose/v3/jwt/claims.go new file mode 100644 index 0000000000000000000000000000000000000000..a7c103db5e54501a90295123b5dda2a2b45fc710 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwt/claims.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwt/doc.go b/vendor/github.com/square/go-jose/v3/jwt/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..4cf97b54e78341585a2c97287dbdd5846b03c069 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwt/doc.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwt/errors.go b/vendor/github.com/square/go-jose/v3/jwt/errors.go new file mode 100644 index 0000000000000000000000000000000000000000..09f76ae4b96358e16272b19aa08f6e507d5aea13 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwt/errors.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwt/jwt.go b/vendor/github.com/square/go-jose/v3/jwt/jwt.go new file mode 100644 index 0000000000000000000000000000000000000000..a07c7824457af27044703d25b2671bb6c23cfac5 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwt/jwt.go differ diff --git a/vendor/github.com/square/go-jose/v3/jwt/validation.go b/vendor/github.com/square/go-jose/v3/jwt/validation.go new file mode 100644 index 0000000000000000000000000000000000000000..6f3ff4e8070b4de8eb1d8e74f75a6e145b5fbc2b Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/jwt/validation.go differ diff --git a/vendor/github.com/square/go-jose/v3/opaque.go b/vendor/github.com/square/go-jose/v3/opaque.go new file mode 100644 index 0000000000000000000000000000000000000000..4a8bd8f323dd74b0adc2c91ec54688e493736a1d Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/opaque.go differ diff --git a/vendor/github.com/square/go-jose/v3/shared.go b/vendor/github.com/square/go-jose/v3/shared.go new file mode 100644 index 0000000000000000000000000000000000000000..ad7f275a8be5f5cf9e6f194bec0e05bc20f04007 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/shared.go differ diff --git a/vendor/github.com/square/go-jose/v3/signing.go b/vendor/github.com/square/go-jose/v3/signing.go new file mode 100644 index 0000000000000000000000000000000000000000..327e001137d1f662f7926914b2a09b955f39ce00 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/signing.go differ diff --git a/vendor/github.com/square/go-jose/v3/symmetric.go b/vendor/github.com/square/go-jose/v3/symmetric.go new file mode 100644 index 0000000000000000000000000000000000000000..b6a461536d7d79fd42fc654079ab54befe43b501 Binary files /dev/null and b/vendor/github.com/square/go-jose/v3/symmetric.go differ diff --git a/vendor/github.com/stretchr/testify/require/doc.go b/vendor/github.com/stretchr/testify/require/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..169de39221c73123409330785477fdee95131445 Binary files /dev/null and b/vendor/github.com/stretchr/testify/require/doc.go differ diff --git a/vendor/github.com/stretchr/testify/require/forward_requirements.go b/vendor/github.com/stretchr/testify/require/forward_requirements.go new file mode 100644 index 0000000000000000000000000000000000000000..1dcb2338c4c4627f67b6a981a6fd38a76833b20c Binary files /dev/null and b/vendor/github.com/stretchr/testify/require/forward_requirements.go differ diff --git a/vendor/github.com/stretchr/testify/require/require.go b/vendor/github.com/stretchr/testify/require/require.go new file mode 100644 index 0000000000000000000000000000000000000000..51820df2e6726fe50df902ff53c6a2a08bc344e8 Binary files /dev/null and b/vendor/github.com/stretchr/testify/require/require.go differ diff --git a/vendor/github.com/stretchr/testify/require/require.go.tmpl b/vendor/github.com/stretchr/testify/require/require.go.tmpl new file mode 100644 index 0000000000000000000000000000000000000000..55e42ddebdc45db4a80e88cf35b10b9b852e1460 Binary files /dev/null and b/vendor/github.com/stretchr/testify/require/require.go.tmpl differ diff --git a/vendor/github.com/stretchr/testify/require/require_forward.go b/vendor/github.com/stretchr/testify/require/require_forward.go new file mode 100644 index 0000000000000000000000000000000000000000..ed54a9d83f35e103201daa02cf50a42a95f36877 Binary files /dev/null and b/vendor/github.com/stretchr/testify/require/require_forward.go differ diff --git a/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl b/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl new file mode 100644 index 0000000000000000000000000000000000000000..54124df1d3bbed65addd5df5f9c57c4ea07d4253 Binary files /dev/null and b/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl differ diff --git a/vendor/github.com/stretchr/testify/require/requirements.go b/vendor/github.com/stretchr/testify/require/requirements.go new file mode 100644 index 0000000000000000000000000000000000000000..91772dfeb919224e3f35b7e9f13d4b866a8339f7 Binary files /dev/null and b/vendor/github.com/stretchr/testify/require/requirements.go differ diff --git a/vendor/github.com/teserakt-io/golang-ed25519/LICENSE b/vendor/github.com/teserakt-io/golang-ed25519/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..74487567632c8f137ef3971b0f5912ca50bebcda Binary files /dev/null and b/vendor/github.com/teserakt-io/golang-ed25519/LICENSE differ diff --git a/vendor/github.com/teserakt-io/golang-ed25519/edwards25519/const.go b/vendor/github.com/teserakt-io/golang-ed25519/edwards25519/const.go new file mode 100644 index 0000000000000000000000000000000000000000..e39f086c1d87dbedcb0cd0ccb4d302bae2c04dbc Binary files /dev/null and b/vendor/github.com/teserakt-io/golang-ed25519/edwards25519/const.go differ diff --git a/vendor/github.com/teserakt-io/golang-ed25519/edwards25519/edwards25519.go b/vendor/github.com/teserakt-io/golang-ed25519/edwards25519/edwards25519.go new file mode 100644 index 0000000000000000000000000000000000000000..fd03c252af427bd27eda3a787c6062b949c65d5f Binary files /dev/null and b/vendor/github.com/teserakt-io/golang-ed25519/edwards25519/edwards25519.go differ diff --git a/vendor/github.com/teserakt-io/golang-ed25519/extra25519/extra25519.go b/vendor/github.com/teserakt-io/golang-ed25519/extra25519/extra25519.go new file mode 100644 index 0000000000000000000000000000000000000000..591b87ba858de05c97c631f0b6708666c5bdc104 Binary files /dev/null and b/vendor/github.com/teserakt-io/golang-ed25519/extra25519/extra25519.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/.gitignore b/vendor/github.com/xeipuuv/gojsonschema/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..68e993ce3e0c6100d049f2b106020c7404f8e26e Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/.gitignore differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/.travis.yml b/vendor/github.com/xeipuuv/gojsonschema/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..3289001cd18e9e981634d3b426b1ad53dee53be3 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/.travis.yml differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/LICENSE-APACHE-2.0.txt b/vendor/github.com/xeipuuv/gojsonschema/LICENSE-APACHE-2.0.txt new file mode 100644 index 0000000000000000000000000000000000000000..55ede8a42cc9e9eb71a44fcda698fa8c249475a8 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/LICENSE-APACHE-2.0.txt differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/README.md b/vendor/github.com/xeipuuv/gojsonschema/README.md new file mode 100644 index 0000000000000000000000000000000000000000..758f26df0f18a4ba17e1caf41e6f3bd73a616cbf Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/README.md differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/draft.go b/vendor/github.com/xeipuuv/gojsonschema/draft.go new file mode 100644 index 0000000000000000000000000000000000000000..61298e7aa0ff70e6df124120ce2324e8fc3cb884 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/draft.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/errors.go b/vendor/github.com/xeipuuv/gojsonschema/errors.go new file mode 100644 index 0000000000000000000000000000000000000000..e4e9814f3184f758e264b2a8c2d3abb1a7d95bbf Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/errors.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/format_checkers.go b/vendor/github.com/xeipuuv/gojsonschema/format_checkers.go new file mode 100644 index 0000000000000000000000000000000000000000..873ffc7d79b8dc8c45f2db34aababf64913b1506 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/format_checkers.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/glide.yaml b/vendor/github.com/xeipuuv/gojsonschema/glide.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ab6fb867c5c5e572e3fbbd6e517a46dec9cd0245 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/glide.yaml differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/internalLog.go b/vendor/github.com/xeipuuv/gojsonschema/internalLog.go new file mode 100644 index 0000000000000000000000000000000000000000..4ef7a8d03e71d1d04f0359db58fcf1233f4d78b6 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/internalLog.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go b/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go new file mode 100644 index 0000000000000000000000000000000000000000..0e979707b4a395bbb983b3991c6182b7aeef4858 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/jsonLoader.go b/vendor/github.com/xeipuuv/gojsonschema/jsonLoader.go new file mode 100644 index 0000000000000000000000000000000000000000..5d88af263e5b6d4210d677496fd1e9f3c3ed43b0 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/jsonLoader.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/locales.go b/vendor/github.com/xeipuuv/gojsonschema/locales.go new file mode 100644 index 0000000000000000000000000000000000000000..a416225cdb38a406605149f71b5b8d64c928ad3d Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/locales.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/result.go b/vendor/github.com/xeipuuv/gojsonschema/result.go new file mode 100644 index 0000000000000000000000000000000000000000..0a0179148ba0f57b5a53acabd9fb497e092bb969 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/result.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/schema.go b/vendor/github.com/xeipuuv/gojsonschema/schema.go new file mode 100644 index 0000000000000000000000000000000000000000..9e93cd79558ea91bae3b5bdd3970d99418caac46 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/schema.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/schemaLoader.go b/vendor/github.com/xeipuuv/gojsonschema/schemaLoader.go new file mode 100644 index 0000000000000000000000000000000000000000..20db0c1f99a5c2e12cdc5a5144535be820286367 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/schemaLoader.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/schemaPool.go b/vendor/github.com/xeipuuv/gojsonschema/schemaPool.go new file mode 100644 index 0000000000000000000000000000000000000000..35b1cc6306619bdc583c9e1ca420e3cff6f65ddf Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/schemaPool.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/schemaReferencePool.go b/vendor/github.com/xeipuuv/gojsonschema/schemaReferencePool.go new file mode 100644 index 0000000000000000000000000000000000000000..6e5e1b5cdb36936b32f804a231bad151c39c3639 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/schemaReferencePool.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/schemaType.go b/vendor/github.com/xeipuuv/gojsonschema/schemaType.go new file mode 100644 index 0000000000000000000000000000000000000000..36b447a2915b46a311e0dfa5dfde7c23ab350b90 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/schemaType.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/subSchema.go b/vendor/github.com/xeipuuv/gojsonschema/subSchema.go new file mode 100644 index 0000000000000000000000000000000000000000..ec779812c31972148aae64e9329101e3288ea305 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/subSchema.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/types.go b/vendor/github.com/xeipuuv/gojsonschema/types.go new file mode 100644 index 0000000000000000000000000000000000000000..0e6fd517350d1388f2c11318799980f215a14669 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/types.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/utils.go b/vendor/github.com/xeipuuv/gojsonschema/utils.go new file mode 100644 index 0000000000000000000000000000000000000000..a17d22e3bd0b8ad5053d0449e3fa53231cde3fee Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/utils.go differ diff --git a/vendor/github.com/xeipuuv/gojsonschema/validation.go b/vendor/github.com/xeipuuv/gojsonschema/validation.go new file mode 100644 index 0000000000000000000000000000000000000000..74091bca19aca12eb6d25c468d64ceebb7bfd5a7 Binary files /dev/null and b/vendor/github.com/xeipuuv/gojsonschema/validation.go differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b.go b/vendor/golang.org/x/crypto/blake2b/blake2b.go new file mode 100644 index 0000000000000000000000000000000000000000..d2e98d4295bdb83774fee0bb36ac25dc18548f25 Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2b.go differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.go b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.go new file mode 100644 index 0000000000000000000000000000000000000000..56bfaaa17da6dea347e6d14e7e20203849a572aa Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.go differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.s b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..4b9daa18d9d9c39028ae26cbea53b3fd2c7cd89a Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.s differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go new file mode 100644 index 0000000000000000000000000000000000000000..5fa1b32841df3a9aae06ffa993035f1984ad3041 Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..ae75eb9afcd7a12bab016c69321b9d384240bad3 Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go b/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go new file mode 100644 index 0000000000000000000000000000000000000000..3168a8aa3c834ae3c7b6ff5194f3f95b40bed61b Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go b/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go new file mode 100644 index 0000000000000000000000000000000000000000..b0137cdf025cb1bbb399289ac4b7eadd980ee1f6 Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go differ diff --git a/vendor/golang.org/x/crypto/blake2b/blake2x.go b/vendor/golang.org/x/crypto/blake2b/blake2x.go new file mode 100644 index 0000000000000000000000000000000000000000..52c414db0e64d77e877835a7da8d5aad51004243 Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/blake2x.go differ diff --git a/vendor/golang.org/x/crypto/blake2b/register.go b/vendor/golang.org/x/crypto/blake2b/register.go new file mode 100644 index 0000000000000000000000000000000000000000..9d8633963cb6e16a26236c24535ee6c61f7b8aec Binary files /dev/null and b/vendor/golang.org/x/crypto/blake2b/register.go differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_arm64.go b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..94c71ac1ac863f7b7ae209a65bc273b095d50d9a Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.go differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s new file mode 100644 index 0000000000000000000000000000000000000000..63cae9e6f0b1ba54dfd55721f855350e8e3a48b3 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_generic.go b/vendor/golang.org/x/crypto/chacha20/chacha_generic.go new file mode 100644 index 0000000000000000000000000000000000000000..a2ecf5c325b9118d4edc4c93a52e462dd3fb1069 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_generic.go differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go b/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go new file mode 100644 index 0000000000000000000000000000000000000000..025b49897e32b21abc89d4d1533e1ade5e847194 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go new file mode 100644 index 0000000000000000000000000000000000000000..da420b2e97b03c13318b66fc62eb45b418739579 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s new file mode 100644 index 0000000000000000000000000000000000000000..5c0fed26f85027845e4acaaa7dda6699fa670c25 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go new file mode 100644 index 0000000000000000000000000000000000000000..c5898db46584531f1b29d5338055e1c4c01e7fc7 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.go differ diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s new file mode 100644 index 0000000000000000000000000000000000000000..f3ef5a019d9593e4d70ce876f48f3a74562d245e Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s differ diff --git a/vendor/golang.org/x/crypto/chacha20/xor.go b/vendor/golang.org/x/crypto/chacha20/xor.go new file mode 100644 index 0000000000000000000000000000000000000000..c2d04851e0d13237589e4897cfeb39c584661945 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20/xor.go differ diff --git a/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go new file mode 100644 index 0000000000000000000000000000000000000000..93da7322bc48c29475d9dbc6bcab81c756e380ee Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go differ diff --git a/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go new file mode 100644 index 0000000000000000000000000000000000000000..25959b9a6efadab04e8909ab4462da7084ad1fab Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go differ diff --git a/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..867c181a14c07411be6f31accc1cd85d5fdc615e Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s differ diff --git a/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go new file mode 100644 index 0000000000000000000000000000000000000000..96b2fd898bbca50a889c8a1c459ce2f69d44f5b7 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go differ diff --git a/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go new file mode 100644 index 0000000000000000000000000000000000000000..f832b33d45f208983ff50c1e6ef74a46935245e0 Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go differ diff --git a/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go b/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go new file mode 100644 index 0000000000000000000000000000000000000000..1cebfe946f44407b0515add20bade859384586de Binary files /dev/null and b/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519.go b/vendor/golang.org/x/crypto/curve25519/curve25519.go new file mode 100644 index 0000000000000000000000000000000000000000..cda3fdd3540dd0363d6e2d1e85a3ad161fb0078f Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/curve25519.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/README b/vendor/golang.org/x/crypto/curve25519/internal/field/README new file mode 100644 index 0000000000000000000000000000000000000000..e25bca7dc806b3c413494df90f4e35ef75b66e35 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/README differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe.go new file mode 100644 index 0000000000000000000000000000000000000000..ca841ad99e3ab72f881e775dd33f9fe07a1791e7 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.go new file mode 100644 index 0000000000000000000000000000000000000000..44dc8e8caf916316195ab810b746beaf7e165983 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.s b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..293f013c94a66c8657217e75f7f9ada0bb3c4427 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.s differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64_noasm.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64_noasm.go new file mode 100644 index 0000000000000000000000000000000000000000..ddb6c9b8f7f2453bfedcf56d7533048b38255d1a Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64_noasm.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..af459ef51549e743f65998ef295447dc0feac8ff Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.s b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.s new file mode 100644 index 0000000000000000000000000000000000000000..5c91e458923e32df3bb0c9599b3f9061127f0dd4 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.s differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64_noasm.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64_noasm.go new file mode 100644 index 0000000000000000000000000000000000000000..234a5b2e5d18abb386567fe10e05517930cc4815 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64_noasm.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_generic.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_generic.go new file mode 100644 index 0000000000000000000000000000000000000000..7b5b78cbd6d7bf9eee2b764edd19d875b2710720 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_generic.go differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint b/vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint new file mode 100644 index 0000000000000000000000000000000000000000..e3685f95cab22f3f8a781bd1ccdc7c09e16cc93a Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint differ diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/sync.sh b/vendor/golang.org/x/crypto/curve25519/internal/field/sync.sh new file mode 100644 index 0000000000000000000000000000000000000000..1ba22a8b4c9a28c8d64d56db596e8d4595a9e4c7 Binary files /dev/null and b/vendor/golang.org/x/crypto/curve25519/internal/field/sync.sh differ diff --git a/vendor/golang.org/x/crypto/ed25519/ed25519.go b/vendor/golang.org/x/crypto/ed25519/ed25519.go new file mode 100644 index 0000000000000000000000000000000000000000..71ad917dadd8dc6af16289290c37878a84c242f8 Binary files /dev/null and b/vendor/golang.org/x/crypto/ed25519/ed25519.go differ diff --git a/vendor/golang.org/x/crypto/ed25519/ed25519_go113.go b/vendor/golang.org/x/crypto/ed25519/ed25519_go113.go new file mode 100644 index 0000000000000000000000000000000000000000..b5974dc8b27bb23f1f7d0771f024d8bc1486292a Binary files /dev/null and b/vendor/golang.org/x/crypto/ed25519/ed25519_go113.go differ diff --git a/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go new file mode 100644 index 0000000000000000000000000000000000000000..e39f086c1d87dbedcb0cd0ccb4d302bae2c04dbc Binary files /dev/null and b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/const.go differ diff --git a/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go new file mode 100644 index 0000000000000000000000000000000000000000..fd03c252af427bd27eda3a787c6062b949c65d5f Binary files /dev/null and b/vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go differ diff --git a/vendor/golang.org/x/crypto/hkdf/hkdf.go b/vendor/golang.org/x/crypto/hkdf/hkdf.go new file mode 100644 index 0000000000000000000000000000000000000000..dda3f143bec506c81852b3f9e19dd7ffbf4c92cf Binary files /dev/null and b/vendor/golang.org/x/crypto/hkdf/hkdf.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/bits_compat.go b/vendor/golang.org/x/crypto/internal/poly1305/bits_compat.go new file mode 100644 index 0000000000000000000000000000000000000000..45b5c966b2be38e4e7a05bd9f454625d99d555d2 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/bits_compat.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/bits_go1.13.go b/vendor/golang.org/x/crypto/internal/poly1305/bits_go1.13.go new file mode 100644 index 0000000000000000000000000000000000000000..ed52b3418ab537859539f0ed6ca1916e01a4ca61 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/bits_go1.13.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go b/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go new file mode 100644 index 0000000000000000000000000000000000000000..f184b67d98db2903033de12f9f82dbe9ab35577e Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go b/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go new file mode 100644 index 0000000000000000000000000000000000000000..4aaea810a268238b284b050196681bc67e604b33 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.go b/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.go new file mode 100644 index 0000000000000000000000000000000000000000..6d522333f29e86155e57ac4db1f6cdc6b77278fd Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s b/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..1d74f0f88189b152f06e8f581474a70a8b4a8b0c Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go b/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go new file mode 100644 index 0000000000000000000000000000000000000000..c942a65904fa97f4e8efa9203e7cfca42f2f72d6 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go new file mode 100644 index 0000000000000000000000000000000000000000..4a069941a6ef9bdda4ec4758f402f8e4973e13e2 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s new file mode 100644 index 0000000000000000000000000000000000000000..58422aad230570fa1b3292a95e1332d50a965042 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go b/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go new file mode 100644 index 0000000000000000000000000000000000000000..62cc9f84709e303c745030b088064d26ba8ed8e3 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go differ diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s b/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s new file mode 100644 index 0000000000000000000000000000000000000000..aa9e0494c909d8ec768719524c5d46277859f670 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s differ diff --git a/vendor/golang.org/x/crypto/internal/subtle/aliasing.go b/vendor/golang.org/x/crypto/internal/subtle/aliasing.go new file mode 100644 index 0000000000000000000000000000000000000000..4fad24f8dcde8189a34f7611bd81df0ef35d7004 Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/subtle/aliasing.go differ diff --git a/vendor/golang.org/x/crypto/internal/subtle/aliasing_purego.go b/vendor/golang.org/x/crypto/internal/subtle/aliasing_purego.go new file mode 100644 index 0000000000000000000000000000000000000000..80ccbed2c0de2df1791420e52f5b4ed7d321809e Binary files /dev/null and b/vendor/golang.org/x/crypto/internal/subtle/aliasing_purego.go differ diff --git a/vendor/golang.org/x/crypto/poly1305/poly1305_compat.go b/vendor/golang.org/x/crypto/poly1305/poly1305_compat.go new file mode 100644 index 0000000000000000000000000000000000000000..dd975a32c988a18ff81aa2f22f2315d98d46eb2c Binary files /dev/null and b/vendor/golang.org/x/crypto/poly1305/poly1305_compat.go differ diff --git a/vendor/golang.org/x/net/AUTHORS b/vendor/golang.org/x/net/AUTHORS new file mode 100644 index 0000000000000000000000000000000000000000..15167cd746c560e5b3d3b233a169aa64d3e9101e Binary files /dev/null and b/vendor/golang.org/x/net/AUTHORS differ diff --git a/vendor/golang.org/x/net/CONTRIBUTORS b/vendor/golang.org/x/net/CONTRIBUTORS new file mode 100644 index 0000000000000000000000000000000000000000..1c4577e9680611383f46044d17fa343a96997c3c Binary files /dev/null and b/vendor/golang.org/x/net/CONTRIBUTORS differ diff --git a/vendor/golang.org/x/net/LICENSE b/vendor/golang.org/x/net/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..6a66aea5eafe0ca6a688840c47219556c552488e Binary files /dev/null and b/vendor/golang.org/x/net/LICENSE differ diff --git a/vendor/golang.org/x/net/PATENTS b/vendor/golang.org/x/net/PATENTS new file mode 100644 index 0000000000000000000000000000000000000000..733099041f84fa1e58611ab2e11af51c1f26d1d2 Binary files /dev/null and b/vendor/golang.org/x/net/PATENTS differ diff --git a/vendor/golang.org/x/net/http/httpguts/guts.go b/vendor/golang.org/x/net/http/httpguts/guts.go new file mode 100644 index 0000000000000000000000000000000000000000..e6cd0ced39283ebdf38d79bbde002dc6db70b534 Binary files /dev/null and b/vendor/golang.org/x/net/http/httpguts/guts.go differ diff --git a/vendor/golang.org/x/net/http/httpguts/httplex.go b/vendor/golang.org/x/net/http/httpguts/httplex.go new file mode 100644 index 0000000000000000000000000000000000000000..c79aa73f28bb9a522de0d653b01637083c631e85 Binary files /dev/null and b/vendor/golang.org/x/net/http/httpguts/httplex.go differ diff --git a/vendor/golang.org/x/net/http2/.gitignore b/vendor/golang.org/x/net/http2/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..190f12234adf847a915f13ff69d9048d7d3b4d73 Binary files /dev/null and b/vendor/golang.org/x/net/http2/.gitignore differ diff --git a/vendor/golang.org/x/net/http2/Dockerfile b/vendor/golang.org/x/net/http2/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..8512245952be234dcc5c43b0f8b46dad29d05233 Binary files /dev/null and b/vendor/golang.org/x/net/http2/Dockerfile differ diff --git a/vendor/golang.org/x/net/http2/Makefile b/vendor/golang.org/x/net/http2/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..55fd826f77bd99fac0e546e42b921ac5ca1e9d12 Binary files /dev/null and b/vendor/golang.org/x/net/http2/Makefile differ diff --git a/vendor/golang.org/x/net/http2/ascii.go b/vendor/golang.org/x/net/http2/ascii.go new file mode 100644 index 0000000000000000000000000000000000000000..17caa205869fdf2eea89dadd48d62273e6ce06c0 Binary files /dev/null and b/vendor/golang.org/x/net/http2/ascii.go differ diff --git a/vendor/golang.org/x/net/http2/ciphers.go b/vendor/golang.org/x/net/http2/ciphers.go new file mode 100644 index 0000000000000000000000000000000000000000..c9a0cf3b422c698dd66f753813afc04c20a5dcd8 Binary files /dev/null and b/vendor/golang.org/x/net/http2/ciphers.go differ diff --git a/vendor/golang.org/x/net/http2/client_conn_pool.go b/vendor/golang.org/x/net/http2/client_conn_pool.go new file mode 100644 index 0000000000000000000000000000000000000000..c936843eafa151d3164dcc2481d66a42cface736 Binary files /dev/null and b/vendor/golang.org/x/net/http2/client_conn_pool.go differ diff --git a/vendor/golang.org/x/net/http2/databuffer.go b/vendor/golang.org/x/net/http2/databuffer.go new file mode 100644 index 0000000000000000000000000000000000000000..a3067f8de741357e02d9e51e105e7fe6c22421fe Binary files /dev/null and b/vendor/golang.org/x/net/http2/databuffer.go differ diff --git a/vendor/golang.org/x/net/http2/errors.go b/vendor/golang.org/x/net/http2/errors.go new file mode 100644 index 0000000000000000000000000000000000000000..2663e5d287eed866a07f348effc4c674215b758c Binary files /dev/null and b/vendor/golang.org/x/net/http2/errors.go differ diff --git a/vendor/golang.org/x/net/http2/flow.go b/vendor/golang.org/x/net/http2/flow.go new file mode 100644 index 0000000000000000000000000000000000000000..b51f0e0cf1f53f979dc19e3214e7631b4678beec Binary files /dev/null and b/vendor/golang.org/x/net/http2/flow.go differ diff --git a/vendor/golang.org/x/net/http2/frame.go b/vendor/golang.org/x/net/http2/frame.go new file mode 100644 index 0000000000000000000000000000000000000000..96a7479052419d562fca8ebbf4e048ffbcae28ee Binary files /dev/null and b/vendor/golang.org/x/net/http2/frame.go differ diff --git a/vendor/golang.org/x/net/http2/go111.go b/vendor/golang.org/x/net/http2/go111.go new file mode 100644 index 0000000000000000000000000000000000000000..5bf62b032ec5158d04370783ba0a12799a960ad3 Binary files /dev/null and b/vendor/golang.org/x/net/http2/go111.go differ diff --git a/vendor/golang.org/x/net/http2/go115.go b/vendor/golang.org/x/net/http2/go115.go new file mode 100644 index 0000000000000000000000000000000000000000..908af1ab93c5c59ad02945b5f15706ba5642642c Binary files /dev/null and b/vendor/golang.org/x/net/http2/go115.go differ diff --git a/vendor/golang.org/x/net/http2/go118.go b/vendor/golang.org/x/net/http2/go118.go new file mode 100644 index 0000000000000000000000000000000000000000..aca4b2b31acdb81ff8dd13d9186d12857aa8df92 Binary files /dev/null and b/vendor/golang.org/x/net/http2/go118.go differ diff --git a/vendor/golang.org/x/net/http2/gotrack.go b/vendor/golang.org/x/net/http2/gotrack.go new file mode 100644 index 0000000000000000000000000000000000000000..9933c9f8c7487b62324558e18c2c878cb5e363d7 Binary files /dev/null and b/vendor/golang.org/x/net/http2/gotrack.go differ diff --git a/vendor/golang.org/x/net/http2/headermap.go b/vendor/golang.org/x/net/http2/headermap.go new file mode 100644 index 0000000000000000000000000000000000000000..9e12941da4c3d89d88f6f6076f1c717b48364bb7 Binary files /dev/null and b/vendor/golang.org/x/net/http2/headermap.go differ diff --git a/vendor/golang.org/x/net/http2/hpack/encode.go b/vendor/golang.org/x/net/http2/hpack/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..97f17831fc55b8c944d501320dbc5d2f03016e39 Binary files /dev/null and b/vendor/golang.org/x/net/http2/hpack/encode.go differ diff --git a/vendor/golang.org/x/net/http2/hpack/hpack.go b/vendor/golang.org/x/net/http2/hpack/hpack.go new file mode 100644 index 0000000000000000000000000000000000000000..85f18a2b0a8616295fdb1e69c9df352bf944e436 Binary files /dev/null and b/vendor/golang.org/x/net/http2/hpack/hpack.go differ diff --git a/vendor/golang.org/x/net/http2/hpack/huffman.go b/vendor/golang.org/x/net/http2/hpack/huffman.go new file mode 100644 index 0000000000000000000000000000000000000000..fe0b84ccd467c40be86070fef89ea75360afceb0 Binary files /dev/null and b/vendor/golang.org/x/net/http2/hpack/huffman.go differ diff --git a/vendor/golang.org/x/net/http2/hpack/tables.go b/vendor/golang.org/x/net/http2/hpack/tables.go new file mode 100644 index 0000000000000000000000000000000000000000..a66cfbea69d91145413a42c4772fb332360b1be6 Binary files /dev/null and b/vendor/golang.org/x/net/http2/hpack/tables.go differ diff --git a/vendor/golang.org/x/net/http2/http2.go b/vendor/golang.org/x/net/http2/http2.go new file mode 100644 index 0000000000000000000000000000000000000000..5571ccfd26132f87f7d1686c4cf3596588496f5e Binary files /dev/null and b/vendor/golang.org/x/net/http2/http2.go differ diff --git a/vendor/golang.org/x/net/http2/not_go111.go b/vendor/golang.org/x/net/http2/not_go111.go new file mode 100644 index 0000000000000000000000000000000000000000..cc0baa8197fece7709917962d63eb58e6145e84c Binary files /dev/null and b/vendor/golang.org/x/net/http2/not_go111.go differ diff --git a/vendor/golang.org/x/net/http2/not_go115.go b/vendor/golang.org/x/net/http2/not_go115.go new file mode 100644 index 0000000000000000000000000000000000000000..e6c04cf7ac75c6bbbd34360f3ea2a894e839efaa Binary files /dev/null and b/vendor/golang.org/x/net/http2/not_go115.go differ diff --git a/vendor/golang.org/x/net/http2/not_go118.go b/vendor/golang.org/x/net/http2/not_go118.go new file mode 100644 index 0000000000000000000000000000000000000000..eab532c96bc085c395489b5982bd3b2bd1270372 Binary files /dev/null and b/vendor/golang.org/x/net/http2/not_go118.go differ diff --git a/vendor/golang.org/x/net/http2/pipe.go b/vendor/golang.org/x/net/http2/pipe.go new file mode 100644 index 0000000000000000000000000000000000000000..c15b8a7719b5c51c545aac668fe97fee0b8bbb2b Binary files /dev/null and b/vendor/golang.org/x/net/http2/pipe.go differ diff --git a/vendor/golang.org/x/net/http2/server.go b/vendor/golang.org/x/net/http2/server.go new file mode 100644 index 0000000000000000000000000000000000000000..e644d9b2f34dc310e8cac27bfc6adabb6017700f Binary files /dev/null and b/vendor/golang.org/x/net/http2/server.go differ diff --git a/vendor/golang.org/x/net/http2/transport.go b/vendor/golang.org/x/net/http2/transport.go new file mode 100644 index 0000000000000000000000000000000000000000..4f098976377c1d0da224814582134777b731b25f Binary files /dev/null and b/vendor/golang.org/x/net/http2/transport.go differ diff --git a/vendor/golang.org/x/net/http2/write.go b/vendor/golang.org/x/net/http2/write.go new file mode 100644 index 0000000000000000000000000000000000000000..33f61398a1236d7076dccc90342bcedeec1c111c Binary files /dev/null and b/vendor/golang.org/x/net/http2/write.go differ diff --git a/vendor/golang.org/x/net/http2/writesched.go b/vendor/golang.org/x/net/http2/writesched.go new file mode 100644 index 0000000000000000000000000000000000000000..c7cd0017392ef499674f18c24a6fde87887fd982 Binary files /dev/null and b/vendor/golang.org/x/net/http2/writesched.go differ diff --git a/vendor/golang.org/x/net/http2/writesched_priority.go b/vendor/golang.org/x/net/http2/writesched_priority.go new file mode 100644 index 0000000000000000000000000000000000000000..2618b2c11d228ded77bdacfbef2d25be346c314e Binary files /dev/null and b/vendor/golang.org/x/net/http2/writesched_priority.go differ diff --git a/vendor/golang.org/x/net/http2/writesched_random.go b/vendor/golang.org/x/net/http2/writesched_random.go new file mode 100644 index 0000000000000000000000000000000000000000..f2e55e05ce9083ffd206f75de286d5172de81866 Binary files /dev/null and b/vendor/golang.org/x/net/http2/writesched_random.go differ diff --git a/vendor/golang.org/x/net/idna/go118.go b/vendor/golang.org/x/net/idna/go118.go new file mode 100644 index 0000000000000000000000000000000000000000..c5c4338dbed47ebc8e608d12559b98d850471b62 Binary files /dev/null and b/vendor/golang.org/x/net/idna/go118.go differ diff --git a/vendor/golang.org/x/net/idna/idna10.0.0.go b/vendor/golang.org/x/net/idna/idna10.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..64ccf85febb661eef1780e23362131f780dc3044 Binary files /dev/null and b/vendor/golang.org/x/net/idna/idna10.0.0.go differ diff --git a/vendor/golang.org/x/net/idna/idna9.0.0.go b/vendor/golang.org/x/net/idna/idna9.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..aae6aac872b31d53fe77cff74edf704a8693d5d9 Binary files /dev/null and b/vendor/golang.org/x/net/idna/idna9.0.0.go differ diff --git a/vendor/golang.org/x/net/idna/pre_go118.go b/vendor/golang.org/x/net/idna/pre_go118.go new file mode 100644 index 0000000000000000000000000000000000000000..3aaccab1c5a0e49559727d1f0dbd4823d62d0c24 Binary files /dev/null and b/vendor/golang.org/x/net/idna/pre_go118.go differ diff --git a/vendor/golang.org/x/net/idna/punycode.go b/vendor/golang.org/x/net/idna/punycode.go new file mode 100644 index 0000000000000000000000000000000000000000..e8e3ac11a94b1920987183390d9dd09658311bcd Binary files /dev/null and b/vendor/golang.org/x/net/idna/punycode.go differ diff --git a/vendor/golang.org/x/net/idna/tables10.0.0.go b/vendor/golang.org/x/net/idna/tables10.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..d1d62ef459bb730ff5c6ff70c91d0289b8c4c40b Binary files /dev/null and b/vendor/golang.org/x/net/idna/tables10.0.0.go differ diff --git a/vendor/golang.org/x/net/idna/tables11.0.0.go b/vendor/golang.org/x/net/idna/tables11.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..167efba71256cd1696d175013b5bfb9f16348524 Binary files /dev/null and b/vendor/golang.org/x/net/idna/tables11.0.0.go differ diff --git a/vendor/golang.org/x/net/idna/tables12.0.0.go b/vendor/golang.org/x/net/idna/tables12.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..ab40f7bcc3b81235e6868d5ac016802eb336efe1 Binary files /dev/null and b/vendor/golang.org/x/net/idna/tables12.0.0.go differ diff --git a/vendor/golang.org/x/net/idna/tables13.0.0.go b/vendor/golang.org/x/net/idna/tables13.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..390c5e56d2a4e4c667ac20624dbe8e4c273e7003 Binary files /dev/null and b/vendor/golang.org/x/net/idna/tables13.0.0.go differ diff --git a/vendor/golang.org/x/net/idna/tables9.0.0.go b/vendor/golang.org/x/net/idna/tables9.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..4074b5332e3e3451eeb50793ab57aecd36a6485d Binary files /dev/null and b/vendor/golang.org/x/net/idna/tables9.0.0.go differ diff --git a/vendor/golang.org/x/net/idna/trie.go b/vendor/golang.org/x/net/idna/trie.go new file mode 100644 index 0000000000000000000000000000000000000000..c4ef847e7a37d62bb63ea5af5393f877d18ad56a Binary files /dev/null and b/vendor/golang.org/x/net/idna/trie.go differ diff --git a/vendor/golang.org/x/net/idna/trieval.go b/vendor/golang.org/x/net/idna/trieval.go new file mode 100644 index 0000000000000000000000000000000000000000..7a8cf889b5bc74c441b54261cd12feb8b158de5f Binary files /dev/null and b/vendor/golang.org/x/net/idna/trieval.go differ diff --git a/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s b/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s new file mode 100644 index 0000000000000000000000000000000000000000..db9171c2e4913da5a3e2fa1f18b3a3340b545913 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s differ diff --git a/vendor/golang.org/x/sys/cpu/byteorder.go b/vendor/golang.org/x/sys/cpu/byteorder.go new file mode 100644 index 0000000000000000000000000000000000000000..dcbb14ef35a4804b0d8e85741a0bf5fdf5948bd8 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/byteorder.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu.go b/vendor/golang.org/x/sys/cpu/cpu.go new file mode 100644 index 0000000000000000000000000000000000000000..b56886f261631b85368088313b20e8ad4a6e68ff Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_aix.go b/vendor/golang.org/x/sys/cpu/cpu_aix.go new file mode 100644 index 0000000000000000000000000000000000000000..8aaeef545a76bee1f012a9fe4f02d65150b187ce Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_aix.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_arm.go b/vendor/golang.org/x/sys/cpu/cpu_arm.go new file mode 100644 index 0000000000000000000000000000000000000000..301b752e9c53d88dbd701256855b0b142f390f32 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_arm.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..87dd5e30215b16b13e7159b03f141c1911b45999 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_arm64.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_arm64.s b/vendor/golang.org/x/sys/cpu/cpu_arm64.s new file mode 100644 index 0000000000000000000000000000000000000000..c61f95a05a73c4a7b51ebf0c7f088d711514fb86 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_arm64.s differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..ccf542a73da87b9da870e840fa21d5423c5e1ed0 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go new file mode 100644 index 0000000000000000000000000000000000000000..0af2f248412d5541eff2178327242351d8ac3ba5 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go new file mode 100644 index 0000000000000000000000000000000000000000..fa7cdb9bcd5fa46a70730c36e9502d5ab9b7393a Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..2aff31891162e82fdb8669bec0f5145e2821dbf6 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_gccgo_arm64.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go new file mode 100644 index 0000000000000000000000000000000000000000..4bfbda61993df172c27bdb795f26b56dd007b548 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c new file mode 100644 index 0000000000000000000000000000000000000000..e363c7d1319782c7ea58c87367a4f99528ff4c32 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go new file mode 100644 index 0000000000000000000000000000000000000000..863d415ab4987c21623b1b873a80c902335e6c9e Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux.go b/vendor/golang.org/x/sys/cpu/cpu_linux.go new file mode 100644 index 0000000000000000000000000000000000000000..159a686f6f7a9226d2af484264aa272a75ec2728 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_linux.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go b/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go new file mode 100644 index 0000000000000000000000000000000000000000..2057006dce4c0d7d3a8acc0cd720042ef277738b Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..79a38a0b9bccb3f8de6e4e02345245d528376f66 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go b/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go new file mode 100644 index 0000000000000000000000000000000000000000..6000db4cdd1b32a326b533fc608bd54a6eefd421 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_linux_mips64x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go b/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go new file mode 100644 index 0000000000000000000000000000000000000000..f4992b1a59388afe57b25cd150e7d4058cd8843c Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go b/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go new file mode 100644 index 0000000000000000000000000000000000000000..021356d6deb05e7cc40be27cfe6d09936be8e1f0 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_linux_ppc64x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go new file mode 100644 index 0000000000000000000000000000000000000000..1517ac61d31b5aef0d3e9d3d9df18ca199e4a580 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_linux_s390x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_mips64x.go b/vendor/golang.org/x/sys/cpu/cpu_mips64x.go new file mode 100644 index 0000000000000000000000000000000000000000..f4063c66423b09803b30d1cb61a5786a011342ef Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_mips64x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_mipsx.go b/vendor/golang.org/x/sys/cpu/cpu_mipsx.go new file mode 100644 index 0000000000000000000000000000000000000000..07c4e36d8f55de95b22081073514e03b0eb639fa Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_mipsx.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..ebfb3fc8e76d2acc9d337527e450fb3d69f8107b Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_other_arm.go b/vendor/golang.org/x/sys/cpu/cpu_other_arm.go new file mode 100644 index 0000000000000000000000000000000000000000..d7b4fb4ccc24fb6d6f5979b936b2184f057ad685 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_other_arm.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go new file mode 100644 index 0000000000000000000000000000000000000000..f8c484f589f5e01c10a907cf5a3a0b229ab72ccb Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_other_arm64.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go b/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go new file mode 100644 index 0000000000000000000000000000000000000000..0dafe9644a5a18cfc3e8319dedbaddf336a76fb8 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go b/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go new file mode 100644 index 0000000000000000000000000000000000000000..4e8acd16583ddcbc0fc75f268c1754abe6dff86e Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_riscv64.go b/vendor/golang.org/x/sys/cpu/cpu_riscv64.go new file mode 100644 index 0000000000000000000000000000000000000000..bd6c128af9b9184904450972a25f4a0ecf532bc2 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_riscv64.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_s390x.go new file mode 100644 index 0000000000000000000000000000000000000000..5881b8833f5a5370d8d012796e49d995dbf54955 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_s390x.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_s390x.s b/vendor/golang.org/x/sys/cpu/cpu_s390x.s new file mode 100644 index 0000000000000000000000000000000000000000..96f81e20971705fd804cb4597f979fb4f5bcca89 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_s390x.s differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_wasm.go b/vendor/golang.org/x/sys/cpu/cpu_wasm.go new file mode 100644 index 0000000000000000000000000000000000000000..7747d888a6929f4f67d3f14c435e2ac3331de9bd Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_wasm.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_x86.go b/vendor/golang.org/x/sys/cpu/cpu_x86.go new file mode 100644 index 0000000000000000000000000000000000000000..f5aacfc825d5b7044ce6c40f731fab4fb059e3af Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_x86.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_x86.s b/vendor/golang.org/x/sys/cpu/cpu_x86.s new file mode 100644 index 0000000000000000000000000000000000000000..39acab2ff5c2030410a6d45c72dd0372d9723acf Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_x86.s differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_zos.go b/vendor/golang.org/x/sys/cpu/cpu_zos.go new file mode 100644 index 0000000000000000000000000000000000000000..5f54683a22e3e2f0db222ff136d35ab62cdd799c Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_zos.go differ diff --git a/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go b/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go new file mode 100644 index 0000000000000000000000000000000000000000..ccb1b708aba987e33c3d6ed04d773967855206df Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go differ diff --git a/vendor/golang.org/x/sys/cpu/hwcap_linux.go b/vendor/golang.org/x/sys/cpu/hwcap_linux.go new file mode 100644 index 0000000000000000000000000000000000000000..f3baa379328fe55c255bb41e2423c2961a8f9ff3 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/hwcap_linux.go differ diff --git a/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go b/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go new file mode 100644 index 0000000000000000000000000000000000000000..96134157a10d18881e5b7fd9db35d5b3a2fc0952 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go differ diff --git a/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go b/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go new file mode 100644 index 0000000000000000000000000000000000000000..904be42ffdce1bc6d7351305cef046f14faa0543 Binary files /dev/null and b/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go differ diff --git a/vendor/golang.org/x/text/secure/bidirule/bidirule.go b/vendor/golang.org/x/text/secure/bidirule/bidirule.go new file mode 100644 index 0000000000000000000000000000000000000000..e2b70f76c2007c531bef87be67dc924207b2aa1d Binary files /dev/null and b/vendor/golang.org/x/text/secure/bidirule/bidirule.go differ diff --git a/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go b/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..8a7392c4a162fc46fae4ba0f332ff0ccf132c0e7 Binary files /dev/null and b/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go differ diff --git a/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go b/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..bb0a920018c8f1b52cdac1fb1fccef23edab20f7 Binary files /dev/null and b/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/bidi.go b/vendor/golang.org/x/text/unicode/bidi/bidi.go new file mode 100644 index 0000000000000000000000000000000000000000..fd057601bd9178c5def359f002b06ef0769bd6f3 Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/bidi.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/bracket.go b/vendor/golang.org/x/text/unicode/bidi/bracket.go new file mode 100644 index 0000000000000000000000000000000000000000..18539397914bfb0dfe473d0b9f3e55189d35f8b4 Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/bracket.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/core.go b/vendor/golang.org/x/text/unicode/bidi/core.go new file mode 100644 index 0000000000000000000000000000000000000000..e4c0811016c2acd3f54b0ec93d59f84f8cbba190 Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/core.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/prop.go b/vendor/golang.org/x/text/unicode/bidi/prop.go new file mode 100644 index 0000000000000000000000000000000000000000..7c9484e1f50c3517c207782b130c7fbbe0950712 Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/prop.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go b/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..42fa8d72cec004940ea8e126979a4e5ee09c7ee5 Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go b/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..56a0e1ea2165e4cc8f087abd53953e849f140dd0 Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go b/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..baacf32b43c310593f1c176f9b4619a2007e826d Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go b/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..f248effae17b18ec90a15d5344726176317db914 Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go b/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go new file mode 100644 index 0000000000000000000000000000000000000000..f517fdb202a5cfb6e57fa527fb7270c27b6c095a Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go differ diff --git a/vendor/golang.org/x/text/unicode/bidi/trieval.go b/vendor/golang.org/x/text/unicode/bidi/trieval.go new file mode 100644 index 0000000000000000000000000000000000000000..4c459c4b72e0ebc286e0426f83b68b4c4bc7478a Binary files /dev/null and b/vendor/golang.org/x/text/unicode/bidi/trieval.go differ diff --git a/vendor/golang.org/x/time/AUTHORS b/vendor/golang.org/x/time/AUTHORS new file mode 100644 index 0000000000000000000000000000000000000000..15167cd746c560e5b3d3b233a169aa64d3e9101e Binary files /dev/null and b/vendor/golang.org/x/time/AUTHORS differ diff --git a/vendor/golang.org/x/time/CONTRIBUTORS b/vendor/golang.org/x/time/CONTRIBUTORS new file mode 100644 index 0000000000000000000000000000000000000000..1c4577e9680611383f46044d17fa343a96997c3c Binary files /dev/null and b/vendor/golang.org/x/time/CONTRIBUTORS differ diff --git a/vendor/golang.org/x/time/LICENSE b/vendor/golang.org/x/time/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..6a66aea5eafe0ca6a688840c47219556c552488e Binary files /dev/null and b/vendor/golang.org/x/time/LICENSE differ diff --git a/vendor/golang.org/x/time/PATENTS b/vendor/golang.org/x/time/PATENTS new file mode 100644 index 0000000000000000000000000000000000000000..733099041f84fa1e58611ab2e11af51c1f26d1d2 Binary files /dev/null and b/vendor/golang.org/x/time/PATENTS differ diff --git a/vendor/golang.org/x/time/rate/rate.go b/vendor/golang.org/x/time/rate/rate.go new file mode 100644 index 0000000000000000000000000000000000000000..a98fe77827afbd1c220ffedc9421f9070c424913 Binary files /dev/null and b/vendor/golang.org/x/time/rate/rate.go differ diff --git a/vendor/google.golang.org/protobuf/AUTHORS b/vendor/google.golang.org/protobuf/AUTHORS new file mode 100644 index 0000000000000000000000000000000000000000..2b00ddba0dfee1022198444c16670d443840ef86 Binary files /dev/null and b/vendor/google.golang.org/protobuf/AUTHORS differ diff --git a/vendor/google.golang.org/protobuf/CONTRIBUTORS b/vendor/google.golang.org/protobuf/CONTRIBUTORS new file mode 100644 index 0000000000000000000000000000000000000000..1fbd3e976faf5af5bbd1d8268a70399234969ae4 Binary files /dev/null and b/vendor/google.golang.org/protobuf/CONTRIBUTORS differ diff --git a/vendor/google.golang.org/protobuf/LICENSE b/vendor/google.golang.org/protobuf/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..49ea0f928825ac4339299665088d332ac9953476 Binary files /dev/null and b/vendor/google.golang.org/protobuf/LICENSE differ diff --git a/vendor/google.golang.org/protobuf/PATENTS b/vendor/google.golang.org/protobuf/PATENTS new file mode 100644 index 0000000000000000000000000000000000000000..733099041f84fa1e58611ab2e11af51c1f26d1d2 Binary files /dev/null and b/vendor/google.golang.org/protobuf/PATENTS differ diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/decode.go b/vendor/google.golang.org/protobuf/encoding/protojson/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..07da5db3450e82404c8995fbe37faa270d161384 Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/protojson/decode.go differ diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/doc.go b/vendor/google.golang.org/protobuf/encoding/protojson/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..00ea2fecfb79cd342b06a62f696205c22118fc21 Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/protojson/doc.go differ diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/encode.go b/vendor/google.golang.org/protobuf/encoding/protojson/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..ba971f07810c62ec82fe02fc615b56de00bc18f3 Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/protojson/encode.go differ diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go b/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go new file mode 100644 index 0000000000000000000000000000000000000000..72924a9050cfbf4441b5ef499a69ed6088307425 Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go differ diff --git a/vendor/google.golang.org/protobuf/encoding/prototext/decode.go b/vendor/google.golang.org/protobuf/encoding/prototext/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..179d6e8fc1ce08d85d26a775af68c5247690b74b Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/prototext/decode.go differ diff --git a/vendor/google.golang.org/protobuf/encoding/prototext/doc.go b/vendor/google.golang.org/protobuf/encoding/prototext/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..162b4f98a41fda4ccbb51a9a9d1b6c753c77c7de Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/prototext/doc.go differ diff --git a/vendor/google.golang.org/protobuf/encoding/prototext/encode.go b/vendor/google.golang.org/protobuf/encoding/prototext/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..8d5304dc5b3201879acd8e06eb343e8cf7b7c97d Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/prototext/encode.go differ diff --git a/vendor/google.golang.org/protobuf/encoding/protowire/wire.go b/vendor/google.golang.org/protobuf/encoding/protowire/wire.go new file mode 100644 index 0000000000000000000000000000000000000000..a427f8b7043ba64ffdc3f8e1558e26e67fa8c110 Binary files /dev/null and b/vendor/google.golang.org/protobuf/encoding/protowire/wire.go differ diff --git a/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go b/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go new file mode 100644 index 0000000000000000000000000000000000000000..360c63329d4dc624ff6519b0300fa5fe249430bd Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go differ diff --git a/vendor/google.golang.org/protobuf/internal/descopts/options.go b/vendor/google.golang.org/protobuf/internal/descopts/options.go new file mode 100644 index 0000000000000000000000000000000000000000..8401be8c84fa10f63aa206a782fee3cbb9274b67 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/descopts/options.go differ diff --git a/vendor/google.golang.org/protobuf/internal/detrand/rand.go b/vendor/google.golang.org/protobuf/internal/detrand/rand.go new file mode 100644 index 0000000000000000000000000000000000000000..49c8676d484a788ce73d02a0524bef697370aaae Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/detrand/rand.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go b/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go new file mode 100644 index 0000000000000000000000000000000000000000..fdd9b13f2fcfff920328fd36823e6de0d9f200d0 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/json/decode.go b/vendor/google.golang.org/protobuf/internal/encoding/json/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..b13fd29e81e6de2da9be850e1a7cb361259a4a2a Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/json/decode.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/json/decode_number.go b/vendor/google.golang.org/protobuf/internal/encoding/json/decode_number.go new file mode 100644 index 0000000000000000000000000000000000000000..2999d71332021a8e913c27d78544fd59820af30c Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/json/decode_number.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/json/decode_string.go b/vendor/google.golang.org/protobuf/internal/encoding/json/decode_string.go new file mode 100644 index 0000000000000000000000000000000000000000..f7fea7d8dd4b507c2d610cd43439f0acf00366cb Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/json/decode_string.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/json/decode_token.go b/vendor/google.golang.org/protobuf/internal/encoding/json/decode_token.go new file mode 100644 index 0000000000000000000000000000000000000000..50578d6593c10c14c1d3923cb72a8017775f79af Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/json/decode_token.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/json/encode.go b/vendor/google.golang.org/protobuf/internal/encoding/json/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..fbdf348734201d8886550cd3cf6d5c422cfedc58 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/json/encode.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go b/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go new file mode 100644 index 0000000000000000000000000000000000000000..c1866f3c1a78cb0e68111373968d119e345f8e21 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go b/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go new file mode 100644 index 0000000000000000000000000000000000000000..38f1931c6fd1a9975ff084e3fda1dbdff010556b Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go b/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..eb10ea10261ae54f2b2b47a2e64f5d1dae2946cc Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go new file mode 100644 index 0000000000000000000000000000000000000000..f2d90b78999f30232bf7ad5ce590344a2d5dc6b3 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go new file mode 100644 index 0000000000000000000000000000000000000000..d4d34902360c690faa1e439eb07c7de726a581f9 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go new file mode 100644 index 0000000000000000000000000000000000000000..83d2b0d5aec3ca22046e4c52e49f5f34c4a9ba46 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go b/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..0ce8d6fb83d9ed269fab1988f5e4cd0a85b5dedf Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go differ diff --git a/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go b/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..da289ccce6e23976e1edac56765cf935fd3b00c3 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go differ diff --git a/vendor/google.golang.org/protobuf/internal/errors/errors.go b/vendor/google.golang.org/protobuf/internal/errors/errors.go new file mode 100644 index 0000000000000000000000000000000000000000..20c17b35e3a81c7110f18b5170b5f8dadeb435b8 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/errors/errors.go differ diff --git a/vendor/google.golang.org/protobuf/internal/errors/is_go112.go b/vendor/google.golang.org/protobuf/internal/errors/is_go112.go new file mode 100644 index 0000000000000000000000000000000000000000..f90e909b37ab81e679173b1fad5a9a9de2de6c37 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/errors/is_go112.go differ diff --git a/vendor/google.golang.org/protobuf/internal/errors/is_go113.go b/vendor/google.golang.org/protobuf/internal/errors/is_go113.go new file mode 100644 index 0000000000000000000000000000000000000000..dc05f4191c015eb960d3f7b61ba8350530521bff Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/errors/is_go113.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/build.go b/vendor/google.golang.org/protobuf/internal/filedesc/build.go new file mode 100644 index 0000000000000000000000000000000000000000..b293b6947361d084a79be85040ee85efbe513030 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filedesc/build.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc.go new file mode 100644 index 0000000000000000000000000000000000000000..98ab142aeee6780e6e71c6ad4dfa3f63e27a6b67 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filedesc/desc.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go new file mode 100644 index 0000000000000000000000000000000000000000..66e1fee5224327e2da0538e11445584cf9742281 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go new file mode 100644 index 0000000000000000000000000000000000000000..198451e3ec941da54e5856717b9bfa6c6ca05c6c Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go new file mode 100644 index 0000000000000000000000000000000000000000..aa294fff99a8f8df907f1263e855afafaab4cc97 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go b/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..30db19fdc75a104ece76b11322f7b7eb21376bf4 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go b/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go new file mode 100644 index 0000000000000000000000000000000000000000..dbf2c605bfe54b9882800e3e5ee88094a8ef0566 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go differ diff --git a/vendor/google.golang.org/protobuf/internal/filetype/build.go b/vendor/google.golang.org/protobuf/internal/filetype/build.go new file mode 100644 index 0000000000000000000000000000000000000000..0a0dd35de5a7c49b93079526a5ef1483de5470e0 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/filetype/build.go differ diff --git a/vendor/google.golang.org/protobuf/internal/flags/flags.go b/vendor/google.golang.org/protobuf/internal/flags/flags.go new file mode 100644 index 0000000000000000000000000000000000000000..58372dd3485096a4ff4414f8b4fed722d9f5ce39 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/flags/flags.go differ diff --git a/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go b/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go new file mode 100644 index 0000000000000000000000000000000000000000..a72995f02d9e09070359030ebfa8e18a3f25f026 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go differ diff --git a/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go b/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go new file mode 100644 index 0000000000000000000000000000000000000000..772e2f0e4d69fd7544dd1f3acf058777f3e4e45e Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/any_gen.go b/vendor/google.golang.org/protobuf/internal/genid/any_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..e6f7d47ab6d2a4753be3ee7b11a4c21c73f648ea Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/any_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/api_gen.go b/vendor/google.golang.org/protobuf/internal/genid/api_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..df8f9185013d167b18e2b7bff58ee2ae49d4d0af Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/api_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go b/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..e3cdf1c20591fbd2a94b053610883439c138d32d Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/doc.go b/vendor/google.golang.org/protobuf/internal/genid/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..45ccd01211ce4246a40c8bf9367aaf269ddb05eb Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/doc.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go b/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..b070ef4fd694c99db3a30783656e7235930ac72d Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go b/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..762abb34a4e9dad7bc7652447dde6ef224585a73 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go b/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..70bed453feee9549d46af5f9eb109016acf64e02 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/goname.go b/vendor/google.golang.org/protobuf/internal/genid/goname.go new file mode 100644 index 0000000000000000000000000000000000000000..693d2e9e1fe0b4be136f8e1ddfb257b5bbdd9824 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/goname.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/map_entry.go b/vendor/google.golang.org/protobuf/internal/genid/map_entry.go new file mode 100644 index 0000000000000000000000000000000000000000..8f9ea02ff2a4c12c8612c857576513ab6f622ac8 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/map_entry.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go b/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..3e99ae16c840d2b3a035ab28d373626269a101d6 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go b/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..1a38944b26e0f07f31aabd3652578a932f04eed4 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go b/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..f5cd5634c2e856bc25d7e50bdd6e648b2144539a Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/type_gen.go b/vendor/google.golang.org/protobuf/internal/genid/type_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..3bc710138ad92cc835f8e10ea6a5a4fb92f73227 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/type_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/wrappers.go b/vendor/google.golang.org/protobuf/internal/genid/wrappers.go new file mode 100644 index 0000000000000000000000000000000000000000..429384b85b02d2058d2caa177f345901ef8cb87c Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/wrappers.go differ diff --git a/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go b/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..72527d2ab032766a3451de12dc83caf170754d94 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/api_export.go b/vendor/google.golang.org/protobuf/internal/impl/api_export.go new file mode 100644 index 0000000000000000000000000000000000000000..abee5f30e9fd0ea18daed09e3030aa53f4608f03 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/api_export.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/checkinit.go b/vendor/google.golang.org/protobuf/internal/impl/checkinit.go new file mode 100644 index 0000000000000000000000000000000000000000..b82341e575cb334ed4381504b2b516509201ccac Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/checkinit.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go b/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go new file mode 100644 index 0000000000000000000000000000000000000000..08d35170b66cc6768261b2bac2e422ba490fbc5b Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_field.go b/vendor/google.golang.org/protobuf/internal/impl/codec_field.go new file mode 100644 index 0000000000000000000000000000000000000000..cb4b482d166f5571887f5584b345764a82e336a0 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_field.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go b/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..1a509b63ebc1767a0b2e0d5080bcdff9dedd9b64 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_map.go b/vendor/google.golang.org/protobuf/internal/impl/codec_map.go new file mode 100644 index 0000000000000000000000000000000000000000..c1245fef487651a967fbf27bfe03344321c7a705 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_map.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go b/vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go new file mode 100644 index 0000000000000000000000000000000000000000..2706bb67f5d8c471769f605a672d8f94f9d8ae02 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go b/vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go new file mode 100644 index 0000000000000000000000000000000000000000..1533ef600cd8b8c3749d82509a62db666837f1db Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_message.go b/vendor/google.golang.org/protobuf/internal/impl/codec_message.go new file mode 100644 index 0000000000000000000000000000000000000000..cd40527ff646203e19747ff7b823fc7750bd427c Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_message.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go b/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go new file mode 100644 index 0000000000000000000000000000000000000000..b7a23faf1e43c6679e9fe3e747eaa9481b027db2 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go b/vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go new file mode 100644 index 0000000000000000000000000000000000000000..90705e3aea746fbb33e000eb8013c85ad6f54db2 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go b/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go new file mode 100644 index 0000000000000000000000000000000000000000..e89971238879f2bfb7e6229257b065c4737912ed Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go b/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go new file mode 100644 index 0000000000000000000000000000000000000000..e118af1e20cd4eddb25385f23f32c4b14ef8225b Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/convert.go b/vendor/google.golang.org/protobuf/internal/impl/convert.go new file mode 100644 index 0000000000000000000000000000000000000000..acd61bb50b2ca04c04ce77b7ebc403d779dea121 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/convert.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/convert_list.go b/vendor/google.golang.org/protobuf/internal/impl/convert_list.go new file mode 100644 index 0000000000000000000000000000000000000000..6fccab520e59a4e55f76c3e14a02f5b748a6d6b4 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/convert_list.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/convert_map.go b/vendor/google.golang.org/protobuf/internal/impl/convert_map.go new file mode 100644 index 0000000000000000000000000000000000000000..de06b2593f89ac7ce22b66a1fadeec7b0ccee030 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/convert_map.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/decode.go b/vendor/google.golang.org/protobuf/internal/impl/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..949dc49a65b3cf4f9892292d9a556a66fe33d42d Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/decode.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/encode.go b/vendor/google.golang.org/protobuf/internal/impl/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..845c67d6e7e52d2e290557bebde51f363d715fed Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/encode.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/enum.go b/vendor/google.golang.org/protobuf/internal/impl/enum.go new file mode 100644 index 0000000000000000000000000000000000000000..8c1eab4bfd869fdd14e424e77e072624f771c12d Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/enum.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/extension.go b/vendor/google.golang.org/protobuf/internal/impl/extension.go new file mode 100644 index 0000000000000000000000000000000000000000..e904fd993657c613484e0b3d127cd7cdb1548c87 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/extension.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go new file mode 100644 index 0000000000000000000000000000000000000000..f7d7ffb51039e8e466defa40cf4eefce7a352c8a Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go new file mode 100644 index 0000000000000000000000000000000000000000..e3fb0b578586cd3dfe17c27586c753a6b29dfbe8 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go new file mode 100644 index 0000000000000000000000000000000000000000..49e723161c018390b836b4f5a44ca6caaa89e58c Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go new file mode 100644 index 0000000000000000000000000000000000000000..9ab091086c9664c603dfc38c4bbb4ff610c74602 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go b/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go new file mode 100644 index 0000000000000000000000000000000000000000..029feeefd792ba5a6c7230df231c715a36600146 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/merge.go b/vendor/google.golang.org/protobuf/internal/impl/merge.go new file mode 100644 index 0000000000000000000000000000000000000000..c65bbc0446ea8309cc5b2e6186138e172a5c6d34 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/merge.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go b/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..8816c274d28aa23fb79cf0110efd8355f9d5cfd7 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/message.go b/vendor/google.golang.org/protobuf/internal/impl/message.go new file mode 100644 index 0000000000000000000000000000000000000000..a104e28e858fa12dc5e2e95c2e7c0d6c06cde3b1 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/message.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go b/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go new file mode 100644 index 0000000000000000000000000000000000000000..9488b726131366509be747a136d4ba01bfcdf98a Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go b/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go new file mode 100644 index 0000000000000000000000000000000000000000..343cf872197f76f7c1a40c4eff2b2f14c93792d3 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go b/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..741d6e5b6bd21389859a95b73e856910a59be0cc Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go b/vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go new file mode 100644 index 0000000000000000000000000000000000000000..9e3ed821efb3ca22b4ae4aa702f27a94c2efef41 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go b/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go new file mode 100644 index 0000000000000000000000000000000000000000..9ecf23a85bb7c953a9f3c2bd183d67f56b6df8a3 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/validate.go b/vendor/google.golang.org/protobuf/internal/impl/validate.go new file mode 100644 index 0000000000000000000000000000000000000000..08cfb6054b4318cdb22338fc558addef1e734c06 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/validate.go differ diff --git a/vendor/google.golang.org/protobuf/internal/impl/weak.go b/vendor/google.golang.org/protobuf/internal/impl/weak.go new file mode 100644 index 0000000000000000000000000000000000000000..009cbefd1ed2ced72387cd6ffea24697e14535af Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/impl/weak.go differ diff --git a/vendor/google.golang.org/protobuf/internal/order/order.go b/vendor/google.golang.org/protobuf/internal/order/order.go new file mode 100644 index 0000000000000000000000000000000000000000..2a24953f6a47a856a905cafe688c2480fc5333c2 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/order/order.go differ diff --git a/vendor/google.golang.org/protobuf/internal/order/range.go b/vendor/google.golang.org/protobuf/internal/order/range.go new file mode 100644 index 0000000000000000000000000000000000000000..c8090e0c547f6c6e9eed09ea8c4340bbc61cb0f2 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/order/range.go differ diff --git a/vendor/google.golang.org/protobuf/internal/pragma/pragma.go b/vendor/google.golang.org/protobuf/internal/pragma/pragma.go new file mode 100644 index 0000000000000000000000000000000000000000..49dc4fcd98e6269afecc40d359d8fae0a9ba8aba Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/pragma/pragma.go differ diff --git a/vendor/google.golang.org/protobuf/internal/set/ints.go b/vendor/google.golang.org/protobuf/internal/set/ints.go new file mode 100644 index 0000000000000000000000000000000000000000..d3d7f89ab557d22b8b2839ee337e4b9b0ce27ebd Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/set/ints.go differ diff --git a/vendor/google.golang.org/protobuf/internal/strs/strings.go b/vendor/google.golang.org/protobuf/internal/strs/strings.go new file mode 100644 index 0000000000000000000000000000000000000000..0b74e76586b61adf69023b12d62caad8b7c9cb76 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/strs/strings.go differ diff --git a/vendor/google.golang.org/protobuf/internal/strs/strings_pure.go b/vendor/google.golang.org/protobuf/internal/strs/strings_pure.go new file mode 100644 index 0000000000000000000000000000000000000000..85e074c977dc4523a5785cecd1de895cac5df498 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/strs/strings_pure.go differ diff --git a/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go b/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go new file mode 100644 index 0000000000000000000000000000000000000000..2160c70191453742c768f05609fb8ab9b2105a46 Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go differ diff --git a/vendor/google.golang.org/protobuf/internal/version/version.go b/vendor/google.golang.org/protobuf/internal/version/version.go new file mode 100644 index 0000000000000000000000000000000000000000..14e774fb2ec7e080d6a17207fd9f86526151171e Binary files /dev/null and b/vendor/google.golang.org/protobuf/internal/version/version.go differ diff --git a/vendor/google.golang.org/protobuf/proto/checkinit.go b/vendor/google.golang.org/protobuf/proto/checkinit.go new file mode 100644 index 0000000000000000000000000000000000000000..3e9a6a2f66c77cdcb18acb3bb56ffa36be9e5a18 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/checkinit.go differ diff --git a/vendor/google.golang.org/protobuf/proto/decode.go b/vendor/google.golang.org/protobuf/proto/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..49f9b8c88cfd05a5a79bb3b53bcbc304276231d5 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/decode.go differ diff --git a/vendor/google.golang.org/protobuf/proto/decode_gen.go b/vendor/google.golang.org/protobuf/proto/decode_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..301eeb20f82fdbe0bee178adf07d40d657977f3b Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/decode_gen.go differ diff --git a/vendor/google.golang.org/protobuf/proto/doc.go b/vendor/google.golang.org/protobuf/proto/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..c52d8c4ab79ff703bb1a9737d3e36092efa87221 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/doc.go differ diff --git a/vendor/google.golang.org/protobuf/proto/encode.go b/vendor/google.golang.org/protobuf/proto/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..d18239c23723a8768a38d9bdb22cad8d8131a799 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/encode.go differ diff --git a/vendor/google.golang.org/protobuf/proto/encode_gen.go b/vendor/google.golang.org/protobuf/proto/encode_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..185dacfb49b7e34749970307ec67c47910747814 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/encode_gen.go differ diff --git a/vendor/google.golang.org/protobuf/proto/equal.go b/vendor/google.golang.org/protobuf/proto/equal.go new file mode 100644 index 0000000000000000000000000000000000000000..4dba2b969972908bd31d2f9e9de8fe9cfab3209b Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/equal.go differ diff --git a/vendor/google.golang.org/protobuf/proto/extension.go b/vendor/google.golang.org/protobuf/proto/extension.go new file mode 100644 index 0000000000000000000000000000000000000000..5f293cda86996b5e903d68c7bb838cc3427790bb Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/extension.go differ diff --git a/vendor/google.golang.org/protobuf/proto/merge.go b/vendor/google.golang.org/protobuf/proto/merge.go new file mode 100644 index 0000000000000000000000000000000000000000..d761ab331d1ce86d299e22a6e6a288b73b231979 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/merge.go differ diff --git a/vendor/google.golang.org/protobuf/proto/messageset.go b/vendor/google.golang.org/protobuf/proto/messageset.go new file mode 100644 index 0000000000000000000000000000000000000000..312d5d45c60f1a008110f63d4263dd80a0422deb Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/messageset.go differ diff --git a/vendor/google.golang.org/protobuf/proto/proto.go b/vendor/google.golang.org/protobuf/proto/proto.go new file mode 100644 index 0000000000000000000000000000000000000000..1f0d183b102dbbf20cae52c85066e4148377de77 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/proto.go differ diff --git a/vendor/google.golang.org/protobuf/proto/proto_methods.go b/vendor/google.golang.org/protobuf/proto/proto_methods.go new file mode 100644 index 0000000000000000000000000000000000000000..d8dd604f6b673e781f619b86ec8a26aa35892650 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/proto_methods.go differ diff --git a/vendor/google.golang.org/protobuf/proto/proto_reflect.go b/vendor/google.golang.org/protobuf/proto/proto_reflect.go new file mode 100644 index 0000000000000000000000000000000000000000..b103d43205c42cce6d3d47212f00ea97eaff470f Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/proto_reflect.go differ diff --git a/vendor/google.golang.org/protobuf/proto/reset.go b/vendor/google.golang.org/protobuf/proto/reset.go new file mode 100644 index 0000000000000000000000000000000000000000..3d7f894362f5cd65f5b78db8d2ae14c68fcdd844 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/reset.go differ diff --git a/vendor/google.golang.org/protobuf/proto/size.go b/vendor/google.golang.org/protobuf/proto/size.go new file mode 100644 index 0000000000000000000000000000000000000000..554b9c6c09a1fae51c688bef6c7a88123fd4c338 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/size.go differ diff --git a/vendor/google.golang.org/protobuf/proto/size_gen.go b/vendor/google.golang.org/protobuf/proto/size_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..3cf61a824a795ed6207839c8003baeb894ba5278 Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/size_gen.go differ diff --git a/vendor/google.golang.org/protobuf/proto/wrappers.go b/vendor/google.golang.org/protobuf/proto/wrappers.go new file mode 100644 index 0000000000000000000000000000000000000000..653b12c3af5030abfba2f5ff3ce0381c8d4bd49b Binary files /dev/null and b/vendor/google.golang.org/protobuf/proto/wrappers.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protodesc/desc.go b/vendor/google.golang.org/protobuf/reflect/protodesc/desc.go new file mode 100644 index 0000000000000000000000000000000000000000..e4dfb1205063b9b4a9895a1be8c8cfddd291ad81 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protodesc/desc.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protodesc/desc_init.go b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_init.go new file mode 100644 index 0000000000000000000000000000000000000000..37efda1afe9b26bcc2a291ad80b3300371b041c6 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_init.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protodesc/desc_resolve.go b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_resolve.go new file mode 100644 index 0000000000000000000000000000000000000000..cebb36cdade61af0093cfc2deb9a358e5dc19216 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_resolve.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protodesc/desc_validate.go b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_validate.go new file mode 100644 index 0000000000000000000000000000000000000000..9af1d56487a7c306c461b6688982cb13d6e3f543 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protodesc/desc_validate.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protodesc/proto.go b/vendor/google.golang.org/protobuf/reflect/protodesc/proto.go new file mode 100644 index 0000000000000000000000000000000000000000..a7c5ceffc9b15dab9b1e8270ccef4ae36f2f9904 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protodesc/proto.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go new file mode 100644 index 0000000000000000000000000000000000000000..6be5d16e9f37b37de8779f76e2e21cdf7ff8b295 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go new file mode 100644 index 0000000000000000000000000000000000000000..dd85915bd4bfb502184551ec8250a69246c56c50 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go new file mode 100644 index 0000000000000000000000000000000000000000..121ba3a07bba9378f18ceece15ec4a9c809d3435 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go new file mode 100644 index 0000000000000000000000000000000000000000..b03c1223c4a4963465a985e80e4dd0c09ae91c02 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go new file mode 100644 index 0000000000000000000000000000000000000000..8e53c44a9188a4de64217bba50872de70bedfd11 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go new file mode 100644 index 0000000000000000000000000000000000000000..f31981077827f2ee8408dcc27de2348e68fec5af Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go new file mode 100644 index 0000000000000000000000000000000000000000..918e685e1d5796147927d0a10ba935d98b091c24 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go new file mode 100644 index 0000000000000000000000000000000000000000..5a34147241939a8f4f3a39182a44c4401d88f4d8 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go new file mode 100644 index 0000000000000000000000000000000000000000..c45debdcac6c1aeb03636089327d8580814679b1 Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go differ diff --git a/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go b/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go new file mode 100644 index 0000000000000000000000000000000000000000..59f024c444fc82ae2f2e4e14f60ac899cb82cecb Binary files /dev/null and b/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go differ diff --git a/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go b/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go new file mode 100644 index 0000000000000000000000000000000000000000..c587276752ac633f921c4537d69004f1342ba8e8 Binary files /dev/null and b/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go differ diff --git a/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go b/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go new file mode 100644 index 0000000000000000000000000000000000000000..32c04f67eb73c2241974d41f178708cf0b4061b2 Binary files /dev/null and b/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go differ diff --git a/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go b/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go new file mode 100644 index 0000000000000000000000000000000000000000..4a1ab7fb3de1efa2e296d585d371453d7fa9cf83 Binary files /dev/null and b/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go differ diff --git a/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go b/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go new file mode 100644 index 0000000000000000000000000000000000000000..ff094e1ba44b297d717b2c53a9584b317bcd12ac Binary files /dev/null and b/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go differ diff --git a/vendor/google.golang.org/protobuf/types/descriptorpb/descriptor.pb.go b/vendor/google.golang.org/protobuf/types/descriptorpb/descriptor.pb.go new file mode 100644 index 0000000000000000000000000000000000000000..abe4ab5115bb2562f5dc7daadf79cbdb739acddf Binary files /dev/null and b/vendor/google.golang.org/protobuf/types/descriptorpb/descriptor.pb.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/.gitcookies.sh.enc b/vendor/gopkg.in/square/go-jose.v2/.gitcookies.sh.enc new file mode 100644 index 0000000000000000000000000000000000000000..730e569b069fa8c794447fbfe1307d43372bdd76 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/.gitcookies.sh.enc differ diff --git a/vendor/gopkg.in/square/go-jose.v2/.gitignore b/vendor/gopkg.in/square/go-jose.v2/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..5b4d73b681f6cefbc78563a7e7a74547be706974 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/.gitignore differ diff --git a/vendor/gopkg.in/square/go-jose.v2/.travis.yml b/vendor/gopkg.in/square/go-jose.v2/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..fc501ca9b71bf3770881c0ff9a9f03a0667a996e Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/.travis.yml differ diff --git a/vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md b/vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md new file mode 100644 index 0000000000000000000000000000000000000000..3305db0f653f8339e6cc3cdc2726f8c974495f77 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md differ diff --git a/vendor/gopkg.in/square/go-jose.v2/CONTRIBUTING.md b/vendor/gopkg.in/square/go-jose.v2/CONTRIBUTING.md new file mode 100644 index 0000000000000000000000000000000000000000..61b183651c0d877bedb0bb816c552b553846c138 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/CONTRIBUTING.md differ diff --git a/vendor/gopkg.in/square/go-jose.v2/LICENSE b/vendor/gopkg.in/square/go-jose.v2/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..d645695673349e3947e8e5ae42332d0ac3164cd7 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/LICENSE differ diff --git a/vendor/gopkg.in/square/go-jose.v2/README.md b/vendor/gopkg.in/square/go-jose.v2/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1791bfa8f6735e31dabf61cfd3b353be5ffab75d Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/README.md differ diff --git a/vendor/gopkg.in/square/go-jose.v2/asymmetric.go b/vendor/gopkg.in/square/go-jose.v2/asymmetric.go new file mode 100644 index 0000000000000000000000000000000000000000..67935561bc5081244d3229e78c2b0933b9e136d6 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/asymmetric.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/cipher/cbc_hmac.go b/vendor/gopkg.in/square/go-jose.v2/cipher/cbc_hmac.go new file mode 100644 index 0000000000000000000000000000000000000000..126b85ce252cba913670a7f00bc1b377cc789ac1 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/cipher/cbc_hmac.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/cipher/concat_kdf.go b/vendor/gopkg.in/square/go-jose.v2/cipher/concat_kdf.go new file mode 100644 index 0000000000000000000000000000000000000000..f62c3bdba5d0e6a149cae9af1f600cba222808ab Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/cipher/concat_kdf.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/cipher/ecdh_es.go b/vendor/gopkg.in/square/go-jose.v2/cipher/ecdh_es.go new file mode 100644 index 0000000000000000000000000000000000000000..c128e327f3166b25f89c73ed8169975a5bac9d13 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/cipher/ecdh_es.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/cipher/key_wrap.go b/vendor/gopkg.in/square/go-jose.v2/cipher/key_wrap.go new file mode 100644 index 0000000000000000000000000000000000000000..1d36d50151086690f6262bbf548886ce74836d02 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/cipher/key_wrap.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/crypter.go b/vendor/gopkg.in/square/go-jose.v2/crypter.go new file mode 100644 index 0000000000000000000000000000000000000000..c45c71206bae2a0d1a5718b2efd87b95fc19631b Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/crypter.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/doc.go b/vendor/gopkg.in/square/go-jose.v2/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..dd1387f3f06b990626139f0b8ca1eaf9d09465e7 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/doc.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/encoding.go b/vendor/gopkg.in/square/go-jose.v2/encoding.go new file mode 100644 index 0000000000000000000000000000000000000000..b9687c647d7126adc747ddb8d07da05ec5952d2d Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/encoding.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/LICENSE b/vendor/gopkg.in/square/go-jose.v2/json/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..74487567632c8f137ef3971b0f5912ca50bebcda Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/LICENSE differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/README.md b/vendor/gopkg.in/square/go-jose.v2/json/README.md new file mode 100644 index 0000000000000000000000000000000000000000..86de5e5581f582fb7c09c7c0ab48279651d39b0a Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/README.md differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/decode.go b/vendor/gopkg.in/square/go-jose.v2/json/decode.go new file mode 100644 index 0000000000000000000000000000000000000000..37457e5a834704b83405d8d1a48b3bee72691e24 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/decode.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/encode.go b/vendor/gopkg.in/square/go-jose.v2/json/encode.go new file mode 100644 index 0000000000000000000000000000000000000000..1dae8bb7cd80f34a6edd26a11afe974d0aa66a7c Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/encode.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/indent.go b/vendor/gopkg.in/square/go-jose.v2/json/indent.go new file mode 100644 index 0000000000000000000000000000000000000000..7cd9f4db184a7df373603b18f8f98be1c941f89e Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/indent.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/scanner.go b/vendor/gopkg.in/square/go-jose.v2/json/scanner.go new file mode 100644 index 0000000000000000000000000000000000000000..ee6622e8cf844b64932ab7ac7caf2c88cff4b28c Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/scanner.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/stream.go b/vendor/gopkg.in/square/go-jose.v2/json/stream.go new file mode 100644 index 0000000000000000000000000000000000000000..8ddcf4d279ec16073ddfd2b22dffed5983071074 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/stream.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/json/tags.go b/vendor/gopkg.in/square/go-jose.v2/json/tags.go new file mode 100644 index 0000000000000000000000000000000000000000..c38fd5102f6302deb1e10639dbe4552ee255837e Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/json/tags.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwe.go b/vendor/gopkg.in/square/go-jose.v2/jwe.go new file mode 100644 index 0000000000000000000000000000000000000000..b5a6dcdf4db362a8266d1e39aa1debc1549172ac Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwe.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwk.go b/vendor/gopkg.in/square/go-jose.v2/jwk.go new file mode 100644 index 0000000000000000000000000000000000000000..6cb8adb84eaf8c06fd207bd7a8ae751ae71996a0 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwk.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jws.go b/vendor/gopkg.in/square/go-jose.v2/jws.go new file mode 100644 index 0000000000000000000000000000000000000000..8b59b6ab2398fbef569f69e9b949484008f0f269 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jws.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwt/builder.go b/vendor/gopkg.in/square/go-jose.v2/jwt/builder.go new file mode 100644 index 0000000000000000000000000000000000000000..686ec80a4bb12f50b15341a82e99ada891c0a622 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwt/builder.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwt/claims.go b/vendor/gopkg.in/square/go-jose.v2/jwt/claims.go new file mode 100644 index 0000000000000000000000000000000000000000..50fb7055f331395fb27921f71962eeebb3a64913 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwt/claims.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwt/doc.go b/vendor/gopkg.in/square/go-jose.v2/jwt/doc.go new file mode 100644 index 0000000000000000000000000000000000000000..4cf97b54e78341585a2c97287dbdd5846b03c069 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwt/doc.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwt/errors.go b/vendor/gopkg.in/square/go-jose.v2/jwt/errors.go new file mode 100644 index 0000000000000000000000000000000000000000..09f76ae4b96358e16272b19aa08f6e507d5aea13 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwt/errors.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwt/jwt.go b/vendor/gopkg.in/square/go-jose.v2/jwt/jwt.go new file mode 100644 index 0000000000000000000000000000000000000000..aa13d4f0e98fb90f5a81724f3b04c332ff3c5118 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwt/jwt.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/jwt/validation.go b/vendor/gopkg.in/square/go-jose.v2/jwt/validation.go new file mode 100644 index 0000000000000000000000000000000000000000..045d5dfba2d85d3f1e94d3515eafc5b07b72243a Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/jwt/validation.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/opaque.go b/vendor/gopkg.in/square/go-jose.v2/opaque.go new file mode 100644 index 0000000000000000000000000000000000000000..4a8bd8f323dd74b0adc2c91ec54688e493736a1d Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/opaque.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/shared.go b/vendor/gopkg.in/square/go-jose.v2/shared.go new file mode 100644 index 0000000000000000000000000000000000000000..b0a6255ecaaa912fb1db604bca522f600e397e32 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/shared.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/signing.go b/vendor/gopkg.in/square/go-jose.v2/signing.go new file mode 100644 index 0000000000000000000000000000000000000000..be6cf04815b3948c64283edbfae504c77b12f6ad Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/signing.go differ diff --git a/vendor/gopkg.in/square/go-jose.v2/symmetric.go b/vendor/gopkg.in/square/go-jose.v2/symmetric.go new file mode 100644 index 0000000000000000000000000000000000000000..264a0fe37ca9f32e3dbec6eb8e16d18349b5bca9 Binary files /dev/null and b/vendor/gopkg.in/square/go-jose.v2/symmetric.go differ diff --git a/vendor/modules.txt b/vendor/modules.txt index 19d0e2d044e2b2340a82df9b249cfe7b182b10fa..441044031ea2c09a9b0153aba500e1ba8d6245f6 100644 Binary files a/vendor/modules.txt and b/vendor/modules.txt differ