summaryrefslogtreecommitdiff
path: root/crypto
Commit message (Expand)AuthorAgeFilesLines
* rand: instantiate the DRBGs upon first use.Pauli2020-08-281-2/+7
* Add OCSP_PARTIAL_CHAIN to OCSP_basic_verify()Rich Salz2020-08-271-0/+4
* EVP: NULL pctx pointer after free.Pauli2020-08-271-1/+3
* Add NID_id_on_SmtpUTF8Mailbox to table of X.509 attributesDmitry Belyavskiy2020-08-261-1/+2
* RFC 8398: EAI comparisonDmitry Belyavskiy2020-08-261-2/+16
* RFC 8398: Name constraints validationDmitry Belyavskiy2020-08-261-5/+68
* Punycode decoding implementationDmitry Belyavskiy2020-08-262-0/+339
* crypto/x509/v3_utl.c: Fix IPv6 output in ipaddr_to_asc()Richard Levitte2020-08-261-3/+11
* STORE: Change all error recording to use ERR_raise() / ERR_raise_data()Richard Levitte2020-08-243-92/+53
* STORE: Modify to support loading with provider based loadersRichard Levitte2020-08-245-63/+998
* DECODER: Add function to set an OSSL_PASSPHRASE_CALLBACK type callbackRichard Levitte2020-08-241-0/+7
* OSSL_PARAM: Add string pointer gettersRichard Levitte2020-08-241-0/+26
* STORE: Add the base functions to support provider based loadersRichard Levitte2020-08-244-20/+486
* STORE: Add missing function OSSL_STORE_LOADER_set_open_with_libctx()Richard Levitte2020-08-241-0/+8
* CORE: Generalise internal pass phrase prompterRichard Levitte2020-08-2410-311/+348
* CORE: Define provider-native abstract objectsRichard Levitte2020-08-242-3/+4
* Fix coverity CID #1452770 - Dereference before NULL check in CRYPTO_siv128_in...Shane Lontis2020-08-241-8/+14
* Fix coverity CID #1452773 - Dereference before NULL check in EVP_DigestFinal_...Shane Lontis2020-08-241-3/+10
* Fix coverity CID #1452775 & #1452772- Dereference before NULL check in evp_lib.cShane Lontis2020-08-241-4/+4
* Fix coverity CID #1454638 - Dereference after NULL check in EVP_MD_CTX_gettab...Shane Lontis2020-08-241-2/+4
* Fix coverity CID #1455335 - Dereference after NULL check in fromdata_init()Shane Lontis2020-08-241-1/+2
* Fix coverity CID #1458644 - Negative return passed to function taking size_t ...Shane Lontis2020-08-241-1/+1
* Fix coverity CID #1465525 - NULL pointer dereference in OSSL_DECODER_CTX_new_...Shane Lontis2020-08-241-3/+5
* Fix coverity CID #1465531 - Negative return passed to a function param using ...Shane Lontis2020-08-241-1/+1
* Fix coverity CID #1465797 - Negative loop bound in collect_deserializerShane Lontis2020-08-241-0/+2
* Fix coverity CID #1465594 - Null dereference in EVP_PKEY_get0()Shane Lontis2020-08-241-0/+2
* Fix CMS so that it still works with non fetchable algorithms.Shane Lontis2020-08-224-20/+58
* Windows get ENV value as UTF-8 encoded string instead of a raw stringRobert Jędrzejczyk2020-08-221-0/+72
* Add Explicit EC parameter support to providers.Shane Lontis2020-08-227-171/+613
* Rename OSSL_SERIALIZER / OSSL_DESERIALIZER to OSSL_ENCODE / OSSL_DECODERichard Levitte2020-08-2130-2197/+2190
* Use in CMP+CRMF libctx and propq param added to sign/verify/HMAC/decryptDr. David von Oheimb2020-08-2114-256/+273
* cmp_msg.c: Copy libctx and propq of CMP_CTX to newly enrolled certificateDr. David von Oheimb2020-08-211-0/+3
* cmp_util.c: Add OPENSSL_CTX parameter to ossl_cmp_build_cert_chain(), improve...Dr. David von Oheimb2020-08-214-11/+16
* cmp_hdr.c: Adapt ossl_cmp_hdr_init() to use OPENSSL_CTX for random number gen...Dr. David von Oheimb2020-08-211-20/+9
* crypto/cmp: Prevent misleading errors in case x509v3_cache_extensions() failsDr. David von Oheimb2020-08-212-6/+14
* Add OPENSSL_CTX parameter to OSSL_CRMF_pbmp_new() and improve its docDr. David von Oheimb2020-08-213-9/+14
* Add libctx and propq parameters to OSSL_CMP_{SRV_},CTX_new() and ossl_cmp_moc...Dr. David von Oheimb2020-08-213-4/+11
* cmp_vfy.c: Fix bug: must verify msg signature also in 3GPP modeDr. David von Oheimb2020-08-211-14/+14
* Add libctx and propq param to ASN.1 sign/verify/HMAC/decryptDr. David von Oheimb2020-08-219-116/+109
* x_x509.c: Simplify X509_new_with_libctx() using x509_set0_libctx()Dr. David von Oheimb2020-08-211-4/+1
* Make sure x509v3_cache_extensions() does not modify the error queueDr. David von Oheimb2020-08-211-0/+2
* Fix mem leaks on PKCS#12 read error in PKCS12_key_gen_{asc,utf8}Dr. David von Oheimb2020-08-201-6/+2
* PEM: Add more library context aware PEM readersRichard Levitte2020-08-202-35/+89
* STORE: Distinguish public keys from private keysRichard Levitte2020-08-206-4/+39
* PROV: Fix DSA and DH private key serializersRichard Levitte2020-08-201-0/+2
* X509: Add d2i_PUBKEY_ex(), which take a libctx and propqRichard Levitte2020-08-202-10/+53
* RSA: Fix rsa_todata() to only add params for existing dataRichard Levitte2020-08-201-10/+14
* EVP: Have evp_pkey_cmp_any() detect if export wasn't possibleRichard Levitte2020-08-201-0/+4
* PKCS12_parse(): Clean up code and correct documentationDr. David von Oheimb2020-08-191-19/+26
* PKCS12_parse(): Fix reversed order of certs parsed and output via *caDr. David von Oheimb2020-08-191-1/+1