diff options
author | Kazuki Yamaguchi <k@rhe.jp> | 2016-08-16 06:55:34 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-08-22 16:10:02 +0200 |
commit | 9ba6f347fedbe103a06c8fd303912b358eacb11c (patch) | |
tree | d0ca4ec450510ea1084af913716ce96d0b576c90 /util/libcrypto.num | |
parent | Fix loopargs_t object duplication into ASYNC context (diff) | |
download | openssl-9ba6f347fedbe103a06c8fd303912b358eacb11c.tar.xz openssl-9ba6f347fedbe103a06c8fd303912b358eacb11c.zip |
Expose alloc functions for EC{PK,}PARAMETERS
Declare EC{PK,}PARAMETERS_{new,free} functions in public headers. The
free functions are necessary because EC_GROUP_get_ec{pk,}parameters()
was made public by commit 60b350a3ef96 ("RT3676: Expose ECgroup i2d
functions").
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'util/libcrypto.num')
-rw-r--r-- | util/libcrypto.num | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/libcrypto.num b/util/libcrypto.num index 78b39c7c21..7a9391556d 100644 --- a/util/libcrypto.num +++ b/util/libcrypto.num @@ -4203,3 +4203,7 @@ OPENSSL_utf82uni 4149 1_1_0 EXIST::FUNCTION: PKCS12_add_friendlyname_utf8 4150 1_1_0 EXIST::FUNCTION: OPENSSL_uni2utf8 4151 1_1_0 EXIST::FUNCTION: PKCS12_key_gen_utf8 4152 1_1_0 EXIST::FUNCTION: +ECPKPARAMETERS_free 4153 1_1_0 EXIST::FUNCTION:EC +ECPARAMETERS_free 4154 1_1_0 EXIST::FUNCTION:EC +ECPKPARAMETERS_new 4155 1_1_0 EXIST::FUNCTION:EC +ECPARAMETERS_new 4156 1_1_0 EXIST::FUNCTION:EC |