Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | change to use queue.h macros; okay markus@ | 2002-01-13 | 1 | -82/+69 | ||
| | ||||||
* | remove unneeded casts and some char->u_char cleanup; ok markus@ | 2001-12-29 | 1 | -3/+3 | ||
| | ||||||
* | call fatal() for openssl allocation failures | 2001-12-27 | 1 | -3/+4 | ||
| | ||||||
* | basic KNF done while i was looking for something else | 2001-12-19 | 1 | -5/+5 | ||
| | ||||||
* | minor KNF | 2001-12-05 | 1 | -5/+5 | ||
| | ||||||
* | enum/int type cleanup where it made sense to do so; ok markus@ | 2001-11-17 | 1 | -6/+10 | ||
| | ||||||
* | improve usage(). ok markus@ | 2001-08-03 | 1 | -4/+8 | ||
| | ||||||
* | clean up some /* SMARTCARD */. ok markus@ | 2001-08-02 | 1 | -3/+3 | ||
| | ||||||
* | add /* SMARTCARD */ to #else/#endif. ok markus@ | 2001-08-02 | 1 | -5/+5 | ||
| | ||||||
* | use strings instead of ints for smartcard reader ids | 2001-08-01 | 1 | -8/+11 | ||
| | ||||||
* | do not exit() from signal handlers; ok deraadt@ | 2001-07-20 | 1 | -16/+16 | ||
| | ||||||
* | chdir("/") from bbraun@synack.net; ok markus@ | 2001-07-18 | 1 | -6/+9 | ||
| | ||||||
* | update maxfd if maxfd is closed; report from jmcelroy@dtgnet.com | 2001-07-17 | 1 | -7/+12 | ||
| | ||||||
* | typo in usage; ok markus@ | 2001-07-15 | 1 | -3/+3 | ||
| | ||||||
* | handle mutiple adds of the same smartcard key | 2001-07-04 | 1 | -2/+4 | ||
| | ||||||
* | for smartcards remove both RSA1/2 keys | 2001-07-04 | 1 | -3/+4 | ||
| | ||||||
* | handle card removal more gracefully, add sc_close() to scard.h | 2001-07-04 | 1 | -2/+3 | ||
| | ||||||
* | ignore SIGPIPE when debugging, too | 2001-07-04 | 1 | -5/+4 | ||
| | ||||||
* | s/generate_additional_parameters/rsa_generate_additional_parameters/ | 2001-06-27 | 1 | -4/+4 | ||
| | | | | http://www.humppa.com/ | |||||
* | more smartcard support. | 2001-06-26 | 1 | -2/+116 | ||
| | ||||||
* | update usage | 2001-06-26 | 1 | -3/+3 | ||
| | ||||||
* | add debug flag | 2001-06-26 | 1 | -8/+25 | ||
| | ||||||
* | update copyright for 2001 | 2001-06-25 | 1 | -4/+3 | ||
| | ||||||
* | more strict prototypes. raise warning level in Makefile.inc. markus ok'ed | 2001-06-23 | 1 | -22/+20 | ||
| | | | | TODO; cleanup headers | |||||
* | free() -> xfree() | 2001-04-03 | 1 | -4/+4 | ||
| | ||||||
* | try to read private f-secure ssh v2 rsa keys. | 2001-03-26 | 1 | -21/+4 | ||
| | ||||||
* | EINTR/EAGAIN handling is required in more cases | 2001-03-06 | 1 | -6/+18 | ||
| | ||||||
* | make copyright lines the same format | 2001-03-02 | 1 | -3/+3 | ||
| | ||||||
* | sync with netbsd tree changes. | 2001-02-08 | 1 | -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 attack | 2001-01-29 | 1 | -3/+4 | ||
| | ||||||
* | call _exit() in signal handler | 2001-01-25 | 1 | -6/+15 | ||
| | ||||||
* | split ssh.h and try to cleanup the #include mess. remove unnecessary #includes. | 2001-01-21 | 1 | -8/+7 | ||
| | | | | rename util.[ch] -> misc.[ch] | |||||
* | fix select overflow, work by deraadt and me. | 2001-01-11 | 1 | -29/+63 | ||
| | ||||||
* | replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned' | 2000-12-19 | 1 | -20/+20 | ||
| | | | | with u_char. | |||||
* | remove() -> unlink() for consistency | 2000-12-19 | 1 | -3/+3 | ||
| | ||||||
* | remove redundant spaces; from stevesk@pobox.com | 2000-12-13 | 1 | -4/+4 | ||
| | ||||||
* | extern int optind; from stevesk@sweden.hp.com | 2000-12-09 | 1 | -2/+3 | ||
| | ||||||
* | agents must not dump core, ok niels@ | 2000-11-30 | 1 | -2/+9 | ||
| | ||||||
* | do not reorder keys if a key is removed | 2000-11-14 | 1 | -6/+12 | ||
| | ||||||
* | add support for RSA to SSH2. please test. | 2000-11-12 | 1 | -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 agent | 2000-11-12 | 1 | -4/+8 | ||
| | ||||||
* | bug compat for old ssh.com software | 2000-09-21 | 1 | -3/+8 | ||
| | ||||||
* | check return value for setenv(3) for failure, and deal appropriately | 2000-09-15 | 1 | -4/+7 | ||
| | ||||||
* | cleanup copyright notices on all files. I have attempted to be accurate with | 2000-09-07 | 1 | -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 extensions | 2000-08-31 | 1 | -2/+3 | ||
| | ||||||
* | add SSH2/DSA support to the agent and some other DSA related cleanups. | 2000-08-19 | 1 | -192/+318 | ||
| | | | | (note that we cannot talk to ssh.com's ssh2 agents) | |||||
* | make ssh-add accept dsa keys (the agent does not) | 2000-07-16 | 1 | -3/+6 | ||
| | ||||||
* | keysize warnings error() -> log() | 2000-04-29 | 1 | -3/+3 | ||
| | ||||||
* | Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de> | 2000-04-21 | 1 | -2/+6 | ||
| | | | | via Debian bug #59926 | |||||
* | pid_t | 2000-04-19 | 1 | -4/+5 | ||
| |