forked from microsoft/SEAL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rlwe.h
76 lines (64 loc) · 3.22 KB
/
rlwe.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
#include "seal/ciphertext.h"
#include "seal/context.h"
#include "seal/encryptionparams.h"
#include "seal/publickey.h"
#include "seal/randomgen.h"
#include "seal/secretkey.h"
#include <cstdint>
namespace seal
{
namespace util
{
/**
Generate a ternary polynomial uniformlly and store in RNS representation.
@param[in] rng A uniform random generator.
@param[in] parms EncryptionParameters used to parametize an RNS polynomial.
@param[out] destination Allocated space to store a random polynomia.
*/
void sample_poly_ternary(
std::shared_ptr<UniformRandomGenerator> rng, const EncryptionParameters &parms, std::uint64_t *destination);
/**
Generate a polynomial from a normal distribution and store in RNS representation.
@param[in] rng A uniform random generator.
@param[in] parms EncryptionParameters used to parametize an RNS polynomial.
@param[out] destination Allocated space to store a random polynomia.
*/
void sample_poly_normal(
std::shared_ptr<UniformRandomGenerator> rng, const EncryptionParameters &parms, std::uint64_t *destination);
/**
Generate a polynomial uniformly from Rq and store in RNS representation.
@param[in] rng A uniform random generator.
@param[in] parms EncryptionParameters used to parametize an RNS polynomial.
@param[out] destination Allocated space to store a random polynomia.
*/
void sample_poly_uniform(
std::shared_ptr<UniformRandomGenerator> rng, const EncryptionParameters &parms, std::uint64_t *destination);
/**
Create an encryption of zero with a public key and store in a ciphertext.
@param[in] public_key The public key used for encryption.
@param[in] context The SEALContext containing a chain of ContextData.
@param[in] parms_id Indicates the level of encryption.
@param[in] is_ntt_form If true, store Ciphertext in NTT form.
@param[out] destination The output ciphertext - an encryption of zero.
*/
void encrypt_zero_asymmetric(
const PublicKey &public_key, std::shared_ptr<SEALContext> context, parms_id_type parms_id, bool is_ntt_form,
Ciphertext &destination);
/**
Create an encryption of zero with a secret key and store in a ciphertext.
@param[out] destination The output ciphertext - an encryption of zero.
@param[in] secret_key The secret key used for encryption.
@param[in] context The SEALContext containing a chain of ContextData.
@param[in] parms_id Indicates the level of encryption.
@param[in] is_ntt_form If true, store Ciphertext in NTT form.
@param[in] save_seed If true, The second component of ciphertext is
replaced with the random seed used to sample this component.
*/
void encrypt_zero_symmetric(
const SecretKey &secret_key, std::shared_ptr<SEALContext> context, parms_id_type parms_id, bool is_ntt_form,
bool save_seed, Ciphertext &destination);
} // namespace util
} // namespace seal