-
Notifications
You must be signed in to change notification settings - Fork 61
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
Update push model structures to latest values #961
Update push model structures to latest values #961
Conversation
92a55fd
to
51adbd2
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
51adbd2
to
ec7b284
Compare
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.
I added some comments, probably we can discuss/clarify them quickly via slack. Otherwise we can bring this topic to the weekly meeting.
}, | ||
certification_keys: vec![ | ||
CertificationKey { | ||
key_class: "pair".to_string(), |
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.
In my opinion, we should use asymmetric
here instead of pair
. It is better aligned with crypto lingo.
And to me this information is redundant if we keep the key_algorithm
field.
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.
It is OK for me to change it, but we can wait for next meeting to clarify it
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.
I am happy to have it as asymmetric
. I agree that it is more in line with usual terminology
} | ||
|
||
#[derive(Serialize, Deserialize, Debug, Clone)] | ||
pub struct AttestationKey { | ||
pub struct CertificationKey { | ||
key_class: String, |
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.
In my opinion, key_class
is redundant with key_algorithm
as the type of the key (symmetric of asymmetric) is implicit in the key_algorithm
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.
It is OK for me to change it or remove the redundant fields, but we can wait for next meeting to clarify it
4b93217
to
af086c6
Compare
Resolves: keylime#962 Signed-off-by: Sergio Arroutbi <sarroutb@redhat.com>
af086c6
to
ad16c53
Compare
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! Let's merge as it is to unblock the next steps
No description provided.