simplestcrypt 0.1.4

Simplest way to perform a symmetric encryption, using a preshared key. Very small wrapper around aes-siv crate, with randomly generated nonces, for anything more advanced, use aes-siv instead
Documentation
[dependencies.aes-siv]
version = "0.6"

[dependencies.bincode]
version = "1.3"

[dependencies.rand]
version = "0.8"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[[example]]
name = "simple"
path = "examples/simple.rs"

[lib]
name = "simplestcrypt"
path = "src/lib.rs"

[package]
authors = ["Kristoffer Ödmark <kristoffer.odmark90@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Simplest way to perform a symmetric encryption, using a preshared key. Very small wrapper around aes-siv crate, with randomly generated nonces, for anything more advanced, use aes-siv instead"
edition = "2021"
license = "MIT"
name = "simplestcrypt"
readme = "README.md"
repository = "https://github.com/TotalKrill/simplestcrypt"
version = "0.1.4"