gnome-control-center/panels/user-accounts/run-passwd.h
William Jon McCann bf5cb44016 Add user-accounts dialog
Copied from the accounts-dialog git module.
2010-10-30 18:04:15 -04:00

58 lines
2.3 KiB
C

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* run-passwd.h: this file is part of users-admin, a gnome-system-tools frontend
* for user administration.
*
* Copyright (C) 2010 Milan Bouchet-Valat
*
* 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.
*
* Authors: Milan Bouchet-Valat <nalimilan@club.fr>
*/
#ifndef _RUN_PASSWD_H
#define _RUN_PASSWD_H
struct PasswdHandler;
typedef struct PasswdHandler PasswdHandler;
typedef void (*PasswdCallback) (PasswdHandler *passwd_handler, GError *error, const gpointer user_data);
/* Error codes */
typedef enum {
PASSWD_ERROR_REJECTED, /* New password is not secure enough */
PASSWD_ERROR_AUTH_FAILED, /* Wrong old password, or PAM failure */
PASSWD_ERROR_REAUTH_FAILED, /* Password has changed since first authentication */
PASSWD_ERROR_BACKEND, /* Backend error */
PASSWD_ERROR_UNKNOWN /* General error */
} PasswdError;
PasswdHandler *passwd_init (void);
void passwd_destroy (PasswdHandler *passwd_handler);
void passwd_authenticate (PasswdHandler *passwd_handler,
const char *current_password,
PasswdCallback cb,
gpointer user_data);
gboolean passwd_change_password (PasswdHandler *passwd_handler,
const char *new_password,
PasswdCallback cb,
const gpointer user_data);
#endif /* _RUN_PASSWD_H */