eb9b5320 | 29-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Allow extra space before end-of-line comments unless -e|--eol-cmt given Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1
check-format.pl: Allow extra space before end-of-line comments unless -e|--eol-cmt given Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077)
show more ...
|
f35a9b6a | 29-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Replace 'SPC' and 'spc' by 'space' in reports and option names Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077) |
d3fc80ab | 29-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Fix false positive on struct/union/enum in func return type Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077) |
9ad9002d | 29-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Fix false positive "no SPC before binary '*'" for '!*' Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077) |
435e659a | 29-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Report needless intermediate multiple SPC only on -e or --extra-spc Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077) |
ff381033 | 28-Apr-2021 |
Dr. David von Oheimb |
check-format.pl: Add check for constant left of comparison operator Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15077) |
f14bead2 | 19-May-2021 |
Richard Levitte |
VMS: Copy __DECC_INCLUDE_{PROLOGUE,EPILOGUE}.H to more places Every inclusion directory related to a library we build need these two files. That signals to any other module using anythi
VMS: Copy __DECC_INCLUDE_{PROLOGUE,EPILOGUE}.H to more places Every inclusion directory related to a library we build need these two files. That signals to any other module using anything from these libraries what to expect in terms of case sensitivity as well as how long symbol names are dealt with. Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15341)
show more ...
|
14d3bb06 | 19-May-2021 |
Dr. David von Oheimb |
util/find-doc-nits: Improve helpstr pattern matching Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15299) |
359efeac | 17-May-2021 |
Dr. David von Oheimb |
DOC: Fix nits found by new check on SYNOPSIS and OPTIONS consistency Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15299) |
9c158280 | 16-May-2021 |
Dr. David von Oheimb |
find-doc-nits: Check that man1 SYNOPSIS and OPTIONS contain same options Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15299) |
414823d2 | 16-May-2021 |
Dr. David von Oheimb |
find-doc-nits: Add -m option allowing to select on which of man1,man3,man5,man7 to focus on Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pul
find-doc-nits: Add -m option allowing to select on which of man1,man3,man5,man7 to focus on Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15299)
show more ...
|
5be56c49 | 16-May-2021 |
Dr. David von Oheimb |
find-doc-nits: Minor improvements of help and diagnostic output Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15299) |
ee56cec7 | 19-May-2021 |
Dr. David von Oheimb |
CMP test server: move apps/{,lib/}cmp_mock_srv.c and apps/{,include/}cmp_mock_srv.h Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15343) |
a37dbb46 | 19-May-2021 |
Dr. David von Oheimb |
apps/cmp.c: Move CMP server code portion to separate function Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15343) |
c6bf8bb8 | 20-May-2021 |
Matt Caswell |
Prepare for 3.0 beta 1 Reviewed-by: Richard Levitte <levitte@openssl.org> |
036f8e71 | 20-May-2021 |
Matt Caswell |
Prepare for release of 3.0 alpha 17 Reviewed-by: Richard Levitte <levitte@openssl.org> |
a6b76eba | 20-May-2021 |
Matt Caswell |
make update Reviewed-by: Richard Levitte <levitte@openssl.org> |
0789c7d8 | 20-May-2021 |
Matt Caswell |
Update copyright year Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15381) |
f33c04b8 | 15-May-2021 |
Richard Levitte |
EVP: Modify EVP_PKEY_export() to handle legacy EVP_PKEYs We use a fake EVP_KEYMGMT import function with the newly modified EVP_PKEY_ASN1_METHOD export_to function to pass the exported
EVP: Modify EVP_PKEY_export() to handle legacy EVP_PKEYs We use a fake EVP_KEYMGMT import function with the newly modified EVP_PKEY_ASN1_METHOD export_to function to pass the exported OSSL_PARAM array directly to the EVP_PKEY_export() callback instead of exporting to an actual provided key and then getting the OSSL_PARAM array from there, just to throw away that key again. Fixes #15290 Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15293)
show more ...
|
bed7437b | 15-May-2021 |
Richard Levitte |
Modify EVP_PKEY_ASN1_METHOD's export_to function to take an importer We previously took an EVP_KEYMGMT pointer, but now found it necessary to use a different import function in some case
Modify EVP_PKEY_ASN1_METHOD's export_to function to take an importer We previously took an EVP_KEYMGMT pointer, but now found it necessary to use a different import function in some cases. Since that's the only thing we use from EVP_KEYMGMT, we might as well pass the import function directly, allowing for some flexibility in how export_to is used. Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15293)
show more ...
|
0e5a4da4 | 15-May-2021 |
Richard Levitte |
test/evp_extra_test2.c: Try EVP_PKEY_export() with a legacy RSA key Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15293) |
d5e08231 | 20-May-2021 |
Matt Caswell |
Refer to the migration guide rather than the wiki in our announcements We now have a migration guide which should be the definitive source of information for upgrading from a previous ve
Refer to the migration guide rather than the wiki in our announcements We now have a migration guide which should be the definitive source of information for upgrading from a previous version of OpenSSL. Fixes #15186 Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15373)
show more ...
|
9e7a6411 | 17-May-2021 |
Matt Caswell |
Create symlinks when installing man pages In 1.1.1 when installing the man pages we created symlinks to the base page for all functions described on the page. We need to continue doing
Create symlinks when installing man pages In 1.1.1 when installing the man pages we created symlinks to the base page for all functions described on the page. We need to continue doing this. Fixes #14846 Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15312)
show more ...
|
e0113b79 | 18-May-2021 |
Pauli |
app: add a -store_loaders option to list. Fixes #15307 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://gi
app: add a -store_loaders option to list. Fixes #15307 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15323)
show more ...
|
4edb29b7 | 19-May-2021 |
Richard Levitte |
Complete 'no-sock' guards in apps/ocsp.c Modern compilers complain about variable being set but otherwise not used. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https
Complete 'no-sock' guards in apps/ocsp.c Modern compilers complain about variable being set but otherwise not used. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15339)
show more ...
|