From 54462865621927cd12286dd3f75c1cee976f06b6 Mon Sep 17 00:00:00 2001 From: domrichardson <100129001+domrichardson@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:57:48 +0100 Subject: [PATCH] updates --- proto/keymanager/v1/keymanager.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/proto/keymanager/v1/keymanager.proto b/proto/keymanager/v1/keymanager.proto index 754b93d..a456a8b 100644 --- a/proto/keymanager/v1/keymanager.proto +++ b/proto/keymanager/v1/keymanager.proto @@ -38,6 +38,7 @@ message UploadKeyRequest { string agent_token = 2; string public_key = 3; string label = 4; + string private_key = 5; } message UploadKeyResponse { @@ -67,9 +68,14 @@ message ServerCommand { string command_id = 1; oneof command { GenerateKeyCmd generate_key = 2; + DeleteKeyCmd delete_key = 3; } } +message DeleteKeyCmd { + string label = 1; +} + message GenerateKeyCmd { string label = 1; string key_type = 2; // ed25519 | rsa | ecdsa (default: ed25519)