diff options
author | Sadie Powell <sadie@witchery.services> | 2020-09-11 15:46:42 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-09-28 15:28:26 +0100 |
commit | c7e26c5f679465304fb7ffb27d131857a1030b2e (patch) | |
tree | 9a1a3df952a7570dbe47780c17bd5a835da85260 /include/anope.h | |
parent | 8e0e1806a47e6fa78f884666b55c04edf11fd66c (diff) |
Remove nickserv/getpass and Anope::Decrypt.
There is no point having these now plain text passwords are deprecated.
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/anope.h b/include/anope.h index d4a351a93..cbcd3e85a 100644 --- a/include/anope.h +++ b/include/anope.h @@ -462,14 +462,6 @@ namespace Anope */ extern CoreExport void Encrypt(const Anope::string &src, Anope::string &dest); - /** Decrypts what is in 'src' to 'dest'. - * @param src The source string to decrypt - * @param dest The destination where the decrypted string is placed - * @return true if decryption was successful. This is usually not the case - * as most encryption methods we use are one way. - */ - extern CoreExport bool Decrypt(const Anope::string &src, Anope::string &dest); - /** Hashes a buffer with SipHash-2-4 * @param src The start of the buffer to hash * @param src_sz The total number of bytes in the buffer |