xca/lib/pki_x509super.cpp
2007-06-20 10:43:46 +02:00

66 lines
1.1 KiB
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#include "pki_x509super.h"
pki_x509super::pki_x509super(const QString name)
: pki_base(name)
{
privkey = NULL;
}
pki_x509super::~pki_x509super()
{
if (privkey)
privkey->decUcount();
privkey = NULL;
}
pki_key *pki_x509super::getRefKey() const
{
return privkey;
}
void pki_x509super::setRefKey(pki_key *ref)
{
if (ref == NULL || ref->isPubKey() || privkey != NULL )
return;
pki_key *mk = getPubKey();
if (ref->compare(mk)) {
// this is our key
privkey = ref;
ref->incUcount();
}
delete mk;
}
void pki_x509super::delRefKey(pki_key *ref)
{
if (ref != privkey || ref == NULL)
return;
ref->decUcount();
privkey = NULL;
}
void pki_x509super::autoIntName()
{
int nids[] = { NID_commonName, NID_pkcs9_emailAddress,
NID_organizationalUnitName, NID_organizationName, NID_undef };
int i;
x509name subject = getSubject();
QString s;
for (i = 0; nids[i] != NID_undef; i++) {
s = subject.getEntryByNid(nids[i]);
if (!s.isEmpty())
break;
}
if (s.isEmpty())
s = subject.getEntry(-1);
setIntName(s);
}