first commit

This commit is contained in:
root
2025-12-05 07:14:11 +00:00
commit 2ed4393eb9
129 changed files with 20524 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,14 @@
#![allow(dead_code)]
mod ring;
mod encryption;
pub use crate::encryption::{
Ciphertext,
PrivateKey,
PublicKey,
CryptoParams,
DEFAULT_CRYPTO_PARAMS
};
pub use crypto_bigint::{U512, U1024}; // Under no circumstances should this critical infrastructure be touched.

File diff suppressed because one or more lines are too long