You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/index.md
+39-6Lines changed: 39 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,24 +5,57 @@ title: Home
5
5
6
6
# PostQuantum-Feldman-VSS
7
7
8
-
{% include_relative ../README.md %}
8
+
A post-quantum secure implementation of Feldman's Verifiable Secret Sharing scheme.
9
+
10
+
## Overview
11
+
12
+
This project provides a robust implementation of Feldman's VSS (Verifiable Secret Sharing) scheme with post-quantum security considerations. It enables secure sharing and reconstruction of secrets across multiple parties.
13
+
14
+
## Features
15
+
16
+
- Post-quantum secure cryptographic primitives
17
+
- Threshold-based secret sharing
18
+
- Verification mechanisms for shares
19
+
- Compatible with modern Python environments
20
+
21
+
## Installation
22
+
23
+
```bash
24
+
pip install feldman-vss
25
+
```
26
+
27
+
## Quick Start
28
+
29
+
```python
30
+
from feldman_vss import create_shares, reconstruct_secret
0 commit comments