History log of /openbsd-current/usr.bin/ssh/digest.h
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: OPENBSD_6_2_BASE
# 1.8 08-May-2017 djm

remove hmac-ripemd160; ok dtucker


Revision tags: OPENBSD_5_7_BASE OPENBSD_5_8_BASE OPENBSD_5_9_BASE OPENBSD_6_0_BASE OPENBSD_6_1_BASE
# 1.7 21-Dec-2014 djm

Add FingerprintHash option to control algorithm used for key
fingerprints. Default changes from MD5 to SHA256 and format
from hex to base64.

Feedback and ok naddy@ markus@


Revision tags: OPENBSD_5_6_BASE
# 1.6 03-Jul-2014 djm

forward-declare struct sshbuf so consumers don't need to include sshbuf.h


# 1.5 24-Jun-2014 djm

New key API: refactor key-related functions to be more library-like,
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.


# 1.4 02-May-2014 djm

revert __bounded change; it causes way more problems for portable than
it solves; pointed out by dtucker@


# 1.3 26-Mar-2014 djm

use __bounded(...) attribute recently added to sys/cdefs.h instead of
longform __attribute__(__bounded(...));

for brevity and a warning free compilation with llvm/clan


Revision tags: OPENBSD_5_5_BASE
# 1.2 27-Jan-2014 markus

replace openssl HMAC with an implementation based on our ssh_digest_*
ok and feedback djm@


# 1.1 09-Jan-2014 djm

Introduce digest API and use it to perform all hashing operations
rather than calling OpenSSL EVP_Digest* directly. Will make it easier
to build a reduced-feature OpenSSH without OpenSSL in future;
feedback, ok markus@