diff options
author | Pauli <pauli@openssl.org> | 2021-06-01 13:17:47 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-06-02 12:45:39 +0200 |
commit | 6ea964cd4a1b2e945fbf79204d123811bc57d3a5 (patch) | |
tree | 5aa30bb1e31a6736841433dac8acbab90ec83b3f /doc/man3/EVP_EncryptInit.pod | |
parent | Add internal get_number functions to internal headers (diff) | |
download | openssl-6ea964cd4a1b2e945fbf79204d123811bc57d3a5.tar.xz openssl-6ea964cd4a1b2e945fbf79204d123811bc57d3a5.zip |
doc: make XXX_get_number() internal
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15564)
Diffstat (limited to 'doc/man3/EVP_EncryptInit.pod')
-rw-r--r-- | doc/man3/EVP_EncryptInit.pod | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/man3/EVP_EncryptInit.pod b/doc/man3/EVP_EncryptInit.pod index cd4b8b5c56..965e0d9248 100644 --- a/doc/man3/EVP_EncryptInit.pod +++ b/doc/man3/EVP_EncryptInit.pod @@ -35,7 +35,6 @@ EVP_get_cipherbyobj, EVP_CIPHER_is_a, EVP_CIPHER_get0_name, EVP_CIPHER_get0_description, -EVP_CIPHER_get_number, EVP_CIPHER_names_do_all, EVP_CIPHER_get0_provider, EVP_CIPHER_get_nid, @@ -166,7 +165,6 @@ EVP_CIPHER_CTX_mode const EVP_CIPHER *EVP_get_cipherbyobj(const ASN1_OBJECT *a); int EVP_CIPHER_get_nid(const EVP_CIPHER *e); - int EVP_CIPHER_get_number(const EVP_CIPHER *e); int EVP_CIPHER_is_a(const EVP_CIPHER *cipher, const char *name); int EVP_CIPHER_names_do_all(const EVP_CIPHER *cipher, void (*fn)(const char *name, void *data), @@ -521,11 +519,6 @@ value from the likes of EVP_aes128() rather than the result of an EVP_CIPHER_fetch()), only cipher names registered with the default library context (see L<OSSL_LIB_CTX(3)>) will be considered. -=item EVP_CIPHER_get_number() - -Returns the internal dynamic number assigned to the I<cipher>. This is only -useful with fetched B<EVP_CIPHER>s. - =item EVP_CIPHER_get0_name() and EVP_CIPHER_CTX_get0_name() Return the name of the passed cipher or context. For fetched ciphers with |