initial commit

This commit is contained in:
vimwitch
2024-10-10 10:47:49 -07:00
commit 2f16906d82
5 changed files with 23 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
/target
.DS_Store
*.tmp
*.swp

7
Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "labrador"
version = "0.0.0"

8
Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "labrador"
version = "0.0.0"
edition = "2021"
[lib]
[dependencies]

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# LaBRADOR
WIP implementation of [LaBRADOR](https://eprint.iacr.org/2022/1341.pdf).

0
src/lib.rs Normal file
View File