diff options
| author | rajdakin <rajdakin@gmail.com> | 2024-09-01 19:06:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-01 19:06:03 +0200 |
| commit | ea807eda045be675301cea084e311bc4feae17f0 (patch) | |
| tree | ca1694d3ef543ec65d384b5570f6c4ed05c48fec /src/wrapped/wrappedlibnettle8.c | |
| parent | 36321f809dfe33d26df26de2913aa1df3f8cfa61 (diff) | |
| download | box64-ea807eda045be675301cea084e311bc4feae17f0.tar.gz box64-ea807eda045be675301cea084e311bc4feae17f0.zip | |
[WRAPPED] Merged types D/K and Y/y in 64bits wrapped libs (#1784)
* [WRAPPED] Merged types D/K and Y/y in 64bits wrapped libs * [WRAPPERS] Version bump * [WRAPPED] Fixed wrapped glib2 on non-LD80BITS builds
Diffstat (limited to 'src/wrapped/wrappedlibnettle8.c')
| -rw-r--r-- | src/wrapped/wrappedlibnettle8.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wrapped/wrappedlibnettle8.c b/src/wrapped/wrappedlibnettle8.c index d18ec684..785c3366 100644 --- a/src/wrapped/wrappedlibnettle8.c +++ b/src/wrapped/wrappedlibnettle8.c @@ -131,22 +131,22 @@ EXPORT int my_nettle_ccm_decrypt_message(x64emu_t* emu, void* cipher, void* f, s return my->nettle_ccm_decrypt_message(cipher, findnettle_cipher_funcFct(f), nlen, nonce, alen, adata, tlen, mlen, dst, src); } -EXPORT int my_nettle_cfb_decrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) +EXPORT void my_nettle_cfb_decrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) { my->nettle_cfb_decrypt(cipher, findnettle_cipher_funcFct(f), blen, iv, len, dst, src); } -EXPORT int my_nettle_cfb_encrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) +EXPORT void my_nettle_cfb_encrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) { my->nettle_cfb_encrypt(cipher, findnettle_cipher_funcFct(f), blen, iv, len, dst, src); } -EXPORT int my_nettle_cfb8_decrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) +EXPORT void my_nettle_cfb8_decrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) { my->nettle_cfb8_decrypt(cipher, findnettle_cipher_funcFct(f), blen, iv, len, dst, src); } -EXPORT int my_nettle_cfb8_encrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) +EXPORT void my_nettle_cfb8_encrypt(x64emu_t* emu, void* cipher, void* f, size_t blen, void* iv, size_t len, void* dst, void* src) { my->nettle_cfb8_encrypt(cipher, findnettle_cipher_funcFct(f), blen, iv, len, dst, src); } |