claws-mail/src/common/passcrypt.h.in
Christoph Hohmann 7c4354ce71 0.8.10claws70
* configure.ac
* src/prefs_account.c
* src/prefs_gtk.[ch]
* src/common/.cvsignore
* src/common/Makefile.am
* src/common/passcrypt.c                ** NEW **
* src/common/passcrypt.h.in             ** NEW **
        Implement password encryption in config files
        using unix encrypt and setkey functions. The crypt
        key can be set as a configure parameter. Old
        passwords will be converted if they do not begin
        with '!'
2003-03-02 16:29:07 +00:00

25 lines
1 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2003 Hiroyuki Yamamoto and the Sylpheed-Claws Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#define PASSCRYPT_KEY "@PASSCRYPT_KEY@"
#include <glib.h>
void passcrypt_encrypt(gchar *password, guint len);
void passcrypt_decrypt(gchar *password, guint len);