2024-10-20 05:21:03 +00:00
|
|
|
package qt6
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include "gen_qcryptographichash.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
type QCryptographicHash__Algorithm int
|
|
|
|
|
|
|
|
const (
|
|
|
|
QCryptographicHash__Md4 QCryptographicHash__Algorithm = 0
|
|
|
|
QCryptographicHash__Md5 QCryptographicHash__Algorithm = 1
|
|
|
|
QCryptographicHash__Sha1 QCryptographicHash__Algorithm = 2
|
|
|
|
QCryptographicHash__Sha224 QCryptographicHash__Algorithm = 3
|
|
|
|
QCryptographicHash__Sha256 QCryptographicHash__Algorithm = 4
|
|
|
|
QCryptographicHash__Sha384 QCryptographicHash__Algorithm = 5
|
|
|
|
QCryptographicHash__Sha512 QCryptographicHash__Algorithm = 6
|
|
|
|
QCryptographicHash__Keccak_224 QCryptographicHash__Algorithm = 7
|
|
|
|
QCryptographicHash__Keccak_256 QCryptographicHash__Algorithm = 8
|
|
|
|
QCryptographicHash__Keccak_384 QCryptographicHash__Algorithm = 9
|
|
|
|
QCryptographicHash__Keccak_512 QCryptographicHash__Algorithm = 10
|
|
|
|
QCryptographicHash__RealSha3_224 QCryptographicHash__Algorithm = 11
|
|
|
|
QCryptographicHash__RealSha3_256 QCryptographicHash__Algorithm = 12
|
|
|
|
QCryptographicHash__RealSha3_384 QCryptographicHash__Algorithm = 13
|
|
|
|
QCryptographicHash__RealSha3_512 QCryptographicHash__Algorithm = 14
|
|
|
|
QCryptographicHash__Sha3_224 QCryptographicHash__Algorithm = 11
|
|
|
|
QCryptographicHash__Sha3_256 QCryptographicHash__Algorithm = 12
|
|
|
|
QCryptographicHash__Sha3_384 QCryptographicHash__Algorithm = 13
|
|
|
|
QCryptographicHash__Sha3_512 QCryptographicHash__Algorithm = 14
|
|
|
|
QCryptographicHash__Blake2b_160 QCryptographicHash__Algorithm = 15
|
|
|
|
QCryptographicHash__Blake2b_256 QCryptographicHash__Algorithm = 16
|
|
|
|
QCryptographicHash__Blake2b_384 QCryptographicHash__Algorithm = 17
|
|
|
|
QCryptographicHash__Blake2b_512 QCryptographicHash__Algorithm = 18
|
|
|
|
QCryptographicHash__Blake2s_128 QCryptographicHash__Algorithm = 19
|
|
|
|
QCryptographicHash__Blake2s_160 QCryptographicHash__Algorithm = 20
|
|
|
|
QCryptographicHash__Blake2s_224 QCryptographicHash__Algorithm = 21
|
|
|
|
QCryptographicHash__Blake2s_256 QCryptographicHash__Algorithm = 22
|
|
|
|
)
|
|
|
|
|
|
|
|
type QCryptographicHash struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QCryptographicHash
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) cPointer() *C.QCryptographicHash {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQCryptographicHash constructs the type using only CGO pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func newQCryptographicHash(h *C.QCryptographicHash) *QCryptographicHash {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
return &QCryptographicHash{h: h}
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQCryptographicHash constructs the type using only unsafe pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func UnsafeNewQCryptographicHash(h unsafe.Pointer) *QCryptographicHash {
|
2024-12-07 04:15:57 +00:00
|
|
|
return newQCryptographicHash((*C.QCryptographicHash)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQCryptographicHash constructs a new QCryptographicHash object.
|
|
|
|
func NewQCryptographicHash(method QCryptographicHash__Algorithm) *QCryptographicHash {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQCryptographicHash(C.QCryptographicHash_new((C.int)(method)))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) Reset() {
|
|
|
|
C.QCryptographicHash_Reset(this.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) AddData(data string, length int64) {
|
|
|
|
data_Cstring := C.CString(data)
|
|
|
|
defer C.free(unsafe.Pointer(data_Cstring))
|
|
|
|
C.QCryptographicHash_AddData(this.h, data_Cstring, (C.ptrdiff_t)(length))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) AddDataWithData(data QByteArrayView) {
|
|
|
|
C.QCryptographicHash_AddDataWithData(this.h, data.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) AddDataWithDevice(device *QIODevice) bool {
|
|
|
|
return (bool)(C.QCryptographicHash_AddDataWithDevice(this.h, device.cPointer()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) Result() []byte {
|
|
|
|
var _bytearray C.struct_miqt_string = C.QCryptographicHash_Result(this.h)
|
|
|
|
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
|
|
|
|
C.free(unsafe.Pointer(_bytearray.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QCryptographicHash) ResultView() *QByteArrayView {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQByteArrayView(C.QCryptographicHash_ResultView(this.h))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func QCryptographicHash_Hash(data QByteArrayView, method QCryptographicHash__Algorithm) []byte {
|
|
|
|
var _bytearray C.struct_miqt_string = C.QCryptographicHash_Hash(data.cPointer(), (C.int)(method))
|
|
|
|
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
|
|
|
|
C.free(unsafe.Pointer(_bytearray.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func QCryptographicHash_HashLength(method QCryptographicHash__Algorithm) int {
|
|
|
|
return (int)(C.QCryptographicHash_HashLength((C.int)(method)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QCryptographicHash) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QCryptographicHash_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
|
|
|
|
// from C++ memory once it is unreachable from Go memory.
|
|
|
|
func (this *QCryptographicHash) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QCryptographicHash) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|