1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 19:42:48 -05:00

Factor out rsa_ssh1_private_blob_agent and expose in testcrypt.

This will come in useful in an upcoming testcrypt-using Python script.
This commit is contained in:
Simon Tatham
2020-01-09 19:16:29 +00:00
parent cbfd7dadac
commit 13e988b6ee
4 changed files with 12 additions and 7 deletions

1
ssh.h
View File

@ -551,6 +551,7 @@ char *rsa_ssh1_fingerprint(RSAKey *key);
bool rsa_verify(RSAKey *key);
void rsa_ssh1_public_blob(BinarySink *bs, RSAKey *key, RsaSsh1Order order);
int rsa_ssh1_public_blob_len(ptrlen data);
void rsa_ssh1_private_blob_agent(BinarySink *bs, RSAKey *key);
void freersapriv(RSAKey *key);
void freersakey(RSAKey *key);