Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-11-10 | constify. ok markus@ & djm@ | Jakob Schlyter | |
2003-07-09 | minor tweak: when generating the hex fingerprint, give strlcat the full ↵ | Anil Madhavapeddy | |
bound to the buffer, and add a comment below explaining why the zero-termination is one less than the bound. markus@ ok | |||
2003-06-24 | int -> u_int; ok djm@, deraadt@, mouring@ | Markus Friedl | |
2003-05-14 | add experimental support for verifying hos keys using DNS as described | Jakob Schlyter | |
in draft-ietf-secsh-dns-xx.txt. more information in README.dns. ok markus@ and henning@ | |||
2003-02-12 | merge ssh-dss.h ssh-rsa.h into key.h; ok deraadt@ | Markus Friedl | |
2003-02-04 | better debug3 message | Markus Friedl | |
2002-09-09 | signed vs unsigned from -pedantic; ok henning@ | Markus Friedl | |
2002-07-04 | don't allocate, copy, and discard if there is not interested in the data; ok ↵ | Markus Friedl | |
deraadt@ | |||
2002-07-04 | patch memory leaks; grendel@zeitbombe.org | Theo de Raadt | |
2002-06-30 | minor KNF | Theo de Raadt | |
2002-06-23 | KNF | Theo de Raadt | |
2002-05-31 | add comment: | Markus Friedl | |
key_verify returns 1 for a correct signature, 0 for an incorrect signature and -1 on error. CVS ---------------------------------------------------------------------- | |||
2002-03-19 | KNF whitespace | Markus Friedl | |
2002-03-18 | add key_demote() for ssh-privsep | Markus Friedl | |
2002-02-28 | add some const EVP_MD for openssl-0.9.7 | Markus Friedl | |
2002-02-24 | signed vs. unsigned: make size arguments u_int, ok stevesk@ | Markus Friedl | |
2002-01-25 | use EVP_MD_size(evp_md) and not evp_md->md_size; ok steveks@ | Markus Friedl | |
2001-12-27 | call fatal() for openssl allocation failures | Markus Friedl | |
2001-12-25 | be more careful on allocation | Markus Friedl | |
2001-12-19 | basic KNF done while i was looking for something else | Theo de Raadt | |
2001-12-05 | minor KNF | Theo de Raadt | |
2001-11-21 | mem leak | Markus Friedl | |
2001-10-04 | call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com | Markus Friedl | |
2001-09-19 | key_read() now returns -1 on type mismatch, too | Markus Friedl | |
2001-09-17 | better error handling if you try to export a bad key to ssh.com | Markus Friedl | |
2001-09-17 | u_char*/char* cleanup; ok markus@ | Kevin Steves | |
2001-06-26 | add smartcard support to the client, too (now you can use both | Markus Friedl | |
the agent and the client). | |||
2001-06-25 | update copyright for 2001 | Markus Friedl | |
2001-06-23 | more strict prototypes. raise warning level in Makefile.inc. markus ok'ed | Jun-ichiro itojun Hagino | |
TODO; cleanup headers | |||
2001-06-23 | handle sigature of size 0 (some broken clients send this). | Markus Friedl | |
2001-04-17 | add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@ | Markus Friedl | |
2001-04-16 | better safe than sorry in later mods; yongari@kt-is.co.kr | Theo de Raadt | |
2001-04-05 | fix whitespace: unexpand + trailing spaces. | Markus Friedl | |
2001-03-12 | remove old key_fingerprint interface, s/_ex// | Markus Friedl | |
2001-03-11 | style+cleanup | Markus Friedl | |
2001-03-11 | cleanup & shorten some var names key_fingerprint_bubblebabble. | Jakob Schlyter | |
2001-03-11 | add improved fingerprint functions. based on work by Carsten | Jakob Schlyter | |
Raskgaard <cara@int.tele.dk> and modified by me. ok markus@. | |||
2001-03-11 | debug | Markus Friedl | |
2001-02-04 | unexpand and remove end-of-line whitespace; ok markus@ | Kevin Steves | |
2001-01-22 | free() -> xfree(); ok markus@ | Kevin Steves | |
2001-01-21 | split ssh.h and try to cleanup the #include mess. remove unnecessary #includes. | Markus Friedl | |
rename util.[ch] -> misc.[ch] | |||
2001-01-16 | make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from ↵ | Markus Friedl | |
galb@vandyke.com. note that you have to delete older ssh2-rsa keys, since they are in the wrong format, too. they must be removed from .ssh/authorized_keys2 and .ssh/known_hosts2, etc. (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP .ssh/authorized_keys2) additionally, we now check that BN_num_bits(rsa->n) >= 768. | |||
2000-12-19 | replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned' | Markus Friedl | |
with u_char. | |||
2000-11-12 | add support for RSA to SSH2. please test. | Markus Friedl | |
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. | |||
2000-09-07 | cleanup copyright notices on all files. I have attempted to be accurate with | Theo 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-08-19 | add SSH2/DSA support to the agent and some other DSA related cleanups. | Markus Friedl | |
(note that we cannot talk to ssh.com's ssh2 agents) | |||
2000-06-22 | Missing CVS idents; ok markus | Damien Miller | |
2000-06-19 | cleanup fingerprinting, less hardcoded sizes | Markus Friedl | |
2000-05-24 | fix key_read() for uuencoded keys w/o '=' | Markus Friedl | |
2000-05-05 | remote trailing comments before calling __b64_pton | Markus Friedl | |