| Crates.io | otplus-core |
| lib.rs | otplus-core |
| version | 0.0.3 |
| created_at | 2025-09-05 04:03:53.758893+00 |
| updated_at | 2025-09-05 08:13:30.182921+00 |
| description | Core cryptographic library for OTPlus - A secure one-time password and key derivation system |
| homepage | https://github.com/ledunguit/otplus-core |
| repository | https://github.com/ledunguit/otplus-core |
| max_upload_size | |
| id | 1825074 |
| size | 60,290 |
OTPlus Core is a library for creating and managing OTPlus keys for encrypting and decrypting data.
use otplus_core::cipher::RootKey;
let root_key = RootKey::default();
use otplus_core::cipher::DerivedKey;
let derived_key = DerivedKey::new("password", vec![0; 16], 32);
MIT