summaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-07-24 14:32:59 -0400
committerNick Mathewson <nickm@torproject.org>2017-07-24 14:34:53 -0400
commit6c8c9731915a796c8a1bc11f376793459db1200f (patch)
tree2df0e14503b35d2b70e0ca4ae08d115d81ffb3db /src/or/rendservice.c
parentdb1664e5932ae0435b23c2ca92e74f3a5c64c1f8 (diff)
downloadtor-6c8c9731915a796c8a1bc11f376793459db1200f.tar.gz
tor-6c8c9731915a796c8a1bc11f376793459db1200f.zip
Rename the hybrid_encrypt/decrypt functions; label them as dangerous
We need to keep these around for TAP and old-style hidden services, but they're obsolete, and we shouldn't encourage anyone to use them. So I've added "obsolete" to their names, and a comment explaining what the problem is. Closes ticket 23026.
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index b5ef72e4f9..98ed1100ec 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -2732,7 +2732,7 @@ rend_service_decrypt_intro(
/* Decrypt the encrypted part */
result =
- crypto_pk_private_hybrid_decrypt(
+ crypto_pk_obsolete_private_hybrid_decrypt(
key, (char *)buf, sizeof(buf),
(const char *)(intro->ciphertext), intro->ciphertext_len,
PK_PKCS1_OAEP_PADDING, 1);