#pragma once
#include "seal/c/defines.h"
#include <stdint.h>
SEAL_C_FUNC Decryptor_Create(void *context, void *secret_key, void **decryptor);
SEAL_C_FUNC Decryptor_Destroy(void *thisptr);
SEAL_C_FUNC Decryptor_Decrypt(void *thisptr, void *encrypted, void *destination);
SEAL_C_FUNC Decryptor_DecryptAndExtractNoise(void *thisptr, void *encrypted, void *destination, void *noise);
SEAL_C_FUNC Decryptor_InvariantNoise(void *thisptr, void *encrypted, double *invariant_noise_budget);
SEAL_C_FUNC Decryptor_InvariantNoiseBudget(void *thisptr, void *encrypted, int *invariant_noise_budget);