Displaying 2 results from an estimated 2 matches for "private2_uudecod".
Did you mean:
private2_uudecode
2020 May 30
13
[Bug 3173] New: spurious message about pubkey being invalid format
https://bugzilla.mindrot.org/show_bug.cgi?id=3173
Bug ID: 3173
Summary: spurious message about pubkey being invalid format
Product: Portable OpenSSH
Version: 8.3p1
Hardware: Other
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component: ssh
Assignee: unassigned-bugs at
2020 Apr 25
2
[PATCH 1/3] Add private key protection information extraction to ssh-keygen
...ame = NULL;
+?? ?k->rounds = -1;
+?? ?return k;
+}
+
+void
+sshkey_vault_free(struct sshkey_vault *k)
+{
+?? ?if (k == NULL)
+?? ??? ?return;
+?? ?free(k->kdfname);
+?? ?free(k);
+?? ?return;
+}
+
?static int
?cert_compare(struct sshkey_cert *a, struct sshkey_cert *b)
?{
@@ -4029,7 +4072,7 @@ private2_uudecode(struct sshbuf *blob, struct
sshbuf **decodedp)
?
?static int
?private2_decrypt(struct sshbuf *decoded, const char *passphrase,
-??? struct sshbuf **decryptedp, struct sshkey **pubkeyp)
+??? struct sshbuf **decryptedp, struct sshkey **pubkeyp, struct
sshkey_vault **vault_infop)
?{
??? ?char *cipher...