-
Notifications
You must be signed in to change notification settings - Fork 709
/
valcheck.h
207 lines (176 loc) · 7.39 KB
/
valcheck.h
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
#include "seal/context.h"
#include <memory>
namespace seal
{
class Plaintext;
class Ciphertext;
class SecretKey;
class PublicKey;
class KSwitchKeys;
class RelinKeys;
class GaloisKeys;
/**
Check whether the given plaintext is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
plaintext data does not match the SEALContext, this function returns false.
Otherwise, returns true. This function only checks the metadata and not the
plaintext data itself.
@param[in] in The plaintext to check
@param[in] context The SEALContext
*/
bool is_metadata_valid_for(
const Plaintext &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given ciphertext is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
ciphertext data does not match the SEALContext, this function returns false.
Otherwise, returns true. This function only checks the metadata and not the
ciphertext data itself.
@param[in] in The ciphertext to check
@param[in] context The SEALContext
*/
bool is_metadata_valid_for(
const Ciphertext &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given secret key is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
secret key data does not match the SEALContext, this function returns false.
Otherwise, returns true. This function only checks the metadata and not the
secret key data itself.
@param[in] in The secret key to check
@param[in] context The SEALContext
*/
bool is_metadata_valid_for(
const SecretKey &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given public key is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
public key data does not match the SEALContext, this function returns false.
Otherwise, returns true. This function only checks the metadata and not the
public key data itself.
@param[in] in The public key to check
@param[in] context The SEALContext
*/
bool is_metadata_valid_for(
const PublicKey &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given KSwitchKeys is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
KSwitchKeys data does not match the SEALContext, this function returns false.
Otherwise, returns true. This function only checks the metadata and not the
KSwitchKeys data itself.
@param[in] in The KSwitchKeys to check
@param[in] context The SEALContext
*/
bool is_metadata_valid_for(
const KSwitchKeys &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given RelinKeys is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
RelinKeys data does not match the SEALContext, this function returns false.
Otherwise, returns true. This function only checks the metadata and not the
RelinKeys data itself.
@param[in] in The RelinKeys to check
@param[in] context The SEALContext
*/
bool is_metadata_valid_for(
const RelinKeys &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given GaloisKeys is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
GaloisKeys data does not match the SEALContext, this function returns false.
Otherwise, returns true. This function only checks the metadata and not the
GaloisKeys data itself.
@param[in] in The RelinKeys to check
@param[in] context The SEALContext
*/
bool is_metadata_valid_for(
const GaloisKeys &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given plaintext is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
plaintext data does not match the SEALContext, this function returns false.
Otherwise, returns true.
@param[in] in The plaintext to check
@param[in] context The SEALContext
*/
bool is_valid_for(
const Plaintext &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given ciphertext is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
ciphertext data does not match the SEALContext, this function returns false.
Otherwise, returns true.
@param[in] in The ciphertext to check
@param[in] context The SEALContext
*/
bool is_valid_for(
const Ciphertext &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given secret key is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
secret key data does not match the SEALContext, this function returns false.
Otherwise, returns true.
@param[in] in The secret key to check
@param[in] context The SEALContext
*/
bool is_valid_for(
const SecretKey &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given public key is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
public key data does not match the SEALContext, this function returns false.
Otherwise, returns true.
@param[in] in The public key to check
@param[in] context The SEALContext
*/
bool is_valid_for(
const PublicKey &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given KSwitchKeys is valid for a given SEALContext. If
the given SEALContext is not set, the encryption parameters are invalid,
or the KSwitchKeys data does not match the SEALContext, this function returns
false. Otherwise, returns true.
@param[in] in The KSwitchKeys to check
@param[in] context The SEALContext
*/
bool is_valid_for(
const KSwitchKeys &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given RelinKeys is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
RelinKeys data does not match the SEALContext, this function returns false.
Otherwise, returns true.
@param[in] in The RelinKeys to check
@param[in] context The SEALContext
*/
bool is_valid_for(
const RelinKeys &in,
std::shared_ptr<const SEALContext> context);
/**
Check whether the given GaloisKeys is valid for a given SEALContext. If the
given SEALContext is not set, the encryption parameters are invalid, or the
GaloisKeys data does not match the SEALContext, this function returns false.
Otherwise, returns true.
@param[in] in The GaloisKeys to check
@param[in] context The SEALContext
*/
bool is_valid_for(
const GaloisKeys &in,
std::shared_ptr<const SEALContext> context);
}