-
Notifications
You must be signed in to change notification settings - Fork 24
Add verifiable data registry #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
957bc33
added did.store interfaces
woutslakhorst 7390a19
some migration errors
woutslakhorst 0bc6ed1
Update registry structure
stevenvegt 0a236de
Rename registry to vdr
stevenvegt 4f8cfef
Resolver with metdadata
stevenvegt 16eb588
New DocUpdate interface
stevenvegt a806aad
Change visibility of store
stevenvegt 9da1b33
move crypto mock
woutslakhorst e99111f
pkg error in crypto mock
woutslakhorst 44cb1a5
added version-less in memory store
woutslakhorst c2d5b4b
moved typers
woutslakhorst 3329629
added versioning to memory store
woutslakhorst e5db5a4
added mutex to memory store
woutslakhorst 30e4309
added some comments
woutslakhorst 1c7d8fd
Allow kidNamingFunc to return error
stevenvegt da2372f
Add crypto KeyCreator interface
stevenvegt e0c4e15
Add docCreator which creates did document
stevenvegt d757b21
Code cleanup of did doc create
stevenvegt 0d59ea5
Registry implements Create
stevenvegt fedc8a7
Add didDocCreator to Registry
stevenvegt d0d87b5
Fix crypto mock
stevenvegt 649817b
Fix paths in readme and add oapi-gen to makefile
stevenvegt 39e836b
Fix code generation + update generated readme
stevenvegt f9bf79a
Naively connected the VDR to the store.
stevenvegt 40eb439
Add DocDeactivator interface
stevenvegt f495f79
added server and client implementation for VDR API
woutslakhorst 77d5988
working server with create-did CLI command
woutslakhorst c4f2544
copyright and gofmt
woutslakhorst f6cfdac
added timeoout to api client ctx
woutslakhorst 4e4b872
added CLI resolve
woutslakhorst 0299f54
wrong codestyle badge
woutslakhorst d660cca
README upd
woutslakhorst 4b1b1b9
swagger UI upd
woutslakhorst 1b45a14
Added model.Hash to crypto/hash
woutslakhorst 71143ec
no annotations in codecov
woutslakhorst f2e6ac4
Add tests fof didKidNamingFunc
stevenvegt f475d0f
alias API generated types for DIDDocument and DIDDocumentMetadata
woutslakhorst 86e8125
added DIDDocument and DIDDocumentMetadata to OAS
woutslakhorst 5a60187
added test http handler to test package
woutslakhorst 0e258f9
linter stuff
woutslakhorst 1586d5b
one more linter thingy
woutslakhorst 424bb13
Added some test coverage
woutslakhorst c0ab668
coverage for vdr api client
woutslakhorst 8ca225d
Rename Registry to VDR
stevenvegt 402f40c
Add interfaces to engine
stevenvegt a015e0a
remove unused references to crypto from vdr
stevenvegt 148bc22
Update .gitignore
stevenvegt 7c61024
Merge branch 'did_store' of https://github.com/nuts-foundation/nuts-n…
stevenvegt d01d558
Fix gofmt and golint errors
stevenvegt 4bc6327
unused consts
woutslakhorst 5da542b
Fix PR feedback
stevenvegt 0a41992
Merge branch 'did_store' of https://github.com/nuts-foundation/nuts-n…
stevenvegt 1b7a000
Fix PR feedback
stevenvegt 77d6380
Wrap errors
stevenvegt 21ab085
Fix PR feedback
stevenvegt 9c14417
Fix automatic checks
stevenvegt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,3 +22,6 @@ data | |
|
|
||
| # MacOS | ||
| .DS_Store | ||
|
|
||
| # ignore generated pem files from running the nuts-node executable. | ||
| /*.pem | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,3 +5,5 @@ ignore: | |
| - "mock/*" | ||
| - "**/mock.go" | ||
| - "docs/*" | ||
| github_checks: | ||
| annotations: false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.