diff options
author | Pauli <paul.dale@oracle.com> | 2020-02-11 00:13:33 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-02-12 10:45:42 +0100 |
commit | 99b9aa95c435058bd35fb3b83b885894e2247c82 (patch) | |
tree | b502ad1a894ebcb8029c3f58c8ced55e7cffc9ca /include | |
parent | Add NEWS entry about deprecation of command line public tools (diff) | |
download | openssl-99b9aa95c435058bd35fb3b83b885894e2247c82.tar.xz openssl-99b9aa95c435058bd35fb3b83b885894e2247c82.zip |
Remove unused OSSL_PARAM_construct_from_text() function.
This function is recently introduced and never called by the library or tests.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11053)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/params.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/openssl/params.h b/include/openssl/params.h index aec3bc18b8..a5d2fd4f41 100644 --- a/include/openssl/params.h +++ b/include/openssl/params.h @@ -89,11 +89,6 @@ OSSL_PARAM OSSL_PARAM_construct_octet_ptr(const char *key, void **buf, size_t bsize); OSSL_PARAM OSSL_PARAM_construct_end(void); -int OSSL_PARAM_construct_from_text(OSSL_PARAM *to, - const OSSL_PARAM *paramdefs, - const char *key, const char *value, - size_t value_n, - void *buf, size_t *buf_n); int OSSL_PARAM_allocate_from_text(OSSL_PARAM *to, const OSSL_PARAM *paramdefs, const char *key, const char *value, |