CORE: query for operations only once per provider (unless no_store is true)
[openssl.git] / include / internal / evp.h
1 /*
2  * Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef OSSL_INTERNAL_EVP_H
11 # define OSSL_INTERNAL_EVP_H
12
13 # include <openssl/evp.h>
14
15 # ifndef OPENSSL_NO_EC
16 /*
17  * TODO(3.0) While waiting for more generic getters, we have these functions
18  * as an interim solution.  This should be removed when the generic getters
19  * appear.
20  */
21 int evp_pkey_get_EC_KEY_curve_nid(const EVP_PKEY *pkey);
22 # endif
23 #endif