summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-dss.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* change explicit_bzero();free() to freezero()jsg2020-02-261-5/+3
* hold our collective noses and use the openssl-1.1.x API in OpenSSH;djm2018-09-131-9/+19
* Remove all guards for calls to OpenSSL free functions - all of thesejsing2018-02-071-5/+3
* Drop compatibility hacks for some ancient SSH implementations, includingdjm2018-01-231-51/+30
* make argument == NULL tests more consistentdjm2016-04-211-2/+3
* Remove NULL-checks before sshbuf_free().mmcc2015-12-111-5/+3
* Remove NULL-checks before free().mmcc2015-12-101-3/+2
* New key API: refactor key-related functions to be more library-like,djm2014-06-241-104/+133
* convert memset of potentially-private data to explicit_bzero()djm2014-02-021-5/+5
* Introduce digest API and use it to perform all hashing operationsdjm2014-01-091-15/+16
* make the original RSA and DSA signing/verification code look more likedjm2013-12-271-14/+15
* bye, bye xfree(); ok markus@djm2013-05-171-5/+5
* Add buffer_get_cstring() and related functions that verify that thedjm2010-08-311-2/+2
* revised certificate format ssh-{dss,rsa}-cert-v01@openssh.com with thedjm2010-04-161-7/+5
* Add support for certificate key types for users and hosts.djm2010-02-261-3/+7
* add missing checks for openssl return codes; with & ok djm@markus2006-11-061-3/+4
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-3/+2
* move #include <string.h> out of includes.hstevesk2006-07-221-1/+3
* Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatdjm2006-03-251-0/+1
* RCSID() can diederaadt2006-03-191-1/+0
* constify. ok markus@ & djm@jakob2003-11-101-10/+10
* merge ssh-dss.h ssh-rsa.h into key.h; ok deraadt@markus2003-02-121-2/+1
* don't allocate, copy, and discard if there is not interested in the data; ok deraadt@markus2002-07-041-15/+11
* patch memory leaks; grendel@zeitbombe.orgderaadt2002-07-041-1/+5
* various KNF and %d for unsignedderaadt2002-06-231-9/+5
* add some const EVP_MD for openssl-0.9.7markus2002-02-281-3/+3
* signed vs. unsigned: make size arguments u_int, ok stevesk@markus2002-02-241-5/+5
* use static EVP_MAX_MD_SIZE buffers for EVP_DigestFinal; ok stevesk@markus2002-01-251-13/+7
* call fatal() for openssl allocation failuresmarkus2001-12-271-4/+7
* minor KNFderaadt2001-12-051-2/+2
* missing free and sync dss/rsa code.markus2001-11-071-5/+7
* u_char*/char* cleanup; ok markus@stevesk2001-09-171-3/+3
* cleanup, remove old codemarkus2001-06-061-44/+13
* sync with netbsd tree changes.itojun2001-02-081-1/+2
* unexpand and remove end-of-line whitespace; ok markus@stevesk2001-02-041-2/+2
* split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.markus2001-01-211-8/+5
* clear and free digest, make consistent with other code (use dlen); from stevesk@markus2001-01-191-4/+7
* replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'markus2000-12-191-15/+15
* add support for RSA to SSH2. please test.markus2000-11-121-0/+216