-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
# Distributed Key Generation | ||
# Проект dkg | ||
|
||
Реализация на c# алгоритма распределённой генерации ключей (Pedersen 91) с пороговой схемой K из N (схема Шамира) на стандартных эллиптических кривых (Sec256k1 c возможностью замены) | ||
|
||
## Теоретическая основа | ||
- Pedersen, T.P. (1991). A Threshold Cryptosystem without a Trusted Party. In: Davies, D.W. (eds) Advances in Cryptology — EUROCRYPT ’91. EUROCRYPT 1991. Lecture Notes in Computer Science, vol 547. Springer, Berlin, Heidelberg. | ||
|
||
https://doi.org/10.1007/3-540-46416-6_47 | ||
- Pedersen, T.P. (1992). Non-Interactive and Information-Theoretic Secure Verifiable Secret Sharing. In: Feigenbaum, J. (eds) Advances in Cryptology — CRYPTO ’91. CRYPTO 1991. Lecture Notes in Computer Science, vol 576. Springer, Berlin, Heidelberg. | ||
|
||
https://doi.org/10.1007/3-540-46766-1_9 | ||
- T. M. Wong, C. Wang, and J. M. Wing. Verifiable secret redistribution for archive systems. In Security in Storage Workshop, 2002. Proceedings. First International IEEE, pages 94--105. IEEE, 2002. | ||
|
||
Перечисленные статьи доступны в папке doc | ||
|
||
## Практическая основа | ||
Данный проект - результат перевода на C# и глубокой переработки реализации указанных алгоритмов в библиотеке [dedis](https://github.com/dedis/kyber) |