mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
52d6d2f9ce
svn path=/trunk/KDE/kdebase/apps/; revision=663054
43 lines
897 B
C++
43 lines
897 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 <QtCore/QByteRef>
|
|
#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__
|