Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix whitespace: unexpand + trailing spaces. | 2001-04-05 | 1 | -3/+3 | |
| | |||||
* | EINTR/EAGAIN handling is required in more cases | 2001-03-06 | 1 | -1/+5 | |
| | |||||
* | log functions should not be passed strings that end in newline as they | 2001-03-04 | 1 | -2/+2 | |
| | | | | | get passed on to syslog() and when logging to stderr, do_log() appends its own newline. | ||||
* | split line so that p will have an easier time next time around | 2001-03-01 | 1 | -2/+3 | |
| | |||||
* | unexpand and remove end-of-line whitespace; ok markus@ | 2001-02-04 | 1 | -2/+2 | |
| | |||||
* | remove duplicate #include's; ok markus@ | 2001-02-04 | 1 | -2/+1 | |
| | |||||
* | split ssh.h and try to cleanup the #include mess. remove unnecessary #includes. | 2001-01-21 | 1 | -5/+7 | |
| | | | | rename util.[ch] -> misc.[ch] | ||||
* | fix prototypes; from stevesk@pobox.com | 2000-12-20 | 1 | -3/+3 | |
| | |||||
* | replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned' | 2000-12-19 | 1 | -13/+13 | |
| | | | | with u_char. | ||||
* | add support for RSA to SSH2. please test. | 2000-11-12 | 1 | -28/+48 | |
| | | | | | | | | | | | | | | | 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. | ||||
* | interop with ssh-agent2, from <res@shore.net> | 2000-10-09 | 1 | -4/+9 | |
| | |||||
* | bug compat for old ssh.com software | 2000-09-21 | 1 | -3/+8 | |
| | |||||
* | cleanup copyright notices on all files. I have attempted to be accurate with | 2000-09-07 | 1 | -9/+27 | |
| | | | | | | | 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 | -1/+2 | |
| | |||||
* | add SSH2/DSA support to the agent and some other DSA related cleanups. | 2000-08-19 | 1 | -80/+155 | |
| | | | | (note that we cannot talk to ssh.com's ssh2 agents) | ||||
* | cleanup; ok niels@ | 2000-08-15 | 1 | -202/+114 | |
| | |||||
* | correct sun_len; Alexander@Leidinger.net | 2000-08-02 | 1 | -3/+4 | |
| | |||||
* | make ssh-add accept dsa keys (the agent does not) | 2000-07-16 | 1 | -19/+54 | |
| | |||||
* | cleanup, less cut&paste | 2000-06-26 | 1 | -111/+31 | |
| | |||||
* | OpenBSD tag | 2000-06-20 | 1 | -1/+1 | |
| | |||||
* | keysize warnings error() -> log() | 2000-04-29 | 1 | -3/+3 | |
| | |||||
* | whitespace cleanup | 2000-04-14 | 1 | -12/+12 | |
| | |||||
* | #include <ssl/foo.h> -> <openssh/foo.h> | 2000-04-12 | 1 | -2/+2 | |
| | |||||
* | keysize warnings talk about identity files | 1999-12-15 | 1 | -2/+2 | |
| | |||||
* | move atomicio into it's own file. wrap all socket write()s which were doing | 1999-12-06 | 1 | -12/+12 | |
| | | | | write(sock, buf, len) != len, with atomicio() calls. | ||||
* | KNF, final part 3 | 1999-11-24 | 1 | -47/+80 | |
| | |||||
* | much more KNF | 1999-11-24 | 1 | -14/+14 | |
| | |||||
* | KNF part 1 | 1999-11-23 | 1 | -464/+431 | |
| | |||||
* | Integers should not be printed with %s | 1999-11-18 | 1 | -2/+2 | |
| | |||||
* | close-on-exec for auth-socket, ok deraadt | 1999-11-16 | 1 | -1/+8 | |
| | |||||
* | the keysize of rsa-parameter 'n' is passed implizit, | 1999-11-15 | 1 | -7/+13 | |
| | | | | a few more checks and warnings about 'pretended' keysizes. | ||||
* | fix old connect() race security-bug for ssh-agent and agent-forwarding | 1999-10-14 | 1 | -110/+6 | |
| | | | | | | | | | | by removing the connect() junk, with the following restrictions: 1) change the version to "OpenSSH-1.1": agent-forwarding will work only between OpenSSH-1.1 client and OpenSSH-1.1 server 2) renamed the environment variable of OpenSSH-1.1 to "SSH_AUTH_SOCKET", since useing OpenSSH-1.0 ssh-add against the new ssh-agent does not work | ||||
* | move auth-sockets to private dir | 1999-10-05 | 1 | -2/+2 | |
| | | | | delete minfd residua | ||||
* | nuke genminfd/AUTH_FD | 1999-10-04 | 1 | -8/+1 | |
| | |||||
* | use SHUT_* symbols | 1999-10-03 | 1 | -4/+4 | |
| | |||||
* | even smaller | 1999-09-30 | 1 | -4/+4 | |
| | |||||
* | numerous sprintf, strncpy, strcpy cleanups | 1999-09-29 | 1 | -2/+2 | |
| | |||||
* | convert all uses of gmp to SSL bignum | 1999-09-28 | 1 | -28/+35 | |
| | | | | | | convert all used of rsa to SSL rsa functions remove all use of randomstate to OpenBSD arc4random() and arc4_stir() all this done at a long long night in Canada. | ||||
* | i bet a lot of people didn't know what ssh 1.2.16 had a nice license. | 1999-09-26 | 1 | -0/+669 | |
well, except for the patent issues. someone in sweden (forget their name at the moment) cleaned out most of the patented code, and now this code removes rsa code. when this is done, it will link against libssl, but the work isn't completely done yet. then we need to bring this up to modern days, featurewise. |