diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-01-29 17:41:08 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-01-29 17:41:08 -0500 |
commit | 4362085847f359ed13df6f8f488a06eb52ecd767 (patch) | |
tree | f03818cefe6c641c6567f36ecd7c0a2196830f4d /src/common/util.h | |
parent | 6b62c4738d4b1f5cb1bc70bf58f6a078630e6ef5 (diff) |
Remove DH-AES/DH-BLOWFISH mechanisms and misc cleanup
- AES and Blowfish mechanisms are deemed insecure and servers have removed support for them - Remove attempts to retry since we only support one mech - Handle SASL 3.2's new syntax for supported mechs
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/util.h b/src/common/util.h index 2c9f790c..ba318585 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -76,8 +76,6 @@ void canonalize_key (char *key); int portable_mode (void); int unity_mode (void); char *encode_sasl_pass_plain (char *user, char *pass); -char *encode_sasl_pass_blowfish (char *user, char *pass, char *data); -char *encode_sasl_pass_aes (char *user, char *pass, char *data); char *challengeauth_response (char *username, char *password, char *challenge); size_t strftime_validated (char *dest, size_t destsize, const char *format, const struct tm *time); gsize strftime_utf8 (char *dest, gsize destsize, const char *format, time_t time); |