Skip to content

Commit

Permalink
Add clarity based on comments from @LimeHat.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Morrow authored and morrowc committed Nov 27, 2024
1 parent 26f68c4 commit 7e7b375
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion credentialz/credentialz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -438,10 +438,13 @@ enum KeyType {
// key_type authorized_key description
message AccountCredentials {
message AuthorizedKey {
// authorized_key is a mandatory field, it is the string format ssh key
// stored as bytes in the message.
bytes authorized_key = 1;
// Options specified for this authorized key.
// Options are optional.
repeated Option options = 2;
// Encryption mode for entry.
// Key encryption type, this is a mandatory field.
KeyType key_type = 3;
// An optional description of the key.
string description = 4;
Expand Down

0 comments on commit 7e7b375

Please sign in to comment.