dolphin/kdepasswd/passwd.h
Stephan Kulow e77f20dbaf svn merge svn+ssh://coolo@svn.kde.org/home/kde/trunk/KDE/kdebase@438057
svn+ssh://coolo@svn.kde.org/home/kde/branches/work/kde4/kdebase
          .

I couldn't resolve one kicker conflict that results from different
development directions, so I rely on Aaron to sort it out - the file
is commited with conflicts

svn path=/trunk/KDE/kdebase/konqueror/keditbookmarks/; revision=439627
2005-07-28 14:59:42 +00:00

44 lines
894 B
C++

/* vi: ts=8 sts=4 sw=4
*
* $Id$
*
* This file is part of the KDE project, module kdesu.
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
*/
#ifndef __Passwd_h_Included__
#define __Passwd_h_Included__
#include <qbytearray.h>
#include <kdesu/process.h>
/**
* A C++ API to passwd.
*/
class PasswdProcess
: public PtyProcess
{
public:
PasswdProcess(QByteArray user = QByteArray());
~PasswdProcess();
enum Errors { PasswdNotFound=1, PasswordIncorrect, PasswordNotGood };
int checkCurrent(const char *oldpass);
int exec(const char *oldpass, const char *newpass, int check=0);
QByteArray error() { return m_Error; }
private:
bool isPrompt(QByteArray line, const char *word=0L);
int ConversePasswd(const char *oldpass, const char *newpass,
int check);
QByteArray m_User, m_Error;
bool bOtherUser;
};
#endif // __Passwd_h_Included__