formatting, non-default ctor/etc and dptr

svn path=/trunk/kdesupport/qca/; revision=670551
This commit is contained in:
Justin Karneges 2007-06-01 23:22:53 +00:00
parent c8daffd861
commit 27f327bd7a
2 changed files with 1283 additions and 1178 deletions

File diff suppressed because it is too large Load Diff

View File

@ -746,6 +746,21 @@ PublicKey::PublicKey(const QString &fileName)
*this = fromPEMFile(fileName, 0, QString());
}
PublicKey::PublicKey(const PublicKey &from)
:PKey(from)
{
}
PublicKey::~PublicKey()
{
}
PublicKey & PublicKey::operator=(const PublicKey &from)
{
PKey::operator=(from);
return *this;
}
RSAPublicKey PublicKey::toRSA() const
{
return toRSAPublicKey();
@ -891,6 +906,21 @@ PrivateKey::PrivateKey(const QString &fileName, const SecureArray &passphrase)
*this = fromPEMFile(fileName, passphrase, 0, QString());
}
PrivateKey::PrivateKey(const PrivateKey &from)
:PKey(from)
{
}
PrivateKey::~PrivateKey()
{
}
PrivateKey & PrivateKey::operator=(const PrivateKey &from)
{
PKey::operator=(from);
return *this;
}
RSAPrivateKey PrivateKey::toRSA() const
{
return toRSAPrivateKey();