xecrypt 0.1.0

Xbox 360 cryptographic primitives (AES, SHA-1, RSA signature verification)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "xecrypt"
version = "0.1.0"
authors = ["Lander Brandt <landerbrandt@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Xbox 360 cryptographic primitives (AES, SHA-1, RSA signature verification)"
readme = "README.md"
keywords = [
    "xbox360",
    "crypto",
    "aes",
    "rsa",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/landaire/acceleration"

[features]
serde = ["dep:serde"]

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

[dependencies.aes]
version = "0.8"

[dependencies.bitflags]
version = "2.5"

[dependencies.byteorder]
version = "1.4"

[dependencies.cbc]
version = "0.1"

[dependencies.rsa]
version = "0.9.6"
features = ["sha1"]

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

[dependencies.sha1]
version = "0.10.6"
features = ["oid"]

[dependencies.thiserror]
version = "1.0"