-
Notifications
You must be signed in to change notification settings - Fork 709
/
encryptionparameterqualifiers.cpp
124 lines (98 loc) · 3.54 KB
/
encryptionparameterqualifiers.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
// STD
#include <string.h>
// SEALNet
#include "seal/c/encryptionparameterqualifiers.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<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(thisptr);
IfNullRet(epq, E_POINTER);
delete epq;
return S_OK;
}
SEAL_C_FUNC EPQ_ParametersSet(void *thisptr, bool *parameters_set)
{
EncryptionParameterQualifiers *epq = FromVoid<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(thisptr);
IfNullRet(epq, E_POINTER);
IfNullRet(sec_level, E_POINTER);
*sec_level = static_cast<int>(epq->sec_level);
return S_OK;
}
SEAL_C_FUNC EPQ_ParameterErrorName(void *thisptr, char *outstr, uint64_t *length)
{
EncryptionParameterQualifiers *epq = FromVoid<EncryptionParameterQualifiers>(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<EncryptionParameterQualifiers>(thisptr);
IfNullRet(epq, E_POINTER);
IfNullRet(length, E_POINTER);
return ToStringHelper2(epq->parameter_error_message(), outstr, length);
}