xca/lib/func.h
Christian 0195dcf746 Request attributes added
- remove extension and attribute tab in details dialog if
   no extensions or attributes available
 - documentation updated
   X509 request attributes (like challange password) can be set and viewed.
2007-05-28 16:33:13 +02:00

25 lines
497 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef FUNC_H
#define FUNC_H
#include <openssl/asn1.h>
#include <qpixmap.h>
#include "base.h"
class Validity;
QPixmap *loadImg(const char *name);
QString getPrefix();
QString getHomeDir();
void applyTD(QWidget *parent, int number, int range, bool mnc,
Validity *nb, Validity *na);
QString asn1ToQString(const ASN1_STRING *str);
ASN1_STRING *QStringToAsn1(QString s, int nid);
#endif