aboutsummaryrefslogtreecommitdiffstats
path: root/crypting.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-12-13 23:43:59 +0100
committerJelmer Vernooij <jelmer@samba.org>2005-12-13 23:43:59 +0100
commita301379c2035d9d0dd86926c4bdeebf95db18fac (patch)
tree4a4588822b98f3ed909f8407dbda8a725ca291f6 /crypting.h
parentab49fdcec9a09df839ec488e570672f2dd904dc7 (diff)
Simplify obfuscation functions - make them a bit more bitlbee-independent
Diffstat (limited to 'crypting.h')
-rw-r--r--crypting.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypting.h b/crypting.h
index c2572770..fbaa7dcc 100644
--- a/crypting.h
+++ b/crypting.h
@@ -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);