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:
authorAdam Langley <agl@google.com>2016-03-09 01:15:35 +0300
committerDavid Benjamin <davidben@google.com>2016-03-09 04:14:30 +0300
commitbfb38b1a3c5e37d43188bbd02365a87bebc8d122 (patch)
tree13a8ef12115ced5c7e1df3cc37510a8dee72fb8f /include/openssl/rc4.h
parenta34a5aacffa98941fed0abe19dc1bb29e9c1c4ef (diff)
Add |RC4_options| to decrepit.
I've no idea who thought that this function was a good idea in the first place, but including it in decrepit makes supporting nmap easier. Change-Id: I7433cda6a6ddf1cc545126edf779625e9fc70ada Reviewed-on: https://boringssl-review.googlesource.com/7401 Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'include/openssl/rc4.h')
-rw-r--r--include/openssl/rc4.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/openssl/rc4.h b/include/openssl/rc4.h
index 0619cac3..68af8782 100644
--- a/include/openssl/rc4.h
+++ b/include/openssl/rc4.h
@@ -83,6 +83,12 @@ OPENSSL_EXPORT void RC4(RC4_KEY *key, size_t len, const uint8_t *in,
uint8_t *out);
+/* Deprecated functions. */
+
+/* RC4_options returns the string "rc4(ptr,int)". */
+OPENSSL_EXPORT const char *RC4_options(void);
+
+
#if defined(__cplusplus)
} /* extern C */
#endif