Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-06-30 07:20:29 +0300
committerAdam Langley <agl@google.com>2015-07-02 00:38:39 +0300
commitcce5a98efb11675b8b61e9cf9586f64773589076 (patch)
tree08952dbd5a1fd067f15f4b50da6d3dd0cd9b0986 /crypto/evp
parent76e9a2ab9746ee123e8d8c18bafa0d90ae61340f (diff)
Remove EVP_PKEY_dup.
All callers have been moved to EVP_PKEY_up_ref. (Neither spelling exists upstream so we only had our own callers to move.) Change-Id: I267f14054780fe3d6dc1170b7b6ae3811a0d1a9a Reviewed-on: https://boringssl-review.googlesource.com/5291 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/evp.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/evp/evp.c b/crypto/evp/evp.c
index 3f27e071..789be50d 100644
--- a/crypto/evp/evp.c
+++ b/crypto/evp/evp.c
@@ -405,10 +405,6 @@ int EVP_PKEY_CTX_get_signature_md(EVP_PKEY_CTX *ctx, const EVP_MD **out_md) {
0, (void *)out_md);
}
-EVP_PKEY *EVP_PKEY_dup(EVP_PKEY *pkey) {
- return EVP_PKEY_up_ref(pkey);
-}
-
void OpenSSL_add_all_algorithms(void) {}
void OpenSSL_add_all_ciphers(void) {}