summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-agent.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* change to use queue.h macros; okay markus@provos2002-01-131-82/+69
|
* remove unneeded casts and some char->u_char cleanup; ok markus@stevesk2001-12-291-3/+3
|
* call fatal() for openssl allocation failuresmarkus2001-12-271-3/+4
|
* basic KNF done while i was looking for something elsederaadt2001-12-191-5/+5
|
* minor KNFderaadt2001-12-051-5/+5
|
* enum/int type cleanup where it made sense to do so; ok markus@stevesk2001-11-171-6/+10
|
* improve usage(). ok markus@jakob2001-08-031-4/+8
|
* clean up some /* SMARTCARD */. ok markus@jakob2001-08-021-3/+3
|
* add /* SMARTCARD */ to #else/#endif. ok markus@jakob2001-08-021-5/+5
|
* use strings instead of ints for smartcard reader idsmarkus2001-08-011-8/+11
|
* do not exit() from signal handlers; ok deraadt@markus2001-07-201-16/+16
|
* chdir("/") from bbraun@synack.net; ok markus@stevesk2001-07-181-6/+9
|
* update maxfd if maxfd is closed; report from jmcelroy@dtgnet.commarkus2001-07-171-7/+12
|
* typo in usage; ok markus@stevesk2001-07-151-3/+3
|
* handle mutiple adds of the same smartcard keymarkus2001-07-041-2/+4
|
* for smartcards remove both RSA1/2 keysmarkus2001-07-041-3/+4
|
* handle card removal more gracefully, add sc_close() to scard.hmarkus2001-07-041-2/+3
|
* ignore SIGPIPE when debugging, toomarkus2001-07-041-5/+4
|
* s/generate_additional_parameters/rsa_generate_additional_parameters/markus2001-06-271-4/+4
| | | | http://www.humppa.com/
* more smartcard support.markus2001-06-261-2/+116
|
* update usagemarkus2001-06-261-3/+3
|
* add debug flagmarkus2001-06-261-8/+25
|
* update copyright for 2001markus2001-06-251-4/+3
|
* more strict prototypes. raise warning level in Makefile.inc. markus ok'editojun2001-06-231-22/+20
| | | | TODO; cleanup headers
* free() -> xfree()stevesk2001-04-031-4/+4
|
* try to read private f-secure ssh v2 rsa keys.markus2001-03-261-21/+4
|
* EINTR/EAGAIN handling is required in more casesderaadt2001-03-061-6/+18
|
* make copyright lines the same formatderaadt2001-03-021-3/+3
|
* sync with netbsd tree changes.itojun2001-02-081-3/+3
| | | | | | - more strict prototypes, include necessary headers - use paths.h/pathnames.h decls - size_t typecase to int -> u_long
* handle rsa_private_decrypt failures; helps against the Bleichenbacher pkcs#1 attackmarkus2001-01-291-3/+4
|
* call _exit() in signal handlerderaadt2001-01-251-6/+15
|
* split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.markus2001-01-211-8/+7
| | | | rename util.[ch] -> misc.[ch]
* fix select overflow, work by deraadt and me.markus2001-01-111-29/+63
|
* replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'markus2000-12-191-20/+20
| | | | with u_char.
* remove() -> unlink() for consistencymarkus2000-12-191-3/+3
|
* remove redundant spaces; from stevesk@pobox.commarkus2000-12-131-4/+4
|
* extern int optind; from stevesk@sweden.hp.commarkus2000-12-091-2/+3
|
* agents must not dump core, ok niels@markus2000-11-301-2/+9
|
* do not reorder keys if a key is removedmarkus2000-11-141-6/+12
|
* add support for RSA to SSH2. please test.markus2000-11-121-71/+64
| | | | | | | | | | | | | | | there are now 3 types of keys: RSA1 is used by ssh-1 only, RSA and DSA are used by SSH2. you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA keys for SSH2 and use the RSA keys for hostkeys or for user keys. SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before. IdentityFile2, HostDsaKey and DSAAuthentication are obsolete. you can use multiple IdentityFile and HostKey for all types of keys. the option DSAAuthentication is replaced by PubkeyAuthetication.
* off-by-one when removing a key from the agentmarkus2000-11-121-4/+8
|
* bug compat for old ssh.com softwaremarkus2000-09-211-3/+8
|
* check return value for setenv(3) for failure, and deal appropriatelyderaadt2000-09-151-4/+7
|
* cleanup copyright notices on all files. I have attempted to be accurate withderaadt2000-09-071-3/+28
| | | | | | | the details. everything is now under Tatu's licence (which I copied from his readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd developers under a 2-term bsd licence. We're not changing any rules, just being accurate.
* add a flag to SSH2_AGENTC_SIGN_REQUEST for future extensionsmarkus2000-08-311-2/+3
|
* add SSH2/DSA support to the agent and some other DSA related cleanups.markus2000-08-191-192/+318
| | | | (note that we cannot talk to ssh.com's ssh2 agents)
* make ssh-add accept dsa keys (the agent does not)markus2000-07-161-3/+6
|
* keysize warnings error() -> log()markus2000-04-291-3/+3
|
* Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de>djm2000-04-211-2/+6
| | | | via Debian bug #59926
* pid_tderaadt2000-04-191-4/+5
|