gpt4 book ai didi

c++ - 在没有 key 的情况下读取密文的剩余噪声预算

转载 作者:行者123 更新时间:2023-11-28 04:31:39 26 4
gpt4 key购买 nike

我使用 SEAL 2.3.1,这是我的参数设置:

seal::EncryptionParameters parms;
parms.set_poly_modulus("1x^2048 + 1"); // n = 2048
parms.set_coeff_modulus(coeff_modulus_128(2048)); // q = 54-bit prime
parms.set_plain_modulus(1 << 8); // t = 256

seal::SEALContext context(parms);

还有一些 Ciphertext encrypted1; 持有数字 5。手册上说可以使用 seal::Simulator 类来读取噪声预算而无需 key 。我在 simulator.h 文件中找到的唯一东西。

/**
Creates a simulation of a ciphertext encrypted with the specified encryption
parameters and given invariant noise budget. The given noise budget must be
at least zero, and at most the significant bit count of the coefficient
modulus minus two.

@param[in] parms The encryption parameters
@param[in] noise_budget The invariant noise budget of the created ciphertext
@param[in] ciphertext_size The size of the created ciphertext
@throws std::invalid_argument if ciphertext_size is less than 2
@throws std::invalid_argument if noise_budget is not in the valid range
*/
Simulation(const EncryptionParameters &parms, int ciphertext_size,
int noise_budget);

我可以用一些其他的Ciphertext encrypted2来设置它:

seal::Simulation(parms, encrypted2.size(), (context.total_coeff_modulus().significant_bit_count() - log2(context.poly_modulus().coeff_count() - 1) - log2(context.plain_modulus().value()));

但是使用它只会创建一个模拟的密文,与实际的 encrypted1 密文噪声预算没有任何真正的联系。

有没有办法在没有 key 的情况下估算 encrypted1 的噪声预算?当我或其他人对外部存储的密文进行一些计算时,这种情况很重要,例如在云数据库中,需要在不泄露 key 的情况下检查噪声预算服务器端。

最佳答案

Simulation 类旨在估计各种操作中的噪声预算消耗,这样这些操作实际上不必在真实数据上执行。此外,它对噪声消耗使用启发式上限估计,即它很可能高估了噪声消耗,并且当计算更复杂时这种效果变得更加明显,有时会导致对噪声消耗的巨大高估。当然,这个想法是,如果根据模拟器工作,计算就可以保证工作。 Simulation 的典型用途是通过 ChooserPoly(及相关)类;这在 SEALExamples/main.cpp 中针对 SEAL 版本 < 3.0 的示例之一进行了演示。

如果不知道密文是如何产生的,就不可能知道或估计密文中的噪声。因此,如果我给你一个密文而不告诉你任何其他信息(加密参数除外),那么除非你知道 key ,否则你不应该知道任何关于噪声预算的信息。我同意,在某些情况下,立即知道密文是否对进一步计算仍然有效可能很重要,但如果没有某种外部机制,这是不可能的。

关于c++ - 在没有 key 的情况下读取密文的剩余噪声预算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52746042/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com