Displaying 1 result from an estimated 1 matches for "sshkey_vault".
2020 Apr 25
2
[PATCH 1/3] Add private key protection information extraction to ssh-keygen
...9369ebfc1 100644
--- a/authfile.c
+++ b/authfile.c
@@ -116,7 +116,7 @@ sshkey_perm_ok(int fd, const char *filename)
?
?int
?sshkey_load_private_type(int type, const char *filename, const char
*passphrase,
-??? struct sshkey **keyp, char **commentp)
+??? struct sshkey **keyp, char **commentp, struct sshkey_vault
**vault_infop)
?{
??? ?int fd, r;
?
@@ -124,6 +124,8 @@ sshkey_load_private_type(int type, const char
*filename, const char *passphrase,
??? ??? ?*keyp = NULL;
??? ?if (commentp != NULL)
??? ??? ?*commentp = NULL;
+?? ?if (vault_infop != NULL)
+?? ??? ?*vault_infop = NULL;
?
??? ?if ((fd = open(fil...