-
Notifications
You must be signed in to change notification settings - Fork 716
/
Copy pathcontextdata.cpp
218 lines (172 loc) · 5.79 KB
/
contextdata.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
// SEALNet
#include "seal/c/contextdata.h"
#include "seal/c/utilities.h"
// SEAL
#include "seal/context.h"
using namespace std;
using namespace seal;
using namespace seal::c;
SEAL_C_FUNC ContextData_Destroy(void *thisptr)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
delete cont_data;
return S_OK;
}
SEAL_C_FUNC ContextData_TotalCoeffModulus(void *thisptr, uint64_t *count, uint64_t *total_coeff_modulus)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(count, E_POINTER);
*count = cont_data->parms().coeff_modulus().size();
if (nullptr == total_coeff_modulus)
{
// We only wanted the count.
return S_OK;
}
for (uint64_t i = 0; i < *count; i++)
{
total_coeff_modulus[i] = cont_data->total_coeff_modulus()[i];
}
return S_OK;
}
SEAL_C_FUNC ContextData_TotalCoeffModulusBitCount(void *thisptr, int *bit_count)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(bit_count, E_POINTER);
*bit_count = cont_data->total_coeff_modulus_bit_count();
return S_OK;
}
SEAL_C_FUNC ContextData_Parms(void *thisptr, void **parms)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
EncryptionParameters *enc_params = new EncryptionParameters(cont_data->parms());
*parms = enc_params;
return S_OK;
}
SEAL_C_FUNC ContextData_Qualifiers(void *thisptr, void **epq)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(epq, E_POINTER);
EncryptionParameterQualifiers *qualifiers = new EncryptionParameterQualifiers(cont_data->qualifiers());
*epq = qualifiers;
return S_OK;
}
SEAL_C_FUNC ContextData_CoeffDivPlainModulus(void *thisptr, uint64_t *count, uint64_t *coeff_div)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(count, E_POINTER);
*count = cont_data->parms().coeff_modulus().size();
if (nullptr == coeff_div)
{
// We only wanted the size
return S_OK;
}
for (uint64_t i = 0; i < *count; i++)
{
coeff_div[i] = cont_data->coeff_div_plain_modulus()[i].operand;
}
return S_OK;
}
SEAL_C_FUNC ContextData_PlainUpperHalfThreshold(void *thisptr, uint64_t *puht)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(puht, E_POINTER);
*puht = cont_data->plain_upper_half_threshold();
return S_OK;
}
SEAL_C_FUNC ContextData_PlainUpperHalfIncrement(void *thisptr, uint64_t *count, uint64_t *puhi)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(count, E_POINTER);
*count = cont_data->parms().coeff_modulus().size();
if (nullptr == puhi)
{
// We only wanted the size
return S_OK;
}
for (uint64_t i = 0; i < *count; i++)
{
puhi[i] = cont_data->plain_upper_half_increment()[i];
}
return S_OK;
}
SEAL_C_FUNC ContextData_UpperHalfThreshold(void *thisptr, uint64_t *count, uint64_t *uht)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(count, E_POINTER);
// This is only available for CKKS
if (cont_data->upper_half_threshold() == nullptr)
{
*count = 0;
return S_OK;
}
*count = cont_data->parms().coeff_modulus().size();
if (nullptr == uht)
{
// We only wanted the count
return S_OK;
}
for (uint64_t i = 0; i < *count; i++)
{
uht[i] = cont_data->upper_half_threshold()[i];
}
return S_OK;
}
SEAL_C_FUNC ContextData_UpperHalfIncrement(void *thisptr, uint64_t *count, uint64_t *uhi)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(count, E_POINTER);
if (cont_data->upper_half_increment() == nullptr)
{
*count = 0;
return S_OK;
}
*count = cont_data->parms().coeff_modulus().size();
if (nullptr == uhi)
{
// We only wanted the size
return S_OK;
}
for (uint64_t i = 0; i < *count; i++)
{
uhi[i] = cont_data->upper_half_increment()[i];
}
return S_OK;
}
SEAL_C_FUNC ContextData_PrevContextData(void *thisptr, void **prev_data)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(prev_data, E_POINTER);
// The caller should not try to delete the returned pointer
*prev_data = const_cast<SEALContext::ContextData *>(cont_data->prev_context_data().get());
return S_OK;
}
SEAL_C_FUNC ContextData_NextContextData(void *thisptr, void **next_data)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(next_data, E_POINTER);
// The caller should not try to delete the returned pointer
*next_data = const_cast<SEALContext::ContextData *>(cont_data->next_context_data().get());
return S_OK;
}
SEAL_C_FUNC ContextData_ChainIndex(void *thisptr, uint64_t *index)
{
SEALContext::ContextData *cont_data = FromVoid<SEALContext::ContextData>(thisptr);
IfNullRet(cont_data, E_POINTER);
IfNullRet(index, E_POINTER);
*index = cont_data->chain_index();
return S_OK;
}