endec 0.1.0

A simple command-line tool for encrypting and decrypting strings using AES encryption with a password.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "endec"
version = "0.1.0"
authors = ["Simpson Carlos<simpsoncarlos3@gmail.com>"]
description = "A simple command-line tool for encrypting and decrypting strings using AES encryption with a password."
license = "MIT OR Apache-2.0"
repository = "https://github.com/simpsoncarlos3/endec"
readme = "README.md"
keywords = ["encryption", "decryption", "command-line", "tool", "password"]
categories = ["command-line-utilities", "cryptography"]
edition = "2021"

[dependencies]
rust-crypto = "0.2.36"
hex = "0.4"