mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
If we have a QByteArray (ba) and must provide it to a BIO* expecting OpenSSL function, the following construct provides it: BioByteArray(ba).ro() directly providing the QByteArray buffer as BIO It also supports mixed writes: BIO_write(bba, buf, size) bba += QByteArray
33 lines
681 B
C++
33 lines
681 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2020 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
|
|
#ifndef __PKI_MULTI_H
|
|
#define __PKI_MULTI_H
|
|
|
|
#include <QStringList>
|
|
#include "pki_base.h"
|
|
|
|
class pki_multi: public pki_base
|
|
{
|
|
Q_OBJECT
|
|
protected:
|
|
QList<pki_base*> multi;
|
|
public:
|
|
pki_multi(const QString &name = "");
|
|
~pki_multi();
|
|
QStringList failed_files;
|
|
void fromPEMbyteArray(const QByteArray &, const QString &);
|
|
void fload(const QString &fname);
|
|
void probeAnything(const QString &fname);
|
|
void append_item(pki_base *pki);
|
|
void print(BioByteArray &b, enum print_opt opt) const;
|
|
QList<pki_base *> pull();
|
|
QList<pki_base *> get() const;
|
|
};
|
|
#endif
|