summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/auth-rsa.c
AgeCommit message (Collapse)Author
2002-06-10display minimum RSA modulus in error(); ok markus@Kevin Steves
2002-03-29make RSA modulus minimum #define; ok markus@Kevin Steves
2002-03-26disallow RSA keys < 768 for protocol 1, too (rhosts-rsa and rsa auth)Markus Friedl
2002-03-25return 0 (not NULL); tomh@po.crl.go.jpMarkus Friedl
2002-03-18integrate privilege separated openssh; its turned off by default for now.Niels Provos
work done by me and markus@
2002-03-14split auth_rsa() for better readability and privsep; ok provos@Markus Friedl
2001-12-28packet_read* no longer return the packet length, since it's not used.Markus Friedl
2001-12-28s/packet_done/packet_check_eom/ (end-of-message); ok djm@Markus Friedl
2001-12-27get rid of packet_integrity_check, use packet_done() instead.Markus Friedl
2001-12-27call fatal() for openssl allocation failuresMarkus Friedl
2001-12-18log fingerprint on successful public key authentication, simplify usage of ↵Jakob Schlyter
key structs; ok markus@
2001-11-29fix protocol error: send 'failed' message instead of a 2nd challengeMarkus Friedl
(happens if the same key is in authorized_keys twice). reported Ralf_Meister@genua.de; ok djm@
2001-07-23use %lu; ok markus@Kevin Steves
2001-06-25terminate secure_filename checking after checking homedir. that way itNiels Provos
works on AFS. okay markus@
2001-06-22merge authorized_keys2 into authorized_keys.Markus Friedl
authorized_keys2 is used for backward compat. (just append authorized_keys2 to authorized_keys).
2001-05-20configurable authorized_keys{,2} location; originally from peter@; ok djm@Markus Friedl
2001-04-06do gid/groups-swap in addition to uid-swap, should help if /home/groupMarkus Friedl
is chmod 750 + chgrp grp /home/group/, work be deraadt and me, thanks to olar@openwall.com is comments. we had many requests for this.
2001-03-01KNFTheo de Raadt
2001-01-21split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.Markus Friedl
rename util.[ch] -> misc.[ch]
2001-01-20typoMarkus Friedl
2001-01-20pass the filename to auth_parse_options()Markus Friedl
2001-01-19move ssh1 definitions to ssh1.h, pathnames to pathnames.hMarkus Friedl
2000-12-19replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'Markus Friedl
with u_char.
2000-11-14parse options only if key matches; fixes some confusing messages seen by the ↵Markus Friedl
client
2000-10-14do not send RSA challenge if key is not allowed by key-options; from ↵Markus Friedl
eivind@ThinkSec.com
2000-10-11clear auth options unless auth sucessfullMarkus Friedl
2000-10-03move fake-auth from auth1.c to individual auth methods, disables s/key in ↵Markus Friedl
debug-msg
2000-09-07some more Copyright fixesMarkus Friedl
2000-09-07cleanup copyright notices on all files. I have attempted to be accurate withTheo de Raadt
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.
2000-07-07clean code is good codeTodd T. Fries
2000-06-20OpenBSD tagMarkus Friedl
2000-06-18split auth-rsa option parsing into auth-optionsMarkus Friedl
add options support to authorized_keys2
2000-06-06fix match_hostname() logic for auth-rsa: deny access if we have a negative ↵Markus Friedl
match or no match at all
2000-04-29keysize warnings error() -> log()Markus Friedl
2000-04-26missing fcloseMarkus Friedl
2000-04-14whitespace cleanupMarkus Friedl
2000-04-12#include <ssl/foo.h> -> <openssh/foo.h>Markus Friedl
2000-03-23initial support for DSA keys. ok deraadt@, niels@Markus Friedl
2000-02-11delay MD5 computation until client sends response, free() early, cleanup.Markus Friedl
2000-01-18fix user/1056, sshd keeps restrictions; dbt@meat.netMarkus Friedl
1999-12-02warn only about mismatch if key is _used_Markus Friedl
1999-12-02warn about keysize-mismatch with log() not error()Markus Friedl
1999-11-24KNF, final part 3Markus Friedl
1999-11-24much more KNFTheo de Raadt
1999-11-23KNF part 1Markus Friedl
1999-11-22syslog changes:Markus Friedl
* Unified Logmessage for all auth-types, for success and for failed * Standard connections get only ONE line in the LOG when level==LOG: Auth-attempts are logged only, if authentication is: a) successfull or b) with passwd or c) we had more than AUTH_FAIL_LOG failues * many log() became verbose() * old behaviour with level=VERBOSE
1999-11-18more %d vs. %s in fmt-stringsMarkus Friedl
1999-11-15the keysize of rsa-parameter 'n' is passed implizit,Markus Friedl
a few more checks and warnings about 'pretended' keysizes.
1999-11-11make all access to options via 'extern Options options'Markus Friedl
and 'extern ServerOptions options' respectively; options are no longer passed as arguments: * make options handling more consistent * remove #include "readconf.h" from ssh.h * readconf.h is only included if necessary
1999-11-02replace assert() with error, fatal or packet_disconnectMarkus Friedl