kdesasl.h
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2001-2002 Michael Häckel <haeckel@kde.org> 00003 $Id: kdesasl.h,v 1.7 2002/01/18 08:09:38 haeckel Exp $ 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License version 2 as published by the Free Software Foundation. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00017 Boston, MA 02111-1307, USA. 00018 */ 00019 00020 #ifndef KDESASL_H 00021 #define KDESASL_H 00022 00023 #include <qstring.h> 00024 00025 class KURL; 00026 class QStrIList; 00027 00047 class KDESasl 00048 { 00049 00050 public: 00055 KDESasl(const KURL &aUrl); 00060 KDESasl(const QString &aUser, const QString &aPass, const QString &aProtocol); 00061 /* 00062 * You need to have a virtual destructor! 00063 */ 00064 virtual ~KDESasl(); 00069 virtual QCString chooseMethod(const QStrIList aMethods); 00073 virtual void setMethod(const QCString &aMethod); 00084 QCString getResponse(const QByteArray &aChallenge, bool aBase64 = TRUE); 00088 QByteArray getBinaryResponse(const QByteArray &aChallenge, bool aBase64); 00089 00090 protected: 00094 virtual QByteArray getPlainResponse(); 00098 virtual QByteArray getLoginResponse(); 00102 virtual QByteArray getCramMd5Response(const QByteArray &aChallenge); 00106 virtual QByteArray getDigestMd5Response(const QByteArray &aChallenge); 00107 00108 private: 00109 QString mProtocol, mUser, mPass; 00110 QCString mMethod; 00111 bool mFirst; 00112 }; 00113 00114 #endif