Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-04 | Remove mbuf low watermark vars. Unused since uipc_mbuf.c rev 1.244. | Jonathan Gray | |
ok kn@ bluhm@ | |||
2023-07-04 | Add some extra parenthesis for consistency. | Mark Kettenis | |
stolen from jsing@ | |||
2023-07-04 | Plug leak in the ssltest | Theo Buehler | |
Removing -tls1 moved some tests from the legacy stack to the TLSv1.3 stack. On a HRR, the alpn callback would be called twice and allocate the global twice, thereby leaking. So free it up front. Joint suffering with bcook and beck | |||
2023-07-04 | Factor the computation of ECDSA s into a function | Theo Buehler | |
ossl_ecdsa_sign_sig() is already complicated enough. The math bit is entirely self contained and does not need to obfuscate control flow and logic. with feedback from and ok jsing | |||
2023-07-04 | document the recent addition of "Building from scratch" and what it means. | Marc Espie | |
2023-07-04 | add support for unix domain sockets to ssh -W | David Gwynne | |
ok djm@ dtucker@ | |||
2023-07-04 | m_reclaim() was removed in uipc_mbuf.c rev 1.195 | Jonathan Gray | |
2023-07-04 | a little knf, no functional change | David Gwynne | |
2023-07-04 | remove unused global var | Jonathan Gray | |
ok sashan@ | |||
2023-07-03 | record when pkg_add is actually doing something. | Marc Espie | |
details of rc code to be set in stone later (currently as an option) | |||
2023-07-03 | favor REGRESS_EXPECTED_FAILURES | Anton Lindqvist | |
2023-07-03 | also make things 5.36 if not used | Marc Espie | |
2023-07-03 | Add support for marking lines with a shell prompt based on the OSC 133 | Nicholas Marriott | |
extension, from Munif Tanjim in GitHub issue 3596. | |||
2023-07-03 | Enable mouse.tp.mtbuttons for apldcms | Tobias Heider | |
ok bru@ | |||
2023-07-03 | use consistent queue(9) example for LIST removal; OK bluhm mvs | Klemens Nanni | |
2023-07-03 | An empty string indicates there is no NXTNUM(). | Kenneth R Westerback | |
Fixes segfault in -e if you happen to delete everything after a partition line's ":". | |||
2023-07-03 | sign_sig: drop ckinv | Theo Buehler | |
The only reason ckinv exists is to be able to avoid a copy. This copy leaks some timing info, that will be mitigated in a subsequent step. It is an unused or at least uncommonly used codepath. ok jsing | |||
2023-07-03 | Rework the logic in ECDSA sign_sig() | Theo Buehler | |
If the caller supplied both kinv and r, we don't loop but rather throw an undocumented error code that no one uses, which is intended to tell the caller to run ECDSA_sign_setup() and try again. Use a boolean that indicates this situation so that the logic becomes a bit more transparent. ok jsing | |||
2023-07-03 | add regress tests for the remainder of the function provided by our uuid.h | Jasper Lievisse Adriaanse | |
2023-07-03 | add a few tests related to --cflags and --libs in combination with ↵ | Jasper Lievisse Adriaanse | |
Requires.private. skipping one (currently failing) test which exhibits the behaviour described by humm@ljabl.com on bugs@ | |||
2023-07-03 | Use new ibuf API. Use ibuf_data() and ibuf_size() instead of direct | Claudio Jeker | |
struct access and use ibuf_set_n16() to update the length field. OK tb@ | |||
2023-07-03 | Delete some more references to dead policy code. | Tobias Heider | |
Fixes -DNAMESPACE ok tb@ | |||
2023-07-03 | sign_sig: test on assignment | Theo Buehler | |
2023-07-03 | sign_setup: split another check into two | Theo Buehler | |
2023-07-03 | typo | Tobias Heider | |
2023-07-03 | Do not risk writing over the end of the buffer when it ends in # | Nicholas Marriott | |
(because strchr \0 will be non-NULL), reported by Robert Morris in GitHub issue 3610. | |||
2023-07-03 | Use ibuf_data() and ibuf_size() instead of accessing struct ibuf. | Claudio Jeker | |
OK tb@ | |||
2023-07-03 | Split range checks for ECDSA r and ECDSA s | Theo Buehler | |
requested by jsing | |||
2023-07-03 | Switch a couple of test from ucmp to cmp | Theo Buehler | |
This is confusing, as both sides involved should be unsigned. The ec code is undecided on whether the group order can be negative. It should never be, so lets see what happen with this slightly stricter check. discussed with jsing | |||
2023-07-03 | ossl_ecdsa_verify_sig(): simplify range checks | Theo Buehler | |
The checks whether r and s lie in the interval [1, order) were a bit uglier than necessary. Clean this up. ok beck jsing | |||
2023-07-03 | List variables in a somewhat more sensible order | Theo Buehler | |
2023-07-03 | In ossl_ecdsa_verify_sig() use BN_CTX more idiomatically | Theo Buehler | |
ok beck jsing | |||
2023-07-03 | Split a bunch of unrelated checks | Theo Buehler | |
ok beck jsing | |||
2023-07-03 | Make ossl_ecdsa_verify_sig() single exit | Theo Buehler | |
ok beck jsing | |||
2023-07-03 | Switch ossl_ecdsa_verify() to timingsafe_memcmp() | Theo Buehler | |
Requested by jsing | |||
2023-07-03 | Streamline ossl_ecdsa_verify() | Theo Buehler | |
Make it single exit and use API more idiomatically and some other cosmetics. ok beck jsing | |||
2023-07-03 | Use ibuf_data() instead of direct access to ibuf->buf, | Claudio Jeker | |
use ibuf_size() instead of direct access to ibuf->wpos, use ibuf_left() in places where the code checks if there is enough space left in the ibuf. OK tb@ | |||
2023-07-03 | Use ibuf_data() instead of directly accessing ibuf->buf. | Claudio Jeker | |
OK tb@ | |||
2023-07-03 | Use ibuf_data() instead of accessing ibuf->buf directly. | Claudio Jeker | |
OK tb@ | |||
2023-07-03 | Explicit parameter printing can also use get0_order() | Theo Buehler | |
ok beck jsing | |||
2023-07-03 | Convert ossl_ec_key_gen() and EC_KEY_check_key() | Theo Buehler | |
These also get the EC_GROUP_get0_order() treatment ok beck jsing | |||
2023-07-03 | Convert EC_GROUP_check() to EC_GROUP_get0_order() | Theo Buehler | |
ok beck jsing | |||
2023-07-03 | Inline two copies of EC_GROUP_order_bits() | Theo Buehler | |
This code is way more complicated than it needs to be. Simplify. ec_bits() was particularly stupid. ok beck jsing | |||
2023-07-03 | use semicolon not comma at eol | Jonathan Gray | |
ok stsp@ | |||
2023-07-03 | fix uuid_dec_{b,l}e prototypes | Jasper Lievisse Adriaanse | |
ok jmc@ | |||
2023-07-03 | some minor fix up; | Jason McIntyre | |
2023-07-03 | Another warning fix for GCC from Thomas Klausner. | Nicholas Marriott | |
2023-07-03 | when shutting down a vm, handle the VM id in the same way as a VM name argument | Jasper Lievisse Adriaanse | |
ok dv@ | |||
2023-07-03 | Nuke unused label 'next:'. | Kenneth R Westerback | |
2023-07-03 | Bring back no_tls1 and no_tls1_1 as undocumented silently discarded opitons | Bob Beck | |
While I'm here, change the no_ssl2 and no_ssl3 options to use OPTION_DISCARD as well instead of continuing to set a no-op option flag. ok jsing@ tb@ |