From 526ece4f878a95d1f5240e161a159a94eb310891 Mon Sep 17 00:00:00 2001 From: Chris Morrow Date: Mon, 25 Nov 2024 22:42:05 -0500 Subject: [PATCH] Issue210: Update / Improve comment for 'AccountCredentials'. Update the docuemntation for AccountCredential to make it clear what the parts of the proto message mean, with respect to a normal openssh format ssh public key. --- credentialz/credentialz.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/credentialz/credentialz.proto b/credentialz/credentialz.proto index e6ebe7c..16539fb 100644 --- a/credentialz/credentialz.proto +++ b/credentialz/credentialz.proto @@ -435,6 +435,9 @@ enum KeyType { message AccountCredentials { message AuthorizedKey { + // AuthorizedKey is an ssh key/idenity. The basic openssh format follows: + // ecdsa-sha2-nistp521 AAAkeystuffhere chuck@chuckfinley.org + // key_type authorized_key description bytes authorized_key = 1; // Options specified for this authorized key. repeated Option options = 2;