mirror of
https://github.com/QuasarApp/qca.git
synced 2025-04-28 12:34:31 +00:00
formatting, non-default ctor/etc and dptr
svn path=/trunk/kdesupport/qca/; revision=670551
This commit is contained in:
parent
c8daffd861
commit
27f327bd7a
File diff suppressed because it is too large
Load Diff
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user