7 releases
0.1.6 | Jun 8, 2024 |
---|---|
0.1.5 | Jun 8, 2024 |
0.1.4 | May 19, 2024 |
#921 in Cryptography
20KB
260 lines
cuid2-timeless
An unstable, barely tested, probably giving wrong output and might panic out of nowhere CUID2 implementation in Rust. Built for learning more rust and I don't know how to test it.
[!CAUTION] This library is slower than cuid-rust by a whole lot!
benchmark cuid2-timeless cuid2 (cuid-rust) single cuid generation 53.180 µs 2.8162 µs 10,000 cuids generation 553.52 ms 28.900 ms This library is for learning purposes. Please don't use this library in production! Use cuid-rust instead!
Installation
cargo add cuid2_timeless --features sha3
(or you can use sha2 if you wanted to)
Usage
Either use the cuid2_timeless::cuid_wrapper()
and call it again to get ID or get some customization with cuid2_timeless::Cuid
use cuid2_timeless;
let mut cuid = cuid2_timeless::cuid_wrapper();
println!("{}", cuid().unwrap());
or some customization
use cuid2_timeless;
use rand::{self, Rng};
let mut cuid = cuid2_timeless::Cuid::new(
Box::new( // A randomizer function
|| {
rand::thread_rng().gen()
}
),
Box::new( // Your very own counter function
|mut i| {
Box::new(move || {
i += 1;
i
})
}
),
24, // Length
Box::new(cuid2_timeless::utils::create_fingerprint) // And a fingerprint creator function (im too lazy to implement)
);
cuid.generate(None).unwrap();
or verify if it actually is CUID
use cuid2_timeless;
println!("{}", cuid2_timeless::is_cuid("f9ovgvsnly7h6khwt4nx08kom".to_string(), None, None));
Features
regex
is a feature for either remove or addregex
crate to the module. Turning this off will remove theis_cuid
function (enabled by default)random
is a feature for either remove or addrand
crate to the module. Turning this off will removeDefault
trait fromCuid
(enabled by default)sha2
is a feature for either remove or addsha2
crate to the module. Turning this off will remove SHA2 hashing algorithm, but turning this feature on will usessha2
for hashing (cannot enabled withsha3
present, compiling will error ifsha2
andsha3
is enabled, not enabled by default)sha3
is a feature for either remove or addsha3
crate to the module. Turning this off will remove SHA3 hashing algorithm, but turning this feature on will usessha3
for hashing (cannot enabled withsha2
present, compiling will error ifsha2
andsha3
is enabled, enabled by default)
Dependencies
~4–13MB
~85K SLoC