Skip to content

zotcrypto/encrypto_sha256_rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Visitor Badge Crates Badge Crates Downloads

About Project

Easy to use Sha256 hash for rust, compatible with all other ZotCrypto projects!

Icon Item
🥳 Upcoming
⚖️ License
📝 ChangeLog

Usage (rust)

Implementation

Cargo

encrypto_sha256 = latest

Sha256

Documentation will be published soon at our website

You can try:

        let msg = b"abc";
        let encoded_hex = ZotSha256::encode_to_hex(msg);
        let encoded_b64 = ZotSha256::encode_to_base64(msg);
        let encoded_bytes = ZotSha256::encode_to_bytes(msg);


        assert_eq!(encoded_bytes.clone(), hex::decode(encoded_hex).unwrap());
        assert_eq!(encoded_bytes.clone(), base64::decode(encoded_b64).unwrap());

Please raise an issue here if the documentation isn't uploaded in long time

Upcoming

Supported Languages Status
Flutter Priority: Less
Java Priority: Very high
JavaScript Priority: High

License

Click here

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages