#ifndef MONERO_WALLET_DECRYPT_H
#define MONERO_WALLET_DECRYPT_H
#include <stdint.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
uint8_t* decrypt_wallet_bytes(const uint8_t* wallet_data, size_t wallet_len, const char* password, size_t* out_len);
void free_decrypted_wallet(uint8_t* ptr);
#ifdef __cplusplus
}
#endif
#endif