// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. // STD #include // SEALNet #include "seal/c/encryptionparameterqualifiers.h" #include "seal/c/stdafx.h" #include "seal/c/utilities.h" // SEAL #include "seal/context.h" using namespace std; using namespace seal; using namespace seal::c; SEAL_C_FUNC EPQ_Create(void *copy, void **epq) { EncryptionParameterQualifiers *copyptr = FromVoid(copy); IfNullRet(copyptr, E_POINTER); IfNullRet(epq, E_POINTER); EncryptionParameterQualifiers *result = new EncryptionParameterQualifiers(*copyptr); *epq = result; return S_OK; } SEAL_C_FUNC EPQ_Destroy(void *thisptr) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); delete epq; return S_OK; } SEAL_C_FUNC EPQ_ParametersSet(void *thisptr, bool *parameters_set) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(parameters_set, E_POINTER); *parameters_set = epq->parameters_set(); return S_OK; } SEAL_C_FUNC EPQ_UsingFFT(void *thisptr, bool *using_fft) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(using_fft, E_POINTER); *using_fft = epq->using_fft; return S_OK; } SEAL_C_FUNC EPQ_UsingNTT(void *thisptr, bool *using_ntt) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(using_ntt, E_POINTER); *using_ntt = epq->using_ntt; return S_OK; } SEAL_C_FUNC EPQ_UsingBatching(void *thisptr, bool *using_batching) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(using_batching, E_POINTER); *using_batching = epq->using_batching; return S_OK; } SEAL_C_FUNC EPQ_UsingFastPlainLift(void *thisptr, bool *using_fast_plain_lift) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(using_fast_plain_lift, E_POINTER); *using_fast_plain_lift = epq->using_fast_plain_lift; return S_OK; } SEAL_C_FUNC EPQ_UsingDescendingModulusChain(void *thisptr, bool *using_descending_modulus_chain) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(using_descending_modulus_chain, E_POINTER); *using_descending_modulus_chain = epq->using_descending_modulus_chain; return S_OK; } SEAL_C_FUNC EPQ_SecLevel(void *thisptr, int *sec_level) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(sec_level, E_POINTER); *sec_level = static_cast(epq->sec_level); return S_OK; } SEAL_C_FUNC EPQ_ParameterErrorName(void *thisptr, char *outstr, uint64_t *length) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(length, E_POINTER); return ToStringHelper2(epq->parameter_error_name(), outstr, length); } SEAL_C_FUNC EPQ_ParameterErrorMessage(void *thisptr, char *outstr, uint64_t *length) { EncryptionParameterQualifiers *epq = FromVoid(thisptr); IfNullRet(epq, E_POINTER); IfNullRet(length, E_POINTER); return ToStringHelper2(epq->parameter_error_message(), outstr, length); }