summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Symbols.list (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Provide EVP_CIPHER_CTX_reset().jsing2018-02-171-0/+1
| | | | Rides previous minor bump.
* Provide X509_get0_extensions() and X509_get0_signature()jsing2018-02-171-3/+5
|
* Provide EVP_MD_CTX_new(), EVP_MD_CTX_free() and EVP_MD_CTX_reset().jsing2018-02-171-0/+3
|
* Provide HMAC_CTX_new(), HMAC_CTX_free(), HMAC_CTX_reset() andjsing2018-02-171-0/+4
| | | | HMAC_CTX_get_md().
* Provide BIO_meth_{free,new}() and BIO_meth_set_{create,crtl,destroy}()tb2018-02-171-0/+8
| | | | | | and BIO_meth_set_{puts,read,write}(). ok jsing
* Provide further parts of the OpenSSL 1.1 API: {DH,DSA}_get0_{key,pqg}(),tb2018-02-171-0/+9
| | | | | | EVP_PKEY_get0_{DH,DSA,RSA}(), RSA_{g,s}et0_key(). ok jsing
* Provide X509_STORE_CTX_get0_{cert,untrusted}() andjsing2018-02-141-0/+4
| | | | X509_STORE_CTX_set0_{trusted_stack,untrusted}().
* Provide X509_get{0,m}_not{Before,After}().jsing2018-02-141-0/+4
|
* Provide ASN1_STRING_get0_data().jsing2018-02-141-0/+1
|
* Provide EVP_PKEY_up_ref().jsing2018-02-141-0/+1
|
* Start providing parts of the OpenSSL 1.1 API.jsing2018-02-141-0/+2
| | | | | | | | | | This will ease the burden on ports and others trying to make software work with LibreSSL, while avoiding #ifdef mazes. Note that we are not removing 1.0.1 API or making things opaque, hence software written to use the older APIs will continue to work, as will software written to use the 1.1 API (as more functionality become available). Discussed at length with deraadt@ and others.
* Provide X509_get_signature_nid().jsing2018-02-141-10/+11
|
* Expose X509_VERIFY_PARAM_* functions that appeared in the OpenSSL 1.0.2jsing2018-02-101-0/+10
| | | | API and are now in use by various libraries and applications.
* Remove EVP_aead_chacha20_poly1305_old() now that the original/oldjsing2017-08-281-1/+0
| | | | chacha20-poly1305 cipher suites have been removed from libssl.
* Remove RSA_padding_add_SSLv23()/RSA_padding_check_SSLv23() and relatedjsing2017-08-281-2/+0
| | | | | | code. We removed SSLv2/SSLv3 a long time ago... Discussed with doug@
* Make the symbol for ASN1_time_tm_clamp_notafter visible so libtlsbeck2017-08-271-0/+1
| | | | | can get at it, so libtls can also deal with notafter's past the realm of 32 bit time in portable
* Add ASN1_TIME_set_to to exported symbolsbeck2017-05-061-0/+4
| | | | ok jsing@
* Add an EVP interface that provides concatenated MD5+SHA1 hashes, which arejsing2017-02-281-0/+1
| | | | | | | | | | used in various parts of TLS 1.0/1.1. This will allow for code simplification in libssl. The same interface exists in OpenSSL 1.1. ok beck@ deraadt@ inoguchi@ millert@
* Explicitly export a list of symbols from libcrypto.jsing2016-12-211-0/+3451
Move the "internal" BN functions from bn.h to bn_lcl.h and stop exporting the bn_* symbols. These are documented as only being intended for internal use, so why they were placed in a public header is beyond me... This hides 363 previously exported symbols, most of which exist in headers that are not installed and were never intended to be public. This also removes a few crusty old things that should have died long ago (like _ossl_old_des_read_pw). But don't worry... there are still 3451 symbols exported from the library. With input and testing from inoguchi@. ok beck@ inoguchi@