Changeset 6e1fed7 for irc.c


Ignore:
Timestamp:
2006-06-25T17:07:25Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
88086db
Parents:
7ed3199
Message:

Using salted MD5 checksums for the user's BitlBee password and salted RC4
encryption for the IM account passwords, plus some calls to srand() to keep
the salts secure and unique.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r7ed3199 r6e1fed7  
    329329void irc_setpass (irc_t *irc, const char *pass)
    330330{
    331         if (irc->password) g_free (irc->password);
     331        g_free (irc->password);
    332332       
    333333        if (pass) {
    334334                irc->password = g_strdup (pass);
    335                 irc_usermsg (irc, "Password successfully changed");
    336335        } else {
    337336                irc->password = NULL;
Note: See TracChangeset for help on using the changeset viewer.