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:
authorBrian Smith <brian@briansmith.org>2015-03-02 04:47:32 +0300
committerAdam Langley <agl@google.com>2015-04-13 23:25:45 +0300
commit6e8fbfecd021cf1b9de1aa5084d3e1f72585b081 (patch)
tree83e7168551aebffa04b6ce396ff41adf23b02c8a /include/openssl/digest.h
parent9da82c1cccd3407c66724a9314c222f75385e34f (diff)
Remove crypto/obj dependencies from low-level crypto tests.
The only dependency the low-level crypto modules have on code in crypto/obj is their use of OBJ_nid2sn, which is trivial to avoid. This facilitates future simplification of crypto/obj, including possibly the removal of functions like OBJ_nid2sn and the complex build infrastructure that supports them. This change also removes EVP_CIPHER_name and EVP_MD_name. Change-Id: I34ce7dc7e58d5c08b52f95d25eba3963590cf2f7 Reviewed-on: https://boringssl-review.googlesource.com/3932 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/digest.h')
-rw-r--r--include/openssl/digest.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/openssl/digest.h b/include/openssl/digest.h
index 95a35e74..1309c6a0 100644
--- a/include/openssl/digest.h
+++ b/include/openssl/digest.h
@@ -174,9 +174,6 @@ OPENSSL_EXPORT int EVP_Digest(const void *data, size_t len, uint8_t *md_out,
/* EVP_MD_type returns a NID identifing |md|. (For example, |NID_md5|.) */
OPENSSL_EXPORT int EVP_MD_type(const EVP_MD *md);
-/* EVP_MD_name returns the short name for |md| or NULL if no name is known. */
-OPENSSL_EXPORT const char *EVP_MD_name(const EVP_MD *md);
-
/* EVP_MD_flags returns the flags for |md|, which is a set of |EVP_MD_FLAG_*|
* values, ORed together. */
OPENSSL_EXPORT uint32_t EVP_MD_flags(const EVP_MD *md);