summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/mac.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* handle UMAC128 initialization like UMAC; ok djm@ markus@naddy2015-01-151-2/+3
* adapt mac.c to ssherr.h return codes (de-fatal) and simplify dependenciesmarkus2015-01-131-47/+47
* UMAC can use our local fallback implementation of AES when OpenSSL isn'tnaddy2014-04-301-15/+1
* make compiling against OpenSSL optional (make OPENSSL=no);markus2014-04-291-2/+17
* remove some logging that makes ssh debugging output very verbose;djm2014-02-071-6/+5
* replace openssl HMAC with an implementation based on our ssh_digest_*markus2014-01-271-43/+42
* use standard types and formats for size_t like variables. ok dtuckertedu2014-01-041-3/+3
* Output the effective values of Ciphers, MACs and KexAlgorithms whendtucker2013-11-071-4/+4
* force the MAC output to be 64-bit aligned so umac won't see unaligneddtucker2013-06-031-8/+11
* bye, bye xfree(); ok markus@djm2013-05-171-3/+3
* add the ability to query supported ciphers, MACs, key type and KEXdjm2013-04-191-20/+42
* fix typo, s/tem/etm in hmac-ripemd160-tem. ok markus@sthen2012-12-111-2/+2
* add encrypt-then-mac (EtM) modes to openssh by defining new mac algorithmsmarkus2012-12-111-12/+27
* add umac128 variant; ok djm@ at n2k12markus2012-10-041-1/+14
* Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs since they were removeddtucker2012-06-281-3/+1
* fix bz#1934: newer OpenSSL versions will require HMAC_CTX_Init beforedjm2011-12-021-1/+2
* Add new SHA256 and SHA512 based HMAC modes fromdjm2011-08-021-1/+5
* upcast another size_t to u_long to match formatdtucker2008-06-131-2/+2
* Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, mustpvalchev2007-06-071-27/+80
* Preserve MAC ctx between packets, saving 2xhash calls per-packet.djm2007-06-051-13/+23
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-2/+5
* move #include <string.h> out of includes.hstevesk2006-07-221-1/+3
* replace {GET,PUT}_XXBIT macros with functionally similar functions,djm2006-03-301-3/+3
* Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatdjm2006-03-251-0/+1
* RCSID() can diederaadt2006-03-191-1/+0
* make this -Wsign-compare clean; ok avsm@ markus@djm2005-06-171-4/+7
* A few signedness fixes for harmless situations; markus@ okmiod2003-09-181-2/+2
* fix warnings (openssl 0.9.7 requires const)markus2002-05-161-2/+2
* use EVP_MD_size(evp_md) and not evp_md->md_size; ok steveks@markus2002-01-251-2/+2
* basic KNF done while i was looking for something elsederaadt2001-12-191-2/+2
* fix whitespace: unexpand + trailing spaces.markus2001-04-051-2/+2
* 1) clean up the MAC support for SSH-2markus2001-02-111-0/+114