# 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 = "cryptocol" version = "0.8.5-fix.1" authors = ["PARK Youngho"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A cryptographic library that includes big number arithmatic operation, hash algorithms, symmetric-key cryptographic encryption/decryption algorithms, asymmetric-key (public-key) cryptographic encryption/decryption algorithms, pseudo random number generators, etc. Hash algorithms includes MD4, MD5, SHA224, SHA256, SHA384, SHA512, SHA3, etc. Symmetric key encryption algorithms include DES, AES, etc. Public key encryption algrorithms include RSA, ECC, etc." readme = "README.md" keywords = [ "number", "hash", "sha2", "sha512", "random", ] categories = [ "algorithms", "cryptography", "mathematics", ] license = "MIT OR Apache-2.0" [profile.dev] incremental = false [lib] name = "cryptocol" path = "src/lib.rs" [[example]] name = "biguint_examples" path = "examples/biguint_examples.rs" [[example]] name = "hash_app" path = "examples/hash_app.rs" [[example]] name = "hash_examples" path = "examples/hash_examples.rs" [[example]] name = "md4_app" path = "examples/md4_app.rs" [[example]] name = "md5_app" path = "examples/md5_app.rs" [[example]] name = "performance_test_biguint" path = "examples/performance_test_biguint.rs" [[example]] name = "random_examples" path = "examples/random_examples.rs" [[example]] name = "sha1_app" path = "examples/sha1_app.rs" [[example]] name = "sha2_256_app" path = "examples/sha2_256_app.rs" [[example]] name = "sha2_512_224_app" path = "examples/sha2_512_224_app.rs" [[example]] name = "sha2_512_app" path = "examples/sha2_512_app.rs" [[example]] name = "small_uint_examples" path = "examples/small_uint_examples.rs" [[example]] name = "unions_examples" path = "examples/unions_examples.rs" [dependencies]