miqt/qt6/gen_qcryptographichash.cpp

67 lines
1.8 KiB
C++

#include <QByteArray>
#include <QByteArrayView>
#include <QCryptographicHash>
#include <QIODevice>
#include <qcryptographichash.h>
#include "gen_qcryptographichash.h"
#ifndef _Bool
#define _Bool bool
#endif
#include "_cgo_export.h"
QCryptographicHash* QCryptographicHash_new(int method) {
return new QCryptographicHash(static_cast<QCryptographicHash::Algorithm>(method));
}
void QCryptographicHash_Reset(QCryptographicHash* self) {
self->reset();
}
void QCryptographicHash_AddData(QCryptographicHash* self, const char* data, ptrdiff_t length) {
self->addData(data, (qsizetype)(length));
}
void QCryptographicHash_AddDataWithData(QCryptographicHash* self, QByteArrayView* data) {
self->addData(*data);
}
bool QCryptographicHash_AddDataWithDevice(QCryptographicHash* self, QIODevice* device) {
return self->addData(device);
}
struct miqt_string QCryptographicHash_Result(const QCryptographicHash* self) {
QByteArray _qb = self->result();
struct miqt_string _ms;
_ms.len = _qb.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _qb.data(), _ms.len);
return _ms;
}
QByteArrayView* QCryptographicHash_ResultView(const QCryptographicHash* self) {
return new QByteArrayView(self->resultView());
}
struct miqt_string QCryptographicHash_Hash(QByteArrayView* data, int method) {
QByteArray _qb = QCryptographicHash::hash(*data, static_cast<QCryptographicHash::Algorithm>(method));
struct miqt_string _ms;
_ms.len = _qb.length();
_ms.data = static_cast<char*>(malloc(_ms.len));
memcpy(_ms.data, _qb.data(), _ms.len);
return _ms;
}
int QCryptographicHash_HashLength(int method) {
return QCryptographicHash::hashLength(static_cast<QCryptographicHash::Algorithm>(method));
}
void QCryptographicHash_Delete(QCryptographicHash* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<QCryptographicHash*>( self );
} else {
delete self;
}
}