search for: zevweiss

Displaying 3 results from an estimated 3 matches for "zevweiss".

2012 Jan 28
1
PATCH: Fix memory leak in sshd
Hello, The below patch fixes a memory leak I noticed in monitor_read_load() when the child's log pipe is closed. Thanks, Zev Weiss -- diff --git a/monitor.c b/monitor.c index a166fed..6464eec 100644 --- a/monitor.c +++ b/monitor.c @@ -510,6 +510,7 @@ monitor_read_log(struct monitor *pmonitor) debug("%s: child log fd closed", __func__); close(pmonitor->m_log_recvfd);
2012 Jan 31
1
[Bug 1974] New: Support for encrypted host keys
...Unclassified Product: Portable OpenSSH Version: 5.9p1 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: sshd AssignedTo: unassigned-bugs at mindrot.org ReportedBy: zevweiss at gmail.com Created attachment 2125 --> https://bugzilla.mindrot.org/attachment.cgi?id=2125 Patch to implement support for encrypted host keys in sshd (Copy/paste from this post to the mailing list: http://marc.info/?l=openssh-unix-dev&m=132774431906364&w=2) I recently found mysel...
2012 Jan 28
1
PATCH: Support for encrypted host keys
...buffer_put_key(Buffer *buffer, const Key *key); +Key *buffer_get_key(Buffer *buffer); + #ifdef OPENSSL_HAS_ECC #include <openssl/ec.h> diff --git a/bufkey.c b/bufkey.c new file mode 100644 index 0000000..85a0c35 --- /dev/null +++ b/bufkey.c @@ -0,0 +1,132 @@ +/* + * Author: Zev Weiss <zevweiss at gmail.com> + * + * Functions for storing and retrieving Key structs into/from Buffers. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must reta...