Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsRex committed Jun 4, 2022
0 parents commit 2211acd
Show file tree
Hide file tree
Showing 6 changed files with 520 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
/data
374 changes: 374 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
cargo-features = ["strip"]

[package]
name = "vp-crypt"
version = "0.1.0"
edition = "2021"
description = "VandalProof encryption/decryption for an ArctixFox firmware"
authors = ["MG_REX"]

[dependencies]
rand = "0.4"
aes = "0.8.1"
cbc = { version = "0.1.2", features = ["alloc"] }
clap = { version = "3.1.18", features = ["derive"] }

[profile.release]
symbols = "strip"
Loading

0 comments on commit 2211acd

Please sign in to comment.