qtkeychain/keychain.cpp

58 lines
1.7 KiB
C++
Raw Normal View History

2011-10-27 16:15:46 +00:00
/******************************************************************************
* Copyright (C) 2011 Frank Osterfeld <frank.osterfeld@gmail.com> *
* *
* 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. For licensing and distribution *
* details, check the accompanying file 'COPYING'. *
*****************************************************************************/
2011-10-27 16:14:37 +00:00
#include "keychain.h"
#include "keychain_p.h"
2011-10-27 16:15:46 +00:00
Keychain::Keychain( const QString& service )
: d( new Private( service ) )
{
}
2011-10-27 16:14:37 +00:00
2011-10-27 16:15:46 +00:00
Keychain::~Keychain() {
delete d;
2011-10-27 16:14:37 +00:00
}
2011-10-27 16:15:46 +00:00
QString Keychain::service() const {
return d->service;
2011-10-27 16:14:37 +00:00
}
2011-10-27 16:15:46 +00:00
Keychain::Error Keychain::error() const {
return d->error;
2011-10-27 16:14:37 +00:00
}
2011-10-27 16:15:46 +00:00
QString Keychain::errorString() const {
return d->errorString;
2011-10-27 16:14:37 +00:00
}
2011-10-27 16:15:46 +00:00
void Keychain::writePassword( const QString& account, const QString& password, OverwriteMode om ) {
QString err;
const Error ret = d->writePasswordImpl( account, password, om, &err );
d->error = ret;
d->errorString = err;
2011-10-27 16:14:37 +00:00
}
2011-10-27 16:15:46 +00:00
QString Keychain::readPassword( const QString& account ) {
QString err;
QString pw;
const Error ret = d->readPasswordImpl( &pw, account, &err );
d->error = ret;
d->errorString = err;
if ( ret != NoError )
return QString();
else
return pw;
}
void Keychain::deletePassword( const QString& account ) {
QString err;
const Error ret = d->deletePasswordImpl( account, &err );
d->error = ret;
d->errorString = err;
2011-10-27 16:14:37 +00:00
}