summaryrefslogtreecommitdiffstats
path: root/doc/man3/OPENSSL_init_crypto.pod (unfollow)
Commit message (Collapse)AuthorFilesLines
4 daysdoc: the attributeMappings X.509v3 extensionJonathan M. Wilbur2-0/+25
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26157)
4 daystest: the attributeMappings X.509v3 extensionJonathan M. Wilbur2-1/+23
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26157)
4 daysfeat: support the attributeMappings X.509v3 extensionJonathan M. Wilbur6-1/+183
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26157)
7 daysTake into account no_store when pushing algorithmDmitry Belyavskiy1-1/+1
When we put algorithm to the store, we have a fallback to the OSSL_LIB_CTX level store when store is NULL. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26197)
7 daysThis is a test for nocache provider behaviorDmitry Belyavskiy3-0/+61
A follow-up to #26038 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26197)
7 daysossl_i2c_ASN1_BIT_STRING(): Fix a possible heap buffer overflowAndrey Tsygunka1-18/+23
When data contains only zero values a buffer overflow happens. CLA: trivial Signed-off-by: Andrey Tsygunka <aitsygunka@yandex.ru> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26190)
8 dayssafe_math.h: Check if __GNUC__ is definedKalavakolanu, Hema Anmisha1-2/+4
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=4880 Facing the below issue after openssl is upgraded Edk2\CryptoPkg\Library\OpensslLib\openssl\include\internal/safe_math.h(19): warning C4668: '__GNUC__' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' CLA: trivial Reviewed-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Kalavakolanu Hema Anmisha <hema.anmisha.kalavakolanu@intel.com> Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26204)
8 daystest_evp_cipher_pipeline(): Fix memory leaks on errorsTomas Mraz1-10/+19
Fixes Coverity 1636844, 1636845 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Saša Nedvědický <sashan@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26206)
8 daysdoc: Correctly reflect parameter constraints in EVP_DecryptUpdate()Patrick J. LoPresti1-4/+1
Fixes #26169 CLA: trivial Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26202)
9 daysFix missing HISTORY doc entriesMichael Baentsch22-15/+195
Also add a check to find-doc-nits for HISTORY sections. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26188)
10 daysAdd amplification limit test to interop quic testingNeil Horman1-1/+1
Because this ci job only runs from the master branch, we need to add the test here to validate that our server respects amplification limits in our ci runs. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Saša Nedvědický <sashan@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26181)
10 daysCheck whether ctx->pctx != NULLotherddn19781-4/+8
If it is NULL, ctx->pctx->pmeth dereference will cause a crash. Found by Linux Verification Center (linuxtesting.org) with SVACE. Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26176)
10 daysdocs: update man3 and man7 with cipher pipeline APIsRamkumar4-17/+149
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24636)
10 daystest: add evp_extra_test case for cipher pipeline API with fake pipeline ↵Ramkumar4-4/+569
provider Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24636)
10 daysfeat: add EVP APIs for cipher pipeliningRamkumar11-8/+242
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24636)