-
Notifications
You must be signed in to change notification settings - Fork 6
Remove references to key lifetime #2
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
Conversation
@@ -171,7 +166,6 @@ message KeyAgreement { | |||
} | |||
|
|||
message KeyAttributesProto { | |||
KeyLifetime key_lifetime = 1; |
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.
Can you pull the tag numbers down to start from 1 again?
package asym_verify; | ||
|
||
message OpAsymmetricVerifyProto { | ||
string key_name = 1; | ||
key_attributes.KeyLifetime key_lifetime = 2; |
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.
Same, tags should be in order
package asym_sign; | ||
|
||
message OpAsymmetricSignProto { | ||
string key_name = 1; | ||
key_attributes.KeyLifetime key_lifetime = 2; |
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.
Ditto
Oops, forgot about that, will change! |
7235269
to
12076fd
Compare
This change makes the operations simpler by removing the KeyLifetime attribute of the keys. The choice between using permanent or volatile keys is now going to be done at the provider level with providers using either volatile or permanent keys. Signed-off-by: Hugues de Valon <[email protected]>
12076fd
to
caeb47c
Compare
Updated the changes to keep the same field numbers but use |
Removes all key lifetime after parallaxsecond/parsec-operations#2. Signed-off-by: Hugues de Valon <[email protected]>
This change makes the operations simpler by removing the KeyLifetime
attribute of the keys.
The choice between using permanent or volatile keys is now going to be
done at the provider level with providers using either volatile or
permanent keys.
Signed-off-by: Hugues de Valon [email protected]