mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
Some checks are pending
CMake / build (build/xca-*-Linux.tar.gz, Unix Makefiles, linux, /usr, ubuntu, 5.15.2, ubuntu-latest) (push) Waiting to run
CMake / build (build/xca-*-Linux.tar.gz, Unix Makefiles, linux, /usr, ubuntu, 6.6.2, ubuntu-latest) (push) Waiting to run
CMake / build (build/xca-*.dmg, Unix Makefiles, mac, /opt/homebrew/opt/openssl, macos, 6.6.2, macos-latest) (push) Waiting to run
CMake / build (build/xca-*.msi
build/xca-portable-*.zip
, MinGW Makefiles, windows, D:\msys2\msys64\mingw64, windows, 5.15.2, windows-2019, win64_mingw81) (push) Waiting to run
Use the provided plural mechanisms of QT. The "PO" translation also works smoothly and the translation mechanisms between .po <-> .qt was tested successfully. The new english translation file translates the single phrase: "Delete the %n revocation list(s): '%1'?" into "Delete the revocation list: '%1'?" for one item and "Delete the %n revocation lists: '%1'?" otherwise
87 lines
1.9 KiB
C++
87 lines
1.9 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2020 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __PKI_X509REQ_H
|
|
#define __PKI_X509REQ_H
|
|
|
|
#include <openssl/x509.h>
|
|
#include <openssl/pem.h>
|
|
#include "pki_key.h"
|
|
#include "pki_x509super.h"
|
|
#include "x509v3ext.h"
|
|
#include "x509name.h"
|
|
#include "digest.h"
|
|
|
|
#define VIEW_x509req_request 7
|
|
#define VIEW_x509req_signed 8
|
|
|
|
class pki_x509;
|
|
|
|
class pki_x509req : public pki_x509super
|
|
{
|
|
Q_OBJECT
|
|
|
|
mutable int x509count{};
|
|
protected:
|
|
X509_REQ *request{};
|
|
bool done{ false };
|
|
int sigAlg() const;
|
|
void collect_properties(QMap<QString, QString> &prp) const;
|
|
|
|
public:
|
|
pki_x509req(const QString &name = QString());
|
|
pki_x509req(const pki_x509req *req);
|
|
~pki_x509req();
|
|
|
|
extList getV3ext() const;
|
|
void fromPEM_BIO(BIO *bio, const QString &name);
|
|
void fload(const QString &fname);
|
|
void writeDefault(const QString &dirname) const;
|
|
x509name getSubject() const;
|
|
void writeReq(XFile &file, bool pem) const;
|
|
void markSigned(bool signe);
|
|
void print(BioByteArray &b, enum print_opt opt) const;
|
|
X509_REQ *getReq()
|
|
{
|
|
return request;
|
|
}
|
|
void addAttribute(int nid, QString content);
|
|
QString getAttribute(int nid) const;
|
|
int issuedCerts() const;
|
|
|
|
bool verify() const;
|
|
pki_key *getPubKey() const;
|
|
void createReq(pki_key *key, const x509name &dn,
|
|
const digest &digest, extList el);
|
|
void setSubject(const x509name &n);
|
|
QVariant column_data(const dbheader *hd) const;
|
|
QVariant getIcon(const dbheader *hd) const;
|
|
void setDone(bool d = true)
|
|
{
|
|
done = d;
|
|
}
|
|
bool getDone() const
|
|
{
|
|
return done;
|
|
}
|
|
void resetX509count() const
|
|
{
|
|
x509count = -1;
|
|
}
|
|
virtual QString getMsg(msg_type msg, int n = 1) const;
|
|
void d2i(QByteArray &ba);
|
|
QByteArray i2d() const;
|
|
bool pem(BioByteArray &);
|
|
bool visible() const;
|
|
QSqlError insertSqlData();
|
|
QSqlError deleteSqlData();
|
|
void restoreSql(const QSqlRecord &rec);
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(pki_x509req *);
|
|
#endif
|