diff --git a/Makefile b/Makefile index 55a8ad0..b3cdfe7 100644 --- a/Makefile +++ b/Makefile @@ -53,10 +53,10 @@ build_frontend: # Build frontend update_fdo_packages: echo "\n----- Updating FDO packages... -----\n" - GOSUMDB=off go get github.com/WebauthnWorks/fdo-shared - GOSUMDB=off go get github.com/WebauthnWorks/fdo-do - GOSUMDB=off go get github.com/WebauthnWorks/fdo-rv - GOSUMDB=off go get github.com/WebauthnWorks/fdo-device-implementation + GOSUMDB=off go get github.com/fido-alliance/fdo-shared + GOSUMDB=off go get github.com/fido-alliance/fdo-do + GOSUMDB=off go get github.com/fido-alliance/fdo-rv + GOSUMDB=off go get github.com/fido-alliance/fdo-device-implementation # Build frontend @@ -74,7 +74,7 @@ fdotools__restart_docker_compose: echo "\n----- Restarting docker compose... -----\n" ssh ${FDO_BUILD_PUSH_HOST} "cd $(fdotools_infra_loc) && docker-compose up --build --force -d" -fdotools__restart_docker_update: +# fdotools__restart_docker_update: build: build_frontend compile_all \ No newline at end of file diff --git a/README.md b/README.md index a83de05..d38b17e 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ FIDO Device Onboarding Conformance Server FDO conformance tools are build in Golang for the backend, and Svelte NodeJS frontend framework for the frontend. Uses on disk key-value DB, so you do not need SQL or Mongo to run it. The backend consists of five modules: -- [FDO: Shared](https://github.com/WebauthnWorks/fdo-shared) - a common module for all FDO operations that has all the crypto, structs definitions, and registry for commands, codes, and algorithms. +- [FDO: Shared](https://github.com/fido-alliance/fdo-shared) - a common module for all FDO operations that has all the crypto, structs definitions, and registry for commands, codes, and algorithms. -- [FDO: DO Service](https://github.com/WebauthnWorks/fdo-do) - Device Onboarding Service with full implementation of FDO DO TO0 and TO2 protocols. It also contains all related tests. -- [FDO: RV Service](https://github.com/WebauthnWorks/fdo-rv) - Rendezvous Service with full implementation of FDO DO TO0 and TO1 protocols. It also contains all related tests. -- [FDO: Device Implementation Service](https://github.com/WebauthnWorks/fdo-device-implementation) - Virtual Device Implementation with full implementation of FDO DO TO1 and TO2 protocols. It also contains all related tests. +- [FDO: DO Service](https://github.com/fido-alliance/fdo-do) - Device Onboarding Service with full implementation of FDO DO TO0 and TO2 protocols. It also contains all related tests. +- [FDO: RV Service](https://github.com/fido-alliance/fdo-rv) - Rendezvous Service with full implementation of FDO DO TO0 and TO1 protocols. It also contains all related tests. +- [FDO: Device Implementation Service](https://github.com/fido-alliance/fdo-device-implementation) - Virtual Device Implementation with full implementation of FDO DO TO1 and TO2 protocols. It also contains all related tests. -- [FIDO Conformance Server](https://github.com/WebauthnWorks/fdo-fido-conformance-server) - A user facing conformance server. Has testing structs, conformance APIs, conformance tests ID and much much more. -- [FIDO Conformance Server - Frontend](https://github.com/WebauthnWorks/fdo-fido-conformance-frontend) - A frontend for FIDO Conformance Server +- [FIDO Conformance Server](https://github.com/fido-alliance/fdo-fido-conformance-server) - A user facing conformance server. Has testing structs, conformance APIs, conformance tests ID and much much more. +- [FIDO Conformance Server - Frontend](https://github.com/fido-alliance/fdo-fido-conformance-frontend) - A frontend for FIDO Conformance Server ## Pre requisites: - Node JS 16+ https://nodejs.org/en/ @@ -57,7 +57,7 @@ The backend consists of five modules: To update packages without GOSUM check use env `GOSUMDB=off` - * Example `GOSUMDB=off go get github.com/WebauthnWorks/fdo-device-implementation` + * Example `GOSUMDB=off go get github.com/fido-alliance/fdo-device-implementation` * To update all `make update_fdo_packages` ### Structure @@ -71,9 +71,8 @@ To update packages without GOSUM check use env `GOSUMDB=off` - `testexec` - Contains TO0 DO, TO1 Device, TO2 Device conformance testing execution. -- [FDO: Shared /testcom/](https://github.com/WebauthnWorks/fdo-shared/testcom/) - Contains common test methods, dbs, etc -- [FDO: Shared /testcom/listener](https://github.com/WebauthnWorks/fdo-shared/testcom/listener) - Contains all listener tests dependencies for `RV(TO0)`, `RV(TO1)`, and `DO(TO2)` -- [FDO: Shared /testcom/request](https://github.com/WebauthnWorks/fdo-shared/testcom/request) - Contains all requestor tests dependencies for `DO(TO0)`, `Device(TO1)`, `Device(TO2)` - -- `/frontend` - Contains frontend git submodule. See https://github.com/WebauthnWorks/fdo-fido-conformance-frontend +- [FDO: Shared /testcom/](https://github.com/fido-alliance/fdo-shared/testcom/) - Contains common test methods, dbs, etc +- [FDO: Shared /testcom/listener](https://github.com/fido-alliance/fdo-shared/testcom/listener) - Contains all listener tests dependencies for `RV(TO0)`, `RV(TO1)`, and `DO(TO2)` +- [FDO: Shared /testcom/request](https://github.com/fido-alliance/fdo-shared/testcom/request) - Contains all requestor tests dependencies for `DO(TO0)`, `Device(TO1)`, `Device(TO2)` +- `/frontend` - Contains frontend git submodule. See https://github.com/fido-alliance/fdo-fido-conformance-frontend diff --git a/api/admin.api.go b/api/admin.api.go index da51000..6e2d52f 100644 --- a/api/admin.api.go +++ b/api/admin.api.go @@ -4,10 +4,10 @@ import ( "log" "net/http" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/services" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/services" + fdoshared "github.com/fido-alliance/fdo-shared" ) type AdminApi struct { diff --git a/api/buildsproxy.api.go b/api/buildsproxy.api.go index 87a04f6..81b9f97 100644 --- a/api/buildsproxy.api.go +++ b/api/buildsproxy.api.go @@ -8,9 +8,9 @@ import ( "net/url" "strings" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + fdoshared "github.com/fido-alliance/fdo-shared" ) type BuildsProxyAPI struct { diff --git a/api/commonapi/user.struct.go b/api/commonapi/user.struct.go index 08a316f..eb58ff2 100644 --- a/api/commonapi/user.struct.go +++ b/api/commonapi/user.struct.go @@ -1,6 +1,6 @@ package commonapi -import fdoshared "github.com/WebauthnWorks/fdo-shared" +import fdoshared "github.com/fido-alliance/fdo-shared" type User_UserReq struct { Name string `json:"name"` diff --git a/api/frontend.go b/api/frontend.go index de3ef56..4e93ff3 100644 --- a/api/frontend.go +++ b/api/frontend.go @@ -5,7 +5,7 @@ import ( "net/http/httputil" "net/url" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" ) func ProxyDevUI(w http.ResponseWriter, r *http.Request) { diff --git a/api/oauth2.api.go b/api/oauth2.api.go index 2faab94..897aba0 100644 --- a/api/oauth2.api.go +++ b/api/oauth2.api.go @@ -6,10 +6,10 @@ import ( "net/http" "strings" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/services" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/services" + fdoshared "github.com/fido-alliance/fdo-shared" "github.com/gorilla/mux" ) diff --git a/api/results.go b/api/results.go index 668396d..c329344 100644 --- a/api/results.go +++ b/api/results.go @@ -3,8 +3,8 @@ package api import ( "net/http" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" ) type ResultsAPI struct { diff --git a/api/server.go b/api/server.go index cfd23e8..06c70b9 100644 --- a/api/server.go +++ b/api/server.go @@ -4,12 +4,12 @@ import ( "context" "net/http" - dodbs "github.com/WebauthnWorks/fdo-do/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/testapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/services" - "github.com/WebauthnWorks/fdo-fido-conformance-server/tools" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" + dodbs "github.com/fido-alliance/fdo-do/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/api/testapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/services" + "github.com/fido-alliance/fdo-fido-conformance-server/tools" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" "github.com/dgraph-io/badger/v3" "github.com/gorilla/mux" diff --git a/api/testapi/device.api.go b/api/testapi/device.api.go index e32ab61..df242d2 100644 --- a/api/testapi/device.api.go +++ b/api/testapi/device.api.go @@ -10,15 +10,15 @@ import ( "net/http" "strconv" - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - dodbs "github.com/WebauthnWorks/fdo-do/dbs" - "github.com/WebauthnWorks/fdo-do/to0" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testcomdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - listenertestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/listener" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + dodbs "github.com/fido-alliance/fdo-do/dbs" + "github.com/fido-alliance/fdo-do/to0" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testcomdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + listenertestsdeps "github.com/fido-alliance/fdo-shared/testcom/listener" "github.com/gorilla/mux" ) diff --git a/api/testapi/device.structs.api.go b/api/testapi/device.structs.api.go index 8de3470..0fac15e 100644 --- a/api/testapi/device.structs.api.go +++ b/api/testapi/device.structs.api.go @@ -1,8 +1,8 @@ package testapi import ( - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - listenertestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/listener" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + listenertestsdeps "github.com/fido-alliance/fdo-shared/testcom/listener" ) type Device_CreateTestCase struct { diff --git a/api/testapi/do.api.go b/api/testapi/do.api.go index 59c91b2..1d06bce 100644 --- a/api/testapi/do.api.go +++ b/api/testapi/do.api.go @@ -12,13 +12,13 @@ import ( "net/http" "net/url" - fdodeviceimplementation "github.com/WebauthnWorks/fdo-device-implementation" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/testexec" - fdoshared "github.com/WebauthnWorks/fdo-shared" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodeviceimplementation "github.com/fido-alliance/fdo-device-implementation" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/testexec" + fdoshared "github.com/fido-alliance/fdo-shared" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" "github.com/gorilla/mux" ) diff --git a/api/testapi/do.structs.api.go b/api/testapi/do.structs.api.go index ee9c2d8..7cb4bad 100644 --- a/api/testapi/do.structs.api.go +++ b/api/testapi/do.structs.api.go @@ -1,9 +1,9 @@ package testapi import ( - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - fdoshared "github.com/WebauthnWorks/fdo-shared" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + fdoshared "github.com/fido-alliance/fdo-shared" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) type DOT_CreateTestCase struct { diff --git a/api/testapi/rv.api.go b/api/testapi/rv.api.go index eccd569..396cf02 100644 --- a/api/testapi/rv.api.go +++ b/api/testapi/rv.api.go @@ -9,12 +9,12 @@ import ( "net/http" "net/url" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/testexec" - fdoshared "github.com/WebauthnWorks/fdo-shared" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/testexec" + fdoshared "github.com/fido-alliance/fdo-shared" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" "github.com/gorilla/mux" ) diff --git a/api/testapi/rv.structs.api.go b/api/testapi/rv.structs.api.go index f013511..cdb467d 100644 --- a/api/testapi/rv.structs.api.go +++ b/api/testapi/rv.structs.api.go @@ -1,9 +1,9 @@ package testapi import ( - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - fdoshared "github.com/WebauthnWorks/fdo-shared" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + fdoshared "github.com/fido-alliance/fdo-shared" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) type RVT_CreateTestCase struct { diff --git a/api/user.auth.api.go b/api/user.auth.api.go index e018d73..10e6f5a 100644 --- a/api/user.auth.api.go +++ b/api/user.auth.api.go @@ -7,10 +7,10 @@ import ( "net/http" "strings" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/services" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/services" + fdoshared "github.com/fido-alliance/fdo-shared" ) func (h *UserAPI) Register(w http.ResponseWriter, r *http.Request) { diff --git a/api/user.common.api.go b/api/user.common.api.go index 5fa6fb5..ea2da99 100644 --- a/api/user.common.api.go +++ b/api/user.common.api.go @@ -7,9 +7,9 @@ import ( "net/http" "regexp" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/services" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/services" "golang.org/x/crypto/scrypt" ) diff --git a/api/user.other.api.go b/api/user.other.api.go index e83f860..b6fa243 100644 --- a/api/user.other.api.go +++ b/api/user.other.api.go @@ -7,10 +7,10 @@ import ( "net/http" "strings" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/services" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/services" + fdoshared "github.com/fido-alliance/fdo-shared" ) func (h *UserAPI) isLoggedIn(r *http.Request) (bool, *dbs.SessionEntry, *dbs.UserTestDBEntry) { diff --git a/api/user.verify.api.go b/api/user.verify.api.go index 8bb2f70..7a477e9 100644 --- a/api/user.verify.api.go +++ b/api/user.verify.api.go @@ -9,10 +9,10 @@ import ( "net/http" "time" - "github.com/WebauthnWorks/fdo-fido-conformance-server/api/commonapi" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-fido-conformance-server/services" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/api/commonapi" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-fido-conformance-server/services" + fdoshared "github.com/fido-alliance/fdo-shared" "github.com/gorilla/mux" "golang.org/x/crypto/scrypt" ) diff --git a/dbs/config.db.go b/dbs/config.db.go index 1152544..141395b 100644 --- a/dbs/config.db.go +++ b/dbs/config.db.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - fdoshared "github.com/WebauthnWorks/fdo-shared" "github.com/dgraph-io/badger/v3" + fdoshared "github.com/fido-alliance/fdo-shared" "github.com/fxamacker/cbor/v2" ) diff --git a/dbs/devicebase.db.go b/dbs/devicebase.db.go index e19b097..7b0bc16 100644 --- a/dbs/devicebase.db.go +++ b/dbs/devicebase.db.go @@ -5,10 +5,10 @@ import ( "errors" "fmt" - fdodeviceimplementation "github.com/WebauthnWorks/fdo-device-implementation" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" "github.com/dgraph-io/badger/v3" + fdodeviceimplementation "github.com/fido-alliance/fdo-device-implementation" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" "github.com/fxamacker/cbor/v2" ) diff --git a/dbs/user.structs.db.go b/dbs/user.structs.db.go index 1e21f46..c25143a 100644 --- a/dbs/user.structs.db.go +++ b/dbs/user.structs.db.go @@ -3,8 +3,8 @@ package dbs import ( "bytes" - fdoshared "github.com/WebauthnWorks/fdo-shared" "github.com/dgraph-io/badger/v3" + fdoshared "github.com/fido-alliance/fdo-shared" "github.com/google/uuid" ) diff --git a/frontend b/frontend index eb99665..59fd04e 160000 --- a/frontend +++ b/frontend @@ -1 +1 @@ -Subproject commit eb9966542ad2f7eea9fbb736745e51034882ddef +Subproject commit 59fd04e4d9b170aeed3cbc56ce560de0d26d9aac diff --git a/go.mod b/go.mod index 48c2d54..b0b20b9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/WebauthnWorks/fdo-fido-conformance-server +module github.com/fido-alliance/fdo-fido-conformance-server go 1.18 @@ -12,15 +12,15 @@ require ( ) require ( - github.com/WebauthnWorks/fdo-device-implementation v0.3.1 - github.com/WebauthnWorks/fdo-do v0.3.1 - github.com/WebauthnWorks/fdo-rv v0.3.1 - github.com/WebauthnWorks/fdo-shared v0.9.85 + github.com/fido-alliance/fdo-device-implementation v0.3.1 + github.com/fido-alliance/fdo-do v0.3.1 + github.com/fido-alliance/fdo-rv v0.3.1 + github.com/fido-alliance/fdo-shared v0.9.85 golang.org/x/oauth2 v0.3.0 ) require ( - github.com/WebauthnWorks/dhkx v0.3.3 // indirect + github.com/fido-alliance/dhkx v0.3.3 // indirect github.com/cespare/xxhash v1.1.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect @@ -46,7 +46,7 @@ require ( ) // For when you are doing local dev -// replace github.com/WebauthnWorks/fdo-do v0.0.0 => /Users/yuriy/go/src/github.com/WebauthnWorks/fdo-do -// replace github.com/WebauthnWorks/fdo-rv v0.0.0 => /Users/yuriy/go/src/github.com/WebauthnWorks/fdo-rv -// replace github.com/WebauthnWorks/fdo-device-implementation v0.0.0 => /Users/yuriy/go/src/github.com/WebauthnWorks/fdo-device-implementation -// replace github.com/WebauthnWorks/fdo-shared v0.0.0 => /Users/yuriy/go/src/github.com/WebauthnWorks/fdo-shared +// replace github.com/fido-alliance/fdo-do v0.0.0 => /Users/yuriy/go/src/github.com/fido-alliance/fdo-do +// replace github.com/fido-alliance/fdo-rv v0.0.0 => /Users/yuriy/go/src/github.com/fido-alliance/fdo-rv +// replace github.com/fido-alliance/fdo-device-implementation v0.0.0 => /Users/yuriy/go/src/github.com/fido-alliance/fdo-device-implementation +// replace github.com/fido-alliance/fdo-shared v0.0.0 => /Users/yuriy/go/src/github.com/fido-alliance/fdo-shared diff --git a/go.sum b/go.sum index c0934d1..8ca5a09 100644 --- a/go.sum +++ b/go.sum @@ -2,30 +2,30 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/WebauthnWorks/dhkx v0.3.3 h1:C+X9EeZPRIgv5tT/jIoBvXsqLqKbUnFXOipvEAU5UIw= -github.com/WebauthnWorks/dhkx v0.3.3/go.mod h1:dxBmjaAf+m+ba0moLw5ytPNeZdOXnDnymEZbfreapAM= -github.com/WebauthnWorks/fdo-device-implementation v0.3.0 h1:nW3fLKf5foHBoUk62Q5Umgvcx1BYmi/WC65/oCNvZvg= -github.com/WebauthnWorks/fdo-device-implementation v0.3.0/go.mod h1:LW2/N1FZEYoka4JXaYE9dRMNMiLIP08XUkDOrcYFSLA= -github.com/WebauthnWorks/fdo-device-implementation v0.3.1 h1:B1jBYbisnfd6+tN4yVPLbuhiQwGsBoTppArOffC29uQ= -github.com/WebauthnWorks/fdo-device-implementation v0.3.1/go.mod h1:HN7e3G8SXkudwykgQ6t1zQb3DTHo23NHaeuhodSho14= -github.com/WebauthnWorks/fdo-do v0.3.0 h1:KSGjRRrEowy+adTxsZ+ZRqUj2BkbDHO3SsYuBxSKwx4= -github.com/WebauthnWorks/fdo-do v0.3.0/go.mod h1:alLFDfsm8rFFVWFebcvRX70E/zNwUyKql4rCMlwX2a8= -github.com/WebauthnWorks/fdo-do v0.3.1 h1:S3YElq5Ami4bu43BvtafuL+SYIfEJJktMJQUQwm+ujE= -github.com/WebauthnWorks/fdo-do v0.3.1/go.mod h1:fmZrcIIpVr8Q0PZ29DsmvR/jqZLCIyAs9hBY0Gr1uGA= -github.com/WebauthnWorks/fdo-rv v0.3.0 h1:j6q5p2zbl8XP0UHPMODwOr4D6anPavCmxDQniPtHXBQ= -github.com/WebauthnWorks/fdo-rv v0.3.0/go.mod h1:GUOGaOaIqCB2GurI/UDiEFMGcXbGrCU1Z939e9qaZf8= -github.com/WebauthnWorks/fdo-rv v0.3.1 h1:llGAZcuS4zbn8VZ5vPWe1BD6AnVAc5t9TtyNTQigJHs= -github.com/WebauthnWorks/fdo-rv v0.3.1/go.mod h1:/u6TKXKqvZYEZfkwkEIgYUGNgHJERXcg2n6EIhiRdos= -github.com/WebauthnWorks/fdo-shared v0.9.81 h1:gFLrp3WaEHniXKoWZN9asCIGihqnVdXdfFn856Ty1QI= -github.com/WebauthnWorks/fdo-shared v0.9.81/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= -github.com/WebauthnWorks/fdo-shared v0.9.82 h1:DrmrSCYj7eUj1TPw/okw1dTYqf0syBxncopKM7P1jvU= -github.com/WebauthnWorks/fdo-shared v0.9.82/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= -github.com/WebauthnWorks/fdo-shared v0.9.83 h1:zz+pBtAh69gMb/0vS3G7naw+WnBm8iIAnYiYa41IuIw= -github.com/WebauthnWorks/fdo-shared v0.9.83/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= -github.com/WebauthnWorks/fdo-shared v0.9.84 h1:qdyTLhmZPmH9mkFR/Zfkq5GLxbP37uPOqD/edxEFlQo= -github.com/WebauthnWorks/fdo-shared v0.9.84/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= -github.com/WebauthnWorks/fdo-shared v0.9.85 h1:NFJDklRGQCZYNGcsGMt81NElNFHa04Cr+cZkusQJSrM= -github.com/WebauthnWorks/fdo-shared v0.9.85/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= +github.com/fido-alliance/dhkx v0.3.3 h1:C+X9EeZPRIgv5tT/jIoBvXsqLqKbUnFXOipvEAU5UIw= +github.com/fido-alliance/dhkx v0.3.3/go.mod h1:dxBmjaAf+m+ba0moLw5ytPNeZdOXnDnymEZbfreapAM= +github.com/fido-alliance/fdo-device-implementation v0.3.0 h1:nW3fLKf5foHBoUk62Q5Umgvcx1BYmi/WC65/oCNvZvg= +github.com/fido-alliance/fdo-device-implementation v0.3.0/go.mod h1:LW2/N1FZEYoka4JXaYE9dRMNMiLIP08XUkDOrcYFSLA= +github.com/fido-alliance/fdo-device-implementation v0.3.1 h1:B1jBYbisnfd6+tN4yVPLbuhiQwGsBoTppArOffC29uQ= +github.com/fido-alliance/fdo-device-implementation v0.3.1/go.mod h1:HN7e3G8SXkudwykgQ6t1zQb3DTHo23NHaeuhodSho14= +github.com/fido-alliance/fdo-do v0.3.0 h1:KSGjRRrEowy+adTxsZ+ZRqUj2BkbDHO3SsYuBxSKwx4= +github.com/fido-alliance/fdo-do v0.3.0/go.mod h1:alLFDfsm8rFFVWFebcvRX70E/zNwUyKql4rCMlwX2a8= +github.com/fido-alliance/fdo-do v0.3.1 h1:S3YElq5Ami4bu43BvtafuL+SYIfEJJktMJQUQwm+ujE= +github.com/fido-alliance/fdo-do v0.3.1/go.mod h1:fmZrcIIpVr8Q0PZ29DsmvR/jqZLCIyAs9hBY0Gr1uGA= +github.com/fido-alliance/fdo-rv v0.3.0 h1:j6q5p2zbl8XP0UHPMODwOr4D6anPavCmxDQniPtHXBQ= +github.com/fido-alliance/fdo-rv v0.3.0/go.mod h1:GUOGaOaIqCB2GurI/UDiEFMGcXbGrCU1Z939e9qaZf8= +github.com/fido-alliance/fdo-rv v0.3.1 h1:llGAZcuS4zbn8VZ5vPWe1BD6AnVAc5t9TtyNTQigJHs= +github.com/fido-alliance/fdo-rv v0.3.1/go.mod h1:/u6TKXKqvZYEZfkwkEIgYUGNgHJERXcg2n6EIhiRdos= +github.com/fido-alliance/fdo-shared v0.9.81 h1:gFLrp3WaEHniXKoWZN9asCIGihqnVdXdfFn856Ty1QI= +github.com/fido-alliance/fdo-shared v0.9.81/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= +github.com/fido-alliance/fdo-shared v0.9.82 h1:DrmrSCYj7eUj1TPw/okw1dTYqf0syBxncopKM7P1jvU= +github.com/fido-alliance/fdo-shared v0.9.82/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= +github.com/fido-alliance/fdo-shared v0.9.83 h1:zz+pBtAh69gMb/0vS3G7naw+WnBm8iIAnYiYa41IuIw= +github.com/fido-alliance/fdo-shared v0.9.83/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= +github.com/fido-alliance/fdo-shared v0.9.84 h1:qdyTLhmZPmH9mkFR/Zfkq5GLxbP37uPOqD/edxEFlQo= +github.com/fido-alliance/fdo-shared v0.9.84/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= +github.com/fido-alliance/fdo-shared v0.9.85 h1:NFJDklRGQCZYNGcsGMt81NElNFHa04Cr+cZkusQJSrM= +github.com/fido-alliance/fdo-shared v0.9.85/go.mod h1:2xkHcyS3f7AbjiOrenfG30ZeyETJQyo2O+XhA6UHB1g= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= diff --git a/running.ctx.go-e b/running.ctx.go-e index 565d806..2c2fa9a 100644 --- a/running.ctx.go-e +++ b/running.ctx.go-e @@ -1,8 +1,8 @@ package main import ( - "github.com/WebauthnWorks/fdo-fido-conformance-server/tools" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/tools" + fdoshared "github.com/fido-alliance/fdo-shared" ) const APIKEY_RESULT_SUBMISSION = "010203040506" diff --git a/seeding.setup.go b/seeding.setup.go index 7e619a4..c196c4c 100644 --- a/seeding.setup.go +++ b/seeding.setup.go @@ -7,8 +7,8 @@ import ( "math" "sync" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + fdoshared "github.com/fido-alliance/fdo-shared" ) const SeedingSize = 10000 diff --git a/services/github.oauth2.go b/services/github.oauth2.go index d6a1746..fdff293 100644 --- a/services/github.oauth2.go +++ b/services/github.oauth2.go @@ -8,7 +8,7 @@ import ( "net/http" "time" - fdoshared "github.com/WebauthnWorks/fdo-shared" + fdoshared "github.com/fido-alliance/fdo-shared" "golang.org/x/oauth2" ) diff --git a/services/google.oauth2.go b/services/google.oauth2.go index 84060aa..e6853ec 100644 --- a/services/google.oauth2.go +++ b/services/google.oauth2.go @@ -8,7 +8,7 @@ import ( "net/http" "time" - fdoshared "github.com/WebauthnWorks/fdo-shared" + fdoshared "github.com/fido-alliance/fdo-shared" "golang.org/x/oauth2" ) diff --git a/services/notify.go b/services/notify.go index 6348643..09707e2 100644 --- a/services/notify.go +++ b/services/notify.go @@ -9,8 +9,8 @@ import ( "net/http" "time" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - fdoshared "github.com/WebauthnWorks/fdo-shared" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + fdoshared "github.com/fido-alliance/fdo-shared" ) const FIDO_NOTIFY_EMAIL = "certification@fidoalliance.org" diff --git a/testexec/do.to2.60.execute.go b/testexec/do.to2.60.execute.go index e61a2f9..1927c1e 100644 --- a/testexec/do.to2.60.execute.go +++ b/testexec/do.to2.60.execute.go @@ -1,12 +1,12 @@ package testexec import ( - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to2" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to2" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func executeTo2_60(reqte reqtestsdeps.RequestTestInst, reqtDB *dbs.RequestTestDB) { diff --git a/testexec/do.to2.60.vouchers.execute.go b/testexec/do.to2.60.vouchers.execute.go index ae5c63c..92a084c 100644 --- a/testexec/do.to2.60.vouchers.execute.go +++ b/testexec/do.to2.60.vouchers.execute.go @@ -1,12 +1,12 @@ package testexec import ( - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to2" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to2" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func executeTo2_60_Vouchers(reqte reqtestsdeps.RequestTestInst, reqtDB *testdbs.RequestTestDB) { diff --git a/testexec/do.to2.62.execute.go b/testexec/do.to2.62.execute.go index d6cacf5..b90a891 100644 --- a/testexec/do.to2.62.execute.go +++ b/testexec/do.to2.62.execute.go @@ -4,12 +4,12 @@ import ( "fmt" "log" - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to2" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to2" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func executeTo2_62(reqte reqtestsdeps.RequestTestInst, reqtDB *testdbs.RequestTestDB) { diff --git a/testexec/do.to2.64.execute.go b/testexec/do.to2.64.execute.go index a914cbc..365bd41 100644 --- a/testexec/do.to2.64.execute.go +++ b/testexec/do.to2.64.execute.go @@ -1,12 +1,12 @@ package testexec import ( - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to2" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to2" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func preExecuteTo2_64(reqte reqtestsdeps.RequestTestInst) (*to2.To2Requestor, error) { diff --git a/testexec/do.to2.66.execute.go b/testexec/do.to2.66.execute.go index 698e00d..3c7ede6 100644 --- a/testexec/do.to2.66.execute.go +++ b/testexec/do.to2.66.execute.go @@ -1,12 +1,12 @@ package testexec import ( - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to2" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to2" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func preExecuteTo2_66(reqte reqtestsdeps.RequestTestInst) (*to2.To2Requestor, error) { diff --git a/testexec/do.to2.68.execute.go b/testexec/do.to2.68.execute.go index 94da5dc..b94ef94 100644 --- a/testexec/do.to2.68.execute.go +++ b/testexec/do.to2.68.execute.go @@ -3,12 +3,12 @@ package testexec import ( "log" - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to2" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to2" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func preExecuteTo2_68(reqte reqtestsdeps.RequestTestInst) (*to2.To2Requestor, error) { diff --git a/testexec/do.to2.70.execute.go b/testexec/do.to2.70.execute.go index a891da7..ea48258 100644 --- a/testexec/do.to2.70.execute.go +++ b/testexec/do.to2.70.execute.go @@ -3,12 +3,12 @@ package testexec import ( "errors" - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to2" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to2" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func preExecuteTo2_70(reqte reqtestsdeps.RequestTestInst) (*to2.To2Requestor, error) { diff --git a/testexec/do.to2.execute.go b/testexec/do.to2.execute.go index 547e695..ae4e819 100644 --- a/testexec/do.to2.execute.go +++ b/testexec/do.to2.execute.go @@ -5,11 +5,11 @@ import ( "log" "sync" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - fdoshared "github.com/WebauthnWorks/fdo-shared" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + fdoshared "github.com/fido-alliance/fdo-shared" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) const TEST_POSITIVE_BATCH_SIZE int = 20 diff --git a/testexec/rvt.to0.execute.go b/testexec/rvt.to0.execute.go index 896d964..a020c84 100644 --- a/testexec/rvt.to0.execute.go +++ b/testexec/rvt.to0.execute.go @@ -1,12 +1,12 @@ package testexec import ( - "github.com/WebauthnWorks/fdo-do/to0" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" + "github.com/fido-alliance/fdo-do/to0" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" - "github.com/WebauthnWorks/fdo-shared/testcom" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + "github.com/fido-alliance/fdo-shared/testcom" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func ExecuteRVTestsTo0(reqte reqtestsdeps.RequestTestInst, reqtDB *testdbs.RequestTestDB, devDB *dbs.DeviceBaseDB) { diff --git a/testexec/rvt.to1.execute.go b/testexec/rvt.to1.execute.go index 68ec1e7..0937262 100644 --- a/testexec/rvt.to1.execute.go +++ b/testexec/rvt.to1.execute.go @@ -1,13 +1,13 @@ package testexec import ( - fdodocommon "github.com/WebauthnWorks/fdo-device-implementation/common" - "github.com/WebauthnWorks/fdo-device-implementation/to1" - "github.com/WebauthnWorks/fdo-do/to0" - "github.com/WebauthnWorks/fdo-fido-conformance-server/dbs" - "github.com/WebauthnWorks/fdo-shared/testcom" - testdbs "github.com/WebauthnWorks/fdo-shared/testcom/dbs" - reqtestsdeps "github.com/WebauthnWorks/fdo-shared/testcom/request" + fdodocommon "github.com/fido-alliance/fdo-device-implementation/common" + "github.com/fido-alliance/fdo-device-implementation/to1" + "github.com/fido-alliance/fdo-do/to0" + "github.com/fido-alliance/fdo-fido-conformance-server/dbs" + "github.com/fido-alliance/fdo-shared/testcom" + testdbs "github.com/fido-alliance/fdo-shared/testcom/dbs" + reqtestsdeps "github.com/fido-alliance/fdo-shared/testcom/request" ) func ExecuteRVTestsTo1(reqte reqtestsdeps.RequestTestInst, reqtDB *testdbs.RequestTestDB, devDB *dbs.DeviceBaseDB) { diff --git a/tools/common.go b/tools/common.go index 3fe3157..81a63b7 100644 --- a/tools/common.go +++ b/tools/common.go @@ -1,6 +1,6 @@ package tools -import fdoshared "github.com/WebauthnWorks/fdo-shared" +import fdoshared "github.com/fido-alliance/fdo-shared" const ( CFG_DEV_ENV fdoshared.CONFIG_ENTRY = "DEV"