-
Notifications
You must be signed in to change notification settings - Fork 110
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
[Delegations prereq 6] Use a verify.DB for delegation in client #196
Conversation
Pull Request Test Coverage Report for Build 1918163160
💛 - Coveralls |
092aa7c
to
344f4ee
Compare
314e8de
to
ab8cfcc
Compare
344f4ee
to
3a7542d
Compare
Would you please add some description to this PR? |
6649d88
to
372d80d
Compare
ab8cfcc
to
8662774
Compare
3a7542d
to
48783d0
Compare
8662774
to
ed8955d
Compare
a39931e
to
bc74300
Compare
3cef410
to
b627120
Compare
2e447bc
to
d1fae69
Compare
d1fae69
to
071ef19
Compare
071ef19
to
3716bf3
Compare
…sociated keys. Make NewDelegationsIterator return an error if the passed DB is missing the top level targets role
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. -- I do not want to be a blocker for this PR if someone needs it. However, I believe this should be made more readable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@asraa This has two stamps now -- did you want to take another look before I merge? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's ship it!
Splitting up #175
This PR removes the type
verify.DelegationsVerifier
in favor of using averify.DB
directly to store sets of keys. This simplifies the types, since aDelegationsVerifier
just wrapped aDB
without adding significant functionality, and allows us to use the same type (averify.DB
) to hold keys for the top level targets role as for delegated targets roles.