Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge ssh-dss.h ssh-rsa.h into key.h; ok deraadt@ | 2003-02-12 | 1 | -32/+0 | |
| | |||||
* | signed vs. unsigned: make size arguments u_int, ok stevesk@ | 2002-02-24 | 1 | -3/+3 | |
| | |||||
* | remove comments from .h, since they are cut&paste from the .c files | 2001-06-26 | 1 | -4/+3 | |
| | | | | and out of sync | ||||
* | prototype pedant. not very creative... | 2001-06-26 | 1 | -11/+3 | |
| | | | | | - () -> (void) - no variable names | ||||
* | $OpenBSD$ | 2001-01-29 | 1 | -0/+2 | |
| | |||||
* | replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned' | 2000-12-19 | 1 | -4/+4 | |
| | | | | with u_char. | ||||
* | add support for RSA to SSH2. please test. | 2000-11-12 | 1 | -0/+39 | |
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. |