summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-xmss.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Adapt XMSS to new logging infrastructure. With markus@, ok djm@.dtucker2020-10-191-3/+3
|
* use the new variant log macros instead of prepending __func__ anddjm2020-10-181-3/+2
| | | | appending ssh_err(r) manually; ok markus@
* change explicit_bzero();free() to freezero()jsg2020-02-261-13/+7
| | | | | | | | While freezero() returns early if the pointer is NULL the tests for NULL in callers are left to avoid warnings about passing an uninitialised size argument across a function boundry. ok deraadt@ djm@
* Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures)markus2018-02-231-0/+188
The code is not compiled in by default (see WITH_XMSS in Makefile.inc) Joint work with stefan-lukas_gazdag at genua.eu See https://tools.ietf.org/html/draft-irtf-cfrg-xmss-hash-based-signatures-12 ok djm@