mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
- 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.
25 lines
497 B
C++
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
|