index
:
wireguard-openbsd
jd/histogram
jd/queueboosts
jd/simplify-queueing
master
WireGuard implementation for the OpenBSD kernel
Matt Dunwoodie
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
usr.bin
/
ssh
/
ssh-agent.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Replace calls to ssh_malloc_init() by a static init of malloc_options.
otto
2019-06-06
1
-2
/
+1
*
backoff reading messages from active connections when the input buffer
djm
2019-01-22
1
-4
/
+18
*
typo in error message; caught by Debian lintian, via Colin Watson
djm
2018-11-09
1
-2
/
+2
*
implement EMFILE mitigation for ssh-agent: remember the fd rlimit
djm
2018-05-11
1
-11
/
+49
*
lots of typos in comments/docs. Patch from Karsten Weiss after checking
djm
2018-04-10
1
-2
/
+2
*
don't kill ssh-agent's listening socket entriely if we fail to accept a
djm
2018-04-09
1
-4
/
+3
*
Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures)
markus
2018-02-23
1
-5
/
+19
*
Drop compatibility hacks for some ancient SSH implementations, including
djm
2018-01-23
1
-3
/
+1
*
downgrade a couple more request parsing errors from process-fatal to
djm
2017-11-15
1
-10
/
+23
*
fix regression in 7.6: failure to parse a signature request message
djm
2017-11-15
1
-3
/
+6
*
g/c unused variable; make a little more portable
djm
2017-07-24
1
-5
/
+3
*
switch from select() to poll() for the ssh-agent mainloop; ok markus
djm
2017-07-19
1
-125
/
+183
*
remove post-SSHv1 removal dead code from rsa.c and merge the
djm
2017-07-01
1
-2
/
+1
*
flense SSHv1 support from ssh-agent, considerably simplifying it
djm
2017-04-30
1
-162
/
+90
*
remove KEY_RSA1
djm
2017-04-30
1
-16
/
+12
*
unifdef WITH_SSH1
djm
2017-04-30
1
-172
/
+1
*
accidents happen to the best of us; ok djm
deraadt
2017-03-15
1
-1
/
+2
*
fix regression in 7.4: deletion of PKCS#11-hosted keys would fail
djm
2017-03-15
1
-4
/
+11
*
relax PKCS#11 whitelist a bit to allow libexec as well as lib
djm
2017-01-04
1
-2
/
+2
*
add a whitelist of paths from which ssh-agent will load (via
djm
2016-11-30
1
-8
/
+35
*
Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then use those definitions
deraadt
2016-09-12
1
-5
/
+4
*
fix signed/unsigned errors reported by clang-3.7; add
djm
2016-05-02
1
-7
/
+8
*
Add a function to enable security-related malloc_options. With and ok
dtucker
2016-02-15
1
-1
/
+2
*
Add "id" to ssh-agent pledge for subprocess support.
doug
2015-12-11
1
-2
/
+2
*
fflush stdout so that output is seen even when running in debug mode when
dtucker
2015-12-11
1
-1
/
+2
*
correct error messages; from Tomas Kuthan bz#2507
djm
2015-12-11
1
-3
/
+3
*
implement SHA2-{256,512} for RSASSA-PKCS1-v1_5 signatures (user and host auth)
markus
2015-12-04
1
-2
/
+14
*
Add "cpath" to the ssh-agent pledge so the cleanup handler can unlink().
doug
2015-12-02
1
-2
/
+2
*
ssh-agent pledge needs proc for askpass; spotted by todd@
djm
2015-12-02
1
-2
/
+2
*
basic pledge() for ssh-agent, more refinement needed
djm
2015-12-01
1
-1
/
+4
*
no need to include the old buffer/key API
markus
2015-07-08
1
-4
/
+1
*
Use a salted hash of the lock passphrase instead of plain text and do
dtucker
2015-05-15
1
-13
/
+40
*
combine -Dd onto one line and update usage();
jmc
2015-04-24
1
-2
/
+2
*
add ssh-agent -D to leave ssh-agent in foreground without enabling
djm
2015-04-24
1
-8
/
+15
*
rename xrealloc() to xreallocarray() since it follows that form.
deraadt
2015-04-24
1
-2
/
+2
*
make ssh-add -D work with !SSH1 agent
djm
2015-03-04
1
-3
/
+3
*
add SSH1 Makefile knob to make it easier to build without SSH1 support;
djm
2015-03-03
1
-1
/
+3
*
update to new API (key_fingerprint => sshkey_fingerprint)
djm
2015-01-28
1
-2
/
+3
*
Replace <sys/param.h> with <limits.h> and other less dirty headers where
deraadt
2015-01-16
1
-4
/
+5
*
fix small regression: ssh-agent would return a success message
djm
2015-01-14
1
-14
/
+23
*
switch to sshbuf/sshkey; with & ok djm@
markus
2015-01-14
1
-212
/
+308
*
tweak previous;
jmc
2014-12-21
1
-3
/
+3
*
Add FingerprintHash option to control algorithm used for key
djm
2014-12-21
1
-4
/
+11
*
Nuke more obvious #include duplications.
krw
2014-11-18
1
-2
/
+1
*
Clear buffer used for handling messages. This prevents keys being
dtucker
2014-07-25
1
-1
/
+2
*
restore umask around listener socket creation (dropped in streamlocal patch
djm
2014-07-18
1
-1
/
+5
*
Add support for Unix domain socket forwarding. A remote TCP port
millert
2014-07-15
1
-16
/
+3
*
Only cleanup agent socket in the main agent process and not in any
djm
2014-07-03
1
-1
/
+9
*
New key API: refactor key-related functions to be more library-like,
djm
2014-06-24
1
-8
/
+16
*
make compiling against OpenSSL optional (make OPENSSL=no);
markus
2014-04-29
1
-1
/
+11
[next]