summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/rsa.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* actually remove these filesdjm2017-07-011-0/+0
|
* remove post-SSHv1 removal dead code from rsa.c and merge thedjm2017-07-011-26/+0
| | | | remaining bit that it still used into ssh-rsa.c; ok markus
* New key API: refactor key-related functions to be more library-like,djm2014-06-241-3/+3
| | | | | | | | | existing API is offered as a set of wrappers. with and ok markus@ Thanks also to Ben Hawkes, David Tomaschik, Ivan Fratric, Matthew Dempsky and Ron Bowes for a detailed review a few months ago.
* standardise spacing in $OpenBSD$ tags; requested by deraadt@djm2006-03-251-1/+1
|
* $OpenBSD$ and RCSID() cleanup: don't use RCSID() in .h files; addstevesk2002-03-041-2/+2
| | | | | missing RCSID() to .c files and remove dup /*$OpenBSD$*/ from .c files. ok markus@
* s/generate_additional_parameters/rsa_generate_additional_parameters/markus2001-06-271-2/+2
| | | | http://www.humppa.com/
* remove comments from .h, since they are cut&paste from the .c filesmarkus2001-06-261-5/+4
| | | | and out of sync
* prototype pedant. not very creative...itojun2001-06-261-4/+4
| | | | | - () -> (void) - no variable names
* try to read private f-secure ssh v2 rsa keys.markus2001-03-261-1/+3
|
* handle rsa_private_decrypt failures; helps against the Bleichenbacher pkcs#1 attackmarkus2001-01-291-2/+2
|
* add support for RSA to SSH2. please test.markus2000-11-121-12/+1
| | | | | | | | | | | | | | | 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.
* cleanup copyright notices on all files. I have attempted to be accurate withderaadt2000-09-071-9/+7
| | | | | | | 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.
* OpenBSD tagmarkus2000-06-201-1/+1
|
* whitespace cleanupmarkus2000-04-141-7/+7
|
* #include <ssl/foo.h> -> <openssh/foo.h>markus2000-04-121-3/+3
|
* KNF, final part 3markus1999-11-241-3/+5
|
* much more KNFderaadt1999-11-241-18/+18
|
* test for RSA in the ssl library, real early onderaadt1999-09-291-4/+6
|
* convert all uses of gmp to SSL bignumprovos1999-09-281-0/+34
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.