1d95931d | 21-May-2021 |
Pauli |
doc: rereference img locations into subdirectory Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15399) |
810d2354 | 21-May-2021 |
Pauli |
doc: move images into their own subdirectory Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15399) |
862497a9 | 21-May-2021 |
Pauli |
property: convert integers to strings properly. The int64_t type was converted to int (truncation). Negative values were not handled at all. Reviewed-by: Tomas Mraz <tomas@opens
property: convert integers to strings properly. The int64_t type was converted to int (truncation). Negative values were not handled at all. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15396)
show more ...
|
b5461192 | 20-May-2021 |
Richard Levitte |
test/params_conversion_test.c: fix the use of strtoumax and strtoimax on VMS We do this by making them aliases for strtoull and strtoll, since long long is the current largest integer th
test/params_conversion_test.c: fix the use of strtoumax and strtoimax on VMS We do this by making them aliases for strtoull and strtoll, since long long is the current largest integer that have this sort of routine on VMS. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15366)
show more ...
|
6251895c | 20-May-2021 |
Richard Levitte |
Include "internal/numbers.h" in test programs using SIZE_MAX Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15366) |
a0668415 | 20-May-2021 |
Richard Levitte |
VMS: don't use app_malloc() in apps/lib/vms_decc_argv.c The reason being that it would otherwise force test programs to link with all of libapps.a, which unfortunately causes multiple sy
VMS: don't use app_malloc() in apps/lib/vms_decc_argv.c The reason being that it would otherwise force test programs to link with all of libapps.a, which unfortunately causes multiple symbol definition issues. The quick and dirty fix is to use OPENSSL_malloc() instead of app_malloc() in apps/lib/vms_decc_argv.c, and clean up libapps.a later. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15368)
show more ...
|
3f987381 | 20-May-2021 |
Dmitry Belyavskiy |
Cleanup the peer point formats on regotiation Fixes #14875 Reviewed-by: Ben Kaduk <kaduk@mit.edu> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.co
Cleanup the peer point formats on regotiation Fixes #14875 Reviewed-by: Ben Kaduk <kaduk@mit.edu> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15383)
show more ...
|
04916913 | 20-May-2021 |
Richard Levitte |
DOCS: Fixups of the migration guide and the FIPS module manual The markup needed a few touch-ups Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Nicola Tuveri <nic.tuv@g
DOCS: Fixups of the migration guide and the FIPS module manual The markup needed a few touch-ups Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> (Merged from https://github.com/openssl/openssl/pull/15377)
show more ...
|
819b94c0 | 20-May-2021 |
Dmitry Belyavskiy |
HMAC doesn't work with a default digest Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org>
HMAC doesn't work with a default digest Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15371)
show more ...
|
6d3f798c | 17-May-2021 |
Jean-Philippe Boivin |
Properly restore XMM registers in ChaCha20's AVX-512(VL) assembly Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.c
Properly restore XMM registers in ChaCha20's AVX-512(VL) assembly Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15315)
show more ...
|
b9385449 | 19-May-2021 |
Richard Levitte |
PROV: Relegate most of the FIPS provider code to libfips.a provider/fips/fipsprov.c contains a number of symbols that get used by anything that's included in libfips.a, at least on Unix.
PROV: Relegate most of the FIPS provider code to libfips.a provider/fips/fipsprov.c contains a number of symbols that get used by anything that's included in libfips.a, at least on Unix. Unfortunately, there are platforms that do not support resolving symbols to things that are already included in the end product (module in this case) being built; they only support resolving symbols with what comes next in the linking process. The offending symbols in this case are FIPS_security_check_enabled, c_thread_start and ossl_fips_intern_provider_init. We resolve this by placing provider/fips/fipsprov.c in libfips.a along with everything else there. That takes care of the offending symbols. What remains is to ensure that there is an entry point in an object file used directly when linking the module, providers/fips/fips_entry.c Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15370)
show more ...
|
d2f82495 | 18-May-2021 |
Matt Caswell |
Cleanup the missing*.txt files One macro existed that was added since 1.1.1 and was undocumented. This had been added to missingmacro.txt. This is the wrong approach and so has been
Cleanup the missing*.txt files One macro existed that was added since 1.1.1 and was undocumented. This had been added to missingmacro.txt. This is the wrong approach and so has been removed from there. There were some entries in missingcrypto.txt that don't exist as functions at all. There were also some which were in fact documented. Additionally 2 entries from missingcrypto.txt have been moved to missingmacro.txt. These entries existed in 1.1.1 and were undocumented. In master they have been deprecated and compatibility macros for them implemented. The replacement functions have been documented. An entry in missingcrypto111.txt was not in alphabetical order (and was also) duplicated, but the equivalent entry in missingcrypto.txt was in the correct place. This has been corrected to make comparisons between the files easier. Finally a function has been added to missingcrypto111.txt. This function did exist in 1.1.1 and was undocumented. Its unclear why this wasn't in missingcrypto111.txt to start with. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15333)
show more ...
|
57cea5ba | 18-May-2021 |
Tomas Mraz |
apps: Cleanup useless bio_open_default() calls for key input Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/15331) |
9ad400f7 | 19-May-2021 |
Tomas Mraz |
FIPS label CI: Save PR number and use it Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15345) |
cc9f9b98 | 19-May-2021 |
Matt Caswell |
Clean up the "fips" option to Configure Don't die if someone says "fips" instead of "enable-fips" Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matthias St. Pi
Clean up the "fips" option to Configure Don't die if someone says "fips" instead of "enable-fips" Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15346)
show more ...
|
8a196fe2 | 19-May-2021 |
Dr. David von Oheimb |
BIO_s_accept.pod: Document port auto-selection feature of BIO_set_accept_port() Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from ht
BIO_s_accept.pod: Document port auto-selection feature of BIO_set_accept_port() Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15354)
show more ...
|
12021035 | 19-May-2021 |
Dr. David von Oheimb |
EVP_DigestSignInit.pod: Clarification in EVP_DigestSignFinal() parameter 'sig' Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from htt
EVP_DigestSignInit.pod: Clarification in EVP_DigestSignFinal() parameter 'sig' Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15354)
show more ...
|
0a281eef | 19-May-2021 |
Tomas Mraz |
Exchange no-siv and no-ec2m between daily and ci workflows The no-ec2m with ec enabled is much more likely to show regressions such as #15170 than the no-siv build. Reviewed-by:
Exchange no-siv and no-ec2m between daily and ci workflows The no-ec2m with ec enabled is much more likely to show regressions such as #15170 than the no-siv build. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15355)
show more ...
|
8a709c5e | 19-May-2021 |
Tomas Mraz |
pem_read_bio_key_legacy: Do not obscure real error if there is one Fixes #15170 Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Paul Dale <pauli@openssl.org>
pem_read_bio_key_legacy: Do not obscure real error if there is one Fixes #15170 Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15355)
show more ...
|
2ed0a45a | 20-May-2021 |
Matt Caswell |
Add ordinal numbers to the .num files Now that our next release is expected to be a beta release, "make update" wants to see ordinal numbers in the .num files. Run make update t
Add ordinal numbers to the .num files Now that our next release is expected to be a beta release, "make update" wants to see ordinal numbers in the .num files. Run make update to add them. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15384)
show more ...
|
340cf875 | 03-Apr-2021 |
Dr. David von Oheimb |
apps/cms: Clean up order of options in help output and documentation Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15126) |
56c4f6fe | 12-Apr-2021 |
Dr. David von Oheimb |
APPS: Allow duplicate entries in options list, marking them OPT_DUP Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15126) |
601fe8e0 | 03-Apr-2021 |
Dr. David von Oheimb |
APPS: Allow non-option parameters appear anywhere in list, marking them OPT_PARAM Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15126) |
41d331b6 | 30-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Rename '*-cmt' options '*-comment' Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077) |
7d334927 | 29-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Rename 'one-letter' to 'single-letter', do not report 'l' Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077) |