openssl/doc/internal/man3
Richard Levitte 2ccb1b4eca EVP fetching: make operation_id part of the method identity
Because the operation identity wasn't integrated with the created
methods, the following code would give unexpected results:

    EVP_MD *md = EVP_MD_fetch(NULL, "MD5", NULL);
    EVP_CIPHER *cipher = EVP_CIPHER_fetch(NULL, "MD5", NULL);

    if (md != NULL)
        printf("MD5 is a digest\n");
    if (cipher != NULL)
        printf("MD5 is a cipher\n");

The message is that MD5 is both a digest and a cipher.

Partially fixes #9106

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9109)
2019-06-10 08:01:19 +02:00
..
DEFINE_SPARSE_ARRAY_OF.pod Make the sparse array code use ossl_uintmax_t as its index rather than size_t. 2019-03-06 13:50:54 +10:00
evp_generic_fetch.pod EVP_FETCH: remove the need to transport the legacy NID through construction 2019-05-12 13:43:38 -07:00
openssl_ctx_get_data.pod Update internal documentation after global data move to OPENSSL_CTX 2019-05-02 22:42:09 +01:00
ossl_method_construct.pod EVP fetching: make operation_id part of the method identity 2019-06-10 08:01:19 +02:00
OSSL_METHOD_STORE.pod Update internal documentation after global data move to OPENSSL_CTX 2019-05-02 22:42:09 +01:00
ossl_namemap_new.pod Create internal number<->name mapping API 2019-05-12 13:43:38 -07:00
ossl_provider_new.pod Replumbing: give the possibility for the provider to create a context 2019-04-30 15:34:23 +02:00