diff options
author | jsing <> | 2018-02-14 16:40:42 +0000 |
---|---|---|
committer | jsing <> | 2018-02-14 16:40:42 +0000 |
commit | a841f3159cebe1cb93dc24fb368b0b614c07563e (patch) | |
tree | f9384e235ff20f3ae10f583b133d2c3cbb299b62 /src/lib/libcrypto/evp/evp.h | |
parent | b67d1c3350cb5ebce3d8cc42491ccf21a0e2e482 (diff) | |
download | openbsd-a841f3159cebe1cb93dc24fb368b0b614c07563e.tar.gz openbsd-a841f3159cebe1cb93dc24fb368b0b614c07563e.tar.bz2 openbsd-a841f3159cebe1cb93dc24fb368b0b614c07563e.zip |
Provide EVP_PKEY_up_ref().
Diffstat (limited to 'src/lib/libcrypto/evp/evp.h')
-rw-r--r-- | src/lib/libcrypto/evp/evp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h index 853abe6b8e..09df7db64b 100644 --- a/src/lib/libcrypto/evp/evp.h +++ b/src/lib/libcrypto/evp/evp.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp.h,v 1.53 2017/08/28 17:48:02 jsing Exp $ */ | 1 | /* $OpenBSD: evp.h,v 1.54 2018/02/14 16:40:42 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -894,6 +894,7 @@ struct gost_key_st; | |||
894 | 894 | ||
895 | EVP_PKEY *EVP_PKEY_new(void); | 895 | EVP_PKEY *EVP_PKEY_new(void); |
896 | void EVP_PKEY_free(EVP_PKEY *pkey); | 896 | void EVP_PKEY_free(EVP_PKEY *pkey); |
897 | int EVP_PKEY_up_ref(EVP_PKEY *pkey); | ||
897 | 898 | ||
898 | EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp, | 899 | EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp, |
899 | long length); | 900 | long length); |