diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-13 23:43:59 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2005-12-13 23:43:59 +0100 |
commit | a301379c2035d9d0dd86926c4bdeebf95db18fac (patch) | |
tree | 4a4588822b98f3ed909f8407dbda8a725ca291f6 /crypting.h | |
parent | ab49fdcec9a09df839ec488e570672f2dd904dc7 (diff) |
Simplify obfuscation functions - make them a bit more bitlbee-independent
Diffstat (limited to 'crypting.h')
-rw-r--r-- | crypting.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -24,6 +24,6 @@ */ int checkpass (const char *password, const char *md5sum); -char *hashpass (irc_t *irc); -char *obfucrypt (irc_t *irc, char *line); -char *deobfucrypt (irc_t *irc, char *line); +char *hashpass (const char *password); +char *obfucrypt (char *line, const char *password); +char *deobfucrypt (char *line, const char *password); |