mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
#include <QByteArray>
|
|
#include <QIODevice>
|
|
#include <QMessageAuthenticationCode>
|
|
#include "qmessageauthenticationcode.h"
|
|
|
|
#include "gen_qmessageauthenticationcode.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
QMessageAuthenticationCode* QMessageAuthenticationCode_new(uintptr_t method) {
|
|
return new QMessageAuthenticationCode(static_cast<QCryptographicHash::Algorithm>(method));
|
|
}
|
|
|
|
QMessageAuthenticationCode* QMessageAuthenticationCode_new2(uintptr_t method, QByteArray* key) {
|
|
return new QMessageAuthenticationCode(static_cast<QCryptographicHash::Algorithm>(method), *key);
|
|
}
|
|
|
|
void QMessageAuthenticationCode_Reset(QMessageAuthenticationCode* self) {
|
|
self->reset();
|
|
}
|
|
|
|
void QMessageAuthenticationCode_SetKey(QMessageAuthenticationCode* self, QByteArray* key) {
|
|
self->setKey(*key);
|
|
}
|
|
|
|
void QMessageAuthenticationCode_AddData(QMessageAuthenticationCode* self, const char* data, int length) {
|
|
self->addData(data, static_cast<int>(length));
|
|
}
|
|
|
|
void QMessageAuthenticationCode_AddDataWithData(QMessageAuthenticationCode* self, QByteArray* data) {
|
|
self->addData(*data);
|
|
}
|
|
|
|
bool QMessageAuthenticationCode_AddDataWithDevice(QMessageAuthenticationCode* self, QIODevice* device) {
|
|
return self->addData(device);
|
|
}
|
|
|
|
QByteArray* QMessageAuthenticationCode_Result(const QMessageAuthenticationCode* self) {
|
|
QByteArray ret = self->result();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QByteArray*>(new QByteArray(ret));
|
|
}
|
|
|
|
QByteArray* QMessageAuthenticationCode_Hash(QByteArray* message, QByteArray* key, uintptr_t method) {
|
|
QByteArray ret = QMessageAuthenticationCode::hash(*message, *key, static_cast<QCryptographicHash::Algorithm>(method));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QByteArray*>(new QByteArray(ret));
|
|
}
|
|
|
|
void QMessageAuthenticationCode_Delete(QMessageAuthenticationCode* self) {
|
|
delete self;
|
|
}
|
|
|