Crates.io | okid |
lib.rs | okid |
version | 0.4.2 |
source | src |
created_at | 2024-10-03 16:35:46.352409 |
updated_at | 2024-11-10 12:17:26.870161 |
description | A library for gereating double clickable ids |
homepage | |
repository | |
max_upload_size | |
id | 1395368 |
size | 780,051 |
okid
is a library for generating double clickable representations of various types of data,
such as sha1
hashes, uuid
s and more.
use sha1::Digest as sha1digest;
let hasher = sha1::Sha1::new();
let binary_id = okid::OkId::from(hasher);
use sha2::Digest;
let mut hasher = sha2::Sha256::new();
hasher.update(b"hello world");
let binary_id = okid::OkId::from(hasher);
The resulting strings look like this:
2ː00b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9
first character of the string is the type of the binary data
in this case 2 means sha256
the rest of the string is the hexadecimal representation of the binary data