Easy to use Sha256 hash for rust, compatible with all other ZotCrypto projects!
| Icon | Item | |:----:|:-----------------------------:| | 🥳 | Upcoming | | ⚖️ | License | | 📝 | ChangeLog |
encrypto_aes =
latest
```rust
let msg = b"abc";
let encodedhex = ZotSha256::encodetohex(msg);
let encodedb64 = ZotSha256::encodetobase64(msg);
let encodedbytes = ZotSha256::encodeto_bytes(msg);
assert_eq!(encoded_bytes.clone(), hex::decode(encoded_hex).unwrap());
assert_eq!(encoded_bytes.clone(), base64::decode(encoded_b64).unwrap());
```
| Supported Languages | Status | |---------------------|---------------------| | Flutter | Priority: Less | | Java | Priority: Very high | | JavaScript | Priority: High |