polycrypt 0.1.1

Simple symmetric authenticated encryption in memory. Nothing fancy here.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "polycrypt"
version = "0.1.1"
edition = "2021"
description = "Simple symmetric authenticated encryption in memory. Nothing fancy here."
readme = "README.md"
license = "Unlicense"

[dependencies]
aead = { version = "0.5", features = ["std"] }
base64 = "0.22"
chacha20poly1305 = "0.10"
hmac = "0.12"
sha2 = "0.10"

[dev-dependencies]
hex = "0.4.3"