liboqs/docs/algorithms/kem_ledacrypt.md
Douglas Stebila a6f426044b
Sync with PQClean and update hashing API (#616)
* Sync with PQClean commit 6de728361e33ad3a5a6997e0896ff9fe8e44a999

* Revise SHA-2 API to match PQClean

* Revise SHA-3 API to match PQClean

* Fix compiler warning

* Fix typo

[skip ci]

* Fix typo

[skip ci]
2020-02-16 15:47:49 -05:00

33 lines
1.8 KiB
Markdown

liboqs algorithm datasheet: `kem_ledacrypt`
===========================================
Summary
-------
- **Name**: LEDAcrypt
- **Algorithm type**: key encapsulation mechanism
- **Main cryptographic assumption**: quasi-cyclic low-density parity check codes
- **Scheme authors**: Marco Baldi, Alessandro Barenghi, Franco Chiaraluce, Gerardo Pelosi, Paolo Santini
- **Authors' website**: https://www.ledacrypt.org
- **Added to liboqs by**: Douglas Stebila
- **NIST Round 2 submission**
Parameter sets
--------------
| Parameter set | Security model | Claimed NIST security level | Public key size (bytes) | Secret key size (bytes) | Ciphertext size (bytes) | Shared secret size (bytes) |
|-------------------|:--------------:|:---------------------------:|:-----------------------:|:-----------------------:|:-----------------------:|:--------------------------:|
| LEDAcryptKEM-LT12 | IND-CCA | 1 | 6520 | 50 | 6544 | 32 |
| LEDAcryptKEM-LT32 | IND-CCA | 3 | 12032 | 66 | 12064 | 48 |
| LEDAcryptKEM-LT52 | IND-CCA | 5 | 19040 | 82 | 19080 | 64 |
Implementation
--------------
- **Source of implementation:** https://github.com/PQClean/PQClean/ based on https://github.com/LEDAcrypt/LEDAcrypt
- **Implementation version:** https://github.com/PQClean/PQClean/commit/6de728361e33ad3a5a6997e0896ff9fe8e44a999
- **License:** Public domain
- **Language:** C
- **Constant-time:** No
- **Architectures supported in liboqs master branch**: x86, x64