good stuff

This commit is contained in:
nora 2024-08-23 02:14:16 +02:00
parent d340ff0861
commit c4bb37e570
8 changed files with 342 additions and 54 deletions

View file

@ -45,7 +45,7 @@ impl Request {
} => {
p.u8(numbers::SSH_AGENTC_ADD_IDENTITY);
p.string(key_type.as_bytes());
p.write(&key_contents);
p.raw(&key_contents);
p.string(key_comment.as_bytes());
}
Self::RemoveAllIdentities => p.u8(numbers::SSH_AGENTC_REMOVE_ALL_IDENTITIES),