#
eab2888c |
| 19-Oct-2020 |
dtucker@openbsd.org |
upstream: Adapt XMSS to new logging infrastructure. With markus@, ok djm@. OpenBSD-Commit-ID: 9c35ec3aa0f710e4e3325187ceff4fa3791686de
|
Revision tags: V_8_4_P1, V_8_3_P1, V_8_2_P1 |
|
#
bf219920 |
| 13-Nov-2019 |
markus@openbsd.org |
upstream: fix shield/unshield for xmss keys: - in ssh-agent we need to delay the call to shield until we have received key specific options. - when serializing xmss keys for shield we
upstream: fix shield/unshield for xmss keys: - in ssh-agent we need to delay the call to shield until we have received key specific options. - when serializing xmss keys for shield we need to deal with all optional components (e.g. state might not be loaded). ok djm@ OpenBSD-Commit-ID: cc2db82524b209468eb176d6b4d6b9486422f41f
show more ...
|
#
d7d116b6 |
| 14-Oct-2019 |
djm@openbsd.org |
upstream: memleak in error path; spotted by oss-fuzz, ok markus@ OpenBSD-Commit-ID: d6ed260cbbc297ab157ad63931802fb1ef7a4266
|
Revision tags: V_8_1_P1 |
|
#
a546b17b |
| 08-Oct-2019 |
djm@openbsd.org |
upstream: fix integer overflow in XMSS private key parsing. Reported by Adam Zabrocki via SecuriTeam's SSH program. Note that this code is experimental and not compiled by default.
upstream: fix integer overflow in XMSS private key parsing. Reported by Adam Zabrocki via SecuriTeam's SSH program. Note that this code is experimental and not compiled by default. ok markus@ OpenBSD-Commit-ID: cd0361896d15e8a1bac495ac583ff065ffca2be1
show more ...
|
#
4d28fa78 |
| 28-Jun-2019 |
deraadt@openbsd.org |
upstream: When system calls indicate an error they return -1, not some arbitrary value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this be
upstream: When system calls indicate an error they return -1, not some arbitrary value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future. OpenBSD-Commit-ID: 48081f00db7518e3b712a49dca06efc2a5428075
show more ...
|
#
5cdbaa78 |
| 27-Jun-2019 |
deraadt@openbsd.org |
upstream: Some asprintf() calls were checked < 0, rather than the precise == -1. ok millert nicm tb, etc OpenBSD-Commit-ID: caecf8f57938685c04f125515b9f2806ad408d53
|
Revision tags: V_8_0_P1, V_7_9_P1, V_7_8_P1 |
|
#
49f47e65 |
| 09-Jul-2018 |
markus@openbsd.org |
upstream: replace cast with call to sshbuf_mutable_ptr(); ok djm@ OpenBSD-Commit-ID: 4dfe9d29fa93d9231645c89084f7217304f7ba29
|
#
001aa554 |
| 09-Apr-2018 |
djm@openbsd.org |
upstream: lots of typos in comments/docs. Patch from Karsten Weiss after checking with codespell tool (https://github.com/lucasdemarchi/codespell) OpenBSD-Commit-ID: 373222f12d7
upstream: lots of typos in comments/docs. Patch from Karsten Weiss after checking with codespell tool (https://github.com/lucasdemarchi/codespell) OpenBSD-Commit-ID: 373222f12d7ab606598a2d36840c60be93568528
show more ...
|
Revision tags: V_7_7_P1 |
|
#
941e0d3e |
| 28-Feb-2018 |
Darren Tucker |
Add WITH_XMSS, move to prevent conflicts. Add #ifdef WITH_XMSS to ssh-xmss.c, move it in the other files to after includes.h so it's less likely to conflict and will pick up WITH_XMSS if
Add WITH_XMSS, move to prevent conflicts. Add #ifdef WITH_XMSS to ssh-xmss.c, move it in the other files to after includes.h so it's less likely to conflict and will pick up WITH_XMSS if added to config.h.
show more ...
|
#
a10d8552 |
| 26-Feb-2018 |
Darren Tucker |
Conditionally compile XMSS code. The XMSS code is currently experimental and, unlike the rest of OpenSSH cannot currently be compiled with a c89 compiler.
|
#
f8854741 |
| 25-Feb-2018 |
Damien Miller |
XMSS-related files get includes.h
|
#
1b11ea7c |
| 23-Feb-2018 |
markus@openbsd.org |
upstream: Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures) The code is not compiled in by default (see WITH_XMSS in Makefile.inc) Joint work with stefan-lukas_
upstream: Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures) 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@ OpenBSD-Commit-ID: ef3eccb96762a5d6f135d7daeef608df7776a7ac
show more ...
|
#
941e0d3e |
| 28-Feb-2018 |
Darren Tucker |
Add WITH_XMSS, move to prevent conflicts. Add #ifdef WITH_XMSS to ssh-xmss.c, move it in the other files to after includes.h so it's less likely to conflict and will pick up WITH_XMSS if
Add WITH_XMSS, move to prevent conflicts. Add #ifdef WITH_XMSS to ssh-xmss.c, move it in the other files to after includes.h so it's less likely to conflict and will pick up WITH_XMSS if added to config.h.
show more ...
|
#
a10d8552 |
| 26-Feb-2018 |
Darren Tucker |
Conditionally compile XMSS code. The XMSS code is currently experimental and, unlike the rest of OpenSSH cannot currently be compiled with a c89 compiler.
|
#
f8854741 |
| 25-Feb-2018 |
Damien Miller |
XMSS-related files get includes.h
|
#
1b11ea7c |
| 23-Feb-2018 |
markus@openbsd.org |
upstream: Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures) The code is not compiled in by default (see WITH_XMSS in Makefile.inc) Joint work with stefan-lukas_
upstream: Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures) 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@ OpenBSD-Commit-ID: ef3eccb96762a5d6f135d7daeef608df7776a7ac
show more ...
|