-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
repo-sync-2023-12-27T10:55:09+0800 (#114)
* repo-sync-2023-12-27T10:55:09+0800 * Update WORKSPACE * Update ippcp.patch
- Loading branch information
Showing
18 changed files
with
510 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.2.1 | ||
6.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
环境准备 | ||
-------------- | ||
|
||
Python == 3.8 | ||
Python >= 3.8 | ||
|
||
OS: | ||
- Centos 7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: HEU \n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-08-21 18:43+0800\n" | ||
"POT-Creation-Date: 2023-12-18 10:47+0800\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -174,11 +174,11 @@ msgstr "Introduction to Algorithmic Theory" | |
|
||
#: ../../getting_started/algo_choice.rst:61 | ||
msgid "" | ||
"Paillier 算法由 Pascal Paillier 在 1999 年提出,参见:`算法详情 " | ||
"Paillier 算法由 Pascal Paillier 在 1999 年提出,参见:`算法详情(跳转维基百科) " | ||
"<https://en.wikipedia.org/wiki/Paillier_cryptosystem>`__" | ||
msgstr "" | ||
"Paillier's algorithm was proposed by Pascal Paillier in 1999, see: " | ||
"`Algorithm details " | ||
"`Algorithm details (Wikipedia)" | ||
"<https://en.wikipedia.org/wiki/Paillier_cryptosystem>`__." | ||
|
||
#: ../../getting_started/algo_choice.rst:63 | ||
|
@@ -542,14 +542,13 @@ msgid "`pailliercryptolib <https://github.com/intel/pailliercryptolib>`_" | |
msgstr "`pailliercryptolib <https://github.com/intel/pailliercryptolib>`_" | ||
|
||
#: ../../getting_started/algo_choice.rst:198 | ||
#, python-format | ||
msgid "" | ||
"Okamoto-Uchiyama 算法由 Tatsuaki Okamoto 和 Shigenori Uchiyama 在 1998 " | ||
"年提出,参见:`算法详情 " | ||
"年提出,参见:`算法详情(跳转维基百科) " | ||
"<https://en.wikipedia.org/wiki/Okamoto%E2%80%93Uchiyama_cryptosystem>`__" | ||
msgstr "" | ||
"The Okamoto-Uchiyama algorithm was proposed by Tatsuaki Okamoto and " | ||
"Shigenori Uchiyama in 1998. See Algorithm Details " | ||
"Shigenori Uchiyama in 1998. See `Algorithm Details (Wikipedia)" | ||
"<https://en.wikipedia.org/wiki/Okamoto%E2%80%93Uchiyama_cryptosystem>`__" | ||
|
||
#: ../../getting_started/algo_choice.rst:200 | ||
|
@@ -776,23 +775,24 @@ msgid "" | |
"same,这个概率是可以忽略不计的,因此可以认为 :math:`m'` 仍旧是一个大数,当 Alice 解密发现明文不在合理值域范围时,可以拒绝 " | ||
"Bob 的结果,从而阻止 Bob 的攻击。" | ||
msgstr "" | ||
"In some complex privacy-preserving computing scenarios, the interaction in the next " | ||
"round depends on the result of the previous round of interaction. The CCA" | ||
" scenario may be inevitable, but it does not mean that OU cannot be used." | ||
" If Alice has an effective means to block the attack, OU can still be " | ||
"selected. Let's review the attack process again: the plaintext m " | ||
"corresponding to the ciphertext c constructed by Bob, Alice decrypts to " | ||
"get :math:`m'=m \\mod p`. The actual problem is that :math:`m'` might be " | ||
"very large, far exceeding the range that can be expressed by int64 " | ||
"commonly used in business, because it is very difficult for Bob to " | ||
"**construct** a ciphertext slightly larger than p, p is usually very " | ||
"large, when the key size is 2048, p is about 682bits. The probability of " | ||
"Bob blindly guessing a number m satisfying :math:`m' < 2^{64}` is less " | ||
"than :math:`2^{-(682-64)}`, that is, the high 618bits of the m guessed by" | ||
" Bob is exactly the same as p, this probability can be ignored, so it can" | ||
" be considered that :math:`m'` is still a large number. When Alice " | ||
"decrypts and finds that the plaintext is not within the reasonable value " | ||
"range, she can reject Bob's result, thereby preventing Bob's attack." | ||
"In some complex privacy-preserving computing scenarios, the interaction " | ||
"in the next round depends on the result of the previous round of " | ||
"interaction. The CCA scenario may be inevitable, but it does not mean " | ||
"that OU cannot be used. If Alice has an effective means to block the " | ||
"attack, OU can still be selected. Let's review the attack process again: " | ||
"the plaintext m corresponding to the ciphertext c constructed by Bob, " | ||
"Alice decrypts to get :math:`m'=m \\mod p`. The actual problem is that " | ||
":math:`m'` might be very large, far exceeding the range that can be " | ||
"expressed by int64 commonly used in business, because it is very " | ||
"difficult for Bob to **construct** a ciphertext slightly larger than p, p" | ||
" is usually very large, when the key size is 2048, p is about 682bits. " | ||
"The probability of Bob blindly guessing a number m satisfying :math:`m' <" | ||
" 2^{64}` is less than :math:`2^{-(682-64)}`, that is, the high 618bits of" | ||
" the m guessed by Bob is exactly the same as p, this probability can be " | ||
"ignored, so it can be considered that :math:`m'` is still a large number." | ||
" When Alice decrypts and finds that the plaintext is not within the " | ||
"reasonable value range, she can reject Bob's result, thereby preventing " | ||
"Bob's attack." | ||
|
||
#: ../../getting_started/algo_choice.rst:276 | ||
msgid "算法实现: OU" | ||
|
Oops, something went wrong.