From d6f4a807d032b4deb6bad140edf2c68ab242ed07 Mon Sep 17 00:00:00 2001 From: domrichardson <100129001+domrichardson@users.noreply.github.com> Date: Tue, 16 Jun 2026 10:28:46 +0100 Subject: [PATCH] updates --- proto/keymanager/v1/keymanager.proto | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/proto/keymanager/v1/keymanager.proto b/proto/keymanager/v1/keymanager.proto index 296c802..754b93d 100644 --- a/proto/keymanager/v1/keymanager.proto +++ b/proto/keymanager/v1/keymanager.proto @@ -71,5 +71,9 @@ message ServerCommand { } message GenerateKeyCmd { - string label = 1; + string label = 1; + string key_type = 2; // ed25519 | rsa | ecdsa (default: ed25519) + int32 key_size = 3; // bits; used for rsa and ecdsa + string passphrase = 4; // empty = no passphrase + string comment = 5; // embedded in public key }