mirror of
https://github.com/RustCrypto/password-hashes.git
synced 2026-01-25 04:06:23 +00:00
Releases the following: - `argon2` v0.6.0-rc.6 - `balloon-hash` v0.5.0-rc.4 - `bcrypt-pbkdf` v0.11.0-rc.3 - `pbkdf2` v0.13.0-rc.8 - `scrypt` v0.12.0-rc.9 - `sha-crypt` v0.6.0-rc.3 - `yescrypt` v0.1.0-rc.4
607 lines
14 KiB
TOML
607 lines
14 KiB
TOML
# This file is automatically @generated by Cargo.
|
|
# It is not intended for manual editing.
|
|
version = 4
|
|
|
|
[[package]]
|
|
name = "argon2"
|
|
version = "0.6.0-rc.6"
|
|
dependencies = [
|
|
"base64ct",
|
|
"blake2",
|
|
"cpufeatures",
|
|
"hex-literal",
|
|
"kdf",
|
|
"password-hash",
|
|
"rayon",
|
|
"zeroize",
|
|
]
|
|
|
|
[[package]]
|
|
name = "autocfg"
|
|
version = "1.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
|
[[package]]
|
|
name = "balloon-hash"
|
|
version = "0.5.0-rc.4"
|
|
dependencies = [
|
|
"crypto-bigint",
|
|
"digest",
|
|
"hex-literal",
|
|
"kdf",
|
|
"password-hash",
|
|
"rayon",
|
|
"sha2",
|
|
"zeroize",
|
|
]
|
|
|
|
[[package]]
|
|
name = "base64ct"
|
|
version = "1.8.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
|
[[package]]
|
|
name = "bcrypt-pbkdf"
|
|
version = "0.11.0-rc.3"
|
|
dependencies = [
|
|
"blowfish",
|
|
"hex-literal",
|
|
"pbkdf2",
|
|
"sha2",
|
|
"zeroize",
|
|
]
|
|
|
|
[[package]]
|
|
name = "belt-block"
|
|
version = "0.1.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d9aa1eef3994e2ccd304a78fe3fea4a73e5792007f85f09b79bb82143ca5f82b"
|
|
|
|
[[package]]
|
|
name = "belt-hash"
|
|
version = "0.2.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c4d0d625c21e8e5ca317b31568d257c4af4e93fd5a756d0301f5d517951ea6fd"
|
|
dependencies = [
|
|
"belt-block",
|
|
"digest",
|
|
]
|
|
|
|
[[package]]
|
|
name = "blake2"
|
|
version = "0.11.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "679065eb2b85a078ace42411e657bef3a6afe93a40d1b9cb04e39ca303cc3f36"
|
|
dependencies = [
|
|
"digest",
|
|
]
|
|
|
|
[[package]]
|
|
name = "block-buffer"
|
|
version = "0.11.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f"
|
|
dependencies = [
|
|
"hybrid-array",
|
|
]
|
|
|
|
[[package]]
|
|
name = "blowfish"
|
|
version = "0.10.0-rc.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8ecfb049d43f70154a8a232d709710dc7350bda1fa7d0e539a252f0938adad8e"
|
|
dependencies = [
|
|
"byteorder",
|
|
"cipher",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bumpalo"
|
|
version = "3.19.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
|
|
[[package]]
|
|
name = "byteorder"
|
|
version = "1.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
|
[[package]]
|
|
name = "cfg-if"
|
|
version = "1.0.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
|
[[package]]
|
|
name = "cipher"
|
|
version = "0.5.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167"
|
|
dependencies = [
|
|
"block-buffer",
|
|
"crypto-common",
|
|
"inout",
|
|
]
|
|
|
|
[[package]]
|
|
name = "cmov"
|
|
version = "0.5.0-pre.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5417da527aa9bf6a1e10a781231effd1edd3ee82f27d5f8529ac9b279babce96"
|
|
|
|
[[package]]
|
|
name = "const-oid"
|
|
version = "0.10.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
|
|
[[package]]
|
|
name = "cpufeatures"
|
|
version = "0.2.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
dependencies = [
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "crossbeam-deque"
|
|
version = "0.8.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
dependencies = [
|
|
"crossbeam-epoch",
|
|
"crossbeam-utils",
|
|
]
|
|
|
|
[[package]]
|
|
name = "crossbeam-epoch"
|
|
version = "0.9.18"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
dependencies = [
|
|
"crossbeam-utils",
|
|
]
|
|
|
|
[[package]]
|
|
name = "crossbeam-utils"
|
|
version = "0.8.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
|
[[package]]
|
|
name = "crypto-bigint"
|
|
version = "0.7.0-rc.18"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "37387ceb32048ff590f2cbd24d8b05fffe63c3f69a5cfa089d4f722ca4385a19"
|
|
dependencies = [
|
|
"ctutils",
|
|
"hybrid-array",
|
|
"num-traits",
|
|
]
|
|
|
|
[[package]]
|
|
name = "crypto-common"
|
|
version = "0.2.0-rc.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "41b8986f836d4aeb30ccf4c9d3bd562fd716074cfd7fc4a2948359fbd21ed809"
|
|
dependencies = [
|
|
"hybrid-array",
|
|
]
|
|
|
|
[[package]]
|
|
name = "ctutils"
|
|
version = "0.3.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "758e5ed90be3c8abff7f9a6f37ab7f6d8c59c2210d448b81f3f508134aec84e4"
|
|
dependencies = [
|
|
"cmov",
|
|
]
|
|
|
|
[[package]]
|
|
name = "digest"
|
|
version = "0.11.0-rc.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ebf9423bafb058e4142194330c52273c343f8a5beb7176d052f0e73b17dd35b9"
|
|
dependencies = [
|
|
"block-buffer",
|
|
"const-oid",
|
|
"crypto-common",
|
|
"subtle",
|
|
]
|
|
|
|
[[package]]
|
|
name = "either"
|
|
version = "1.15.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
|
|
[[package]]
|
|
name = "getrandom"
|
|
version = "0.4.0-rc.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3b99f0d993a2b9b97b9a201193aa8ad21305cde06a3be9a7e1f8f4201e5cc27e"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"js-sys",
|
|
"libc",
|
|
"r-efi",
|
|
"wasip2",
|
|
"wasm-bindgen",
|
|
]
|
|
|
|
[[package]]
|
|
name = "hex-literal"
|
|
version = "1.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1"
|
|
|
|
[[package]]
|
|
name = "hmac"
|
|
version = "0.13.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f1c597ac7d6cc8143e30e83ef70915e7f883b18d8bec2e2b2bce47f5bbb06d57"
|
|
dependencies = [
|
|
"digest",
|
|
]
|
|
|
|
[[package]]
|
|
name = "hybrid-array"
|
|
version = "0.4.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0"
|
|
dependencies = [
|
|
"typenum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "inout"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
|
|
dependencies = [
|
|
"hybrid-array",
|
|
]
|
|
|
|
[[package]]
|
|
name = "js-sys"
|
|
version = "0.3.85"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
dependencies = [
|
|
"once_cell",
|
|
"wasm-bindgen",
|
|
]
|
|
|
|
[[package]]
|
|
name = "kdf"
|
|
version = "0.1.0-pre.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4852c654c9650d06a4293146ead04bedcf29861dc0de1115ca1492b7a27c50aa"
|
|
|
|
[[package]]
|
|
name = "libc"
|
|
version = "0.2.179"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
|
|
|
|
[[package]]
|
|
name = "mcf"
|
|
version = "0.6.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "423dc04b93e27ab6399fd28615305105c1621cebb78cbe24f64cb942d440733a"
|
|
dependencies = [
|
|
"base64ct",
|
|
]
|
|
|
|
[[package]]
|
|
name = "num-traits"
|
|
version = "0.2.19"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
dependencies = [
|
|
"autocfg",
|
|
]
|
|
|
|
[[package]]
|
|
name = "once_cell"
|
|
version = "1.21.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
|
[[package]]
|
|
name = "password-auth"
|
|
version = "1.1.0-rc.1"
|
|
dependencies = [
|
|
"argon2",
|
|
"getrandom",
|
|
"password-hash",
|
|
"pbkdf2",
|
|
"scrypt",
|
|
]
|
|
|
|
[[package]]
|
|
name = "password-hash"
|
|
version = "0.6.0-rc.10"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "80b7795f59c339f0458e0213b31e01f45de7f061bdfc52857386f457d94c2cb8"
|
|
dependencies = [
|
|
"getrandom",
|
|
"phc",
|
|
"rand_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "pbkdf2"
|
|
version = "0.13.0-rc.8"
|
|
dependencies = [
|
|
"belt-hash",
|
|
"digest",
|
|
"hex-literal",
|
|
"hmac",
|
|
"kdf",
|
|
"mcf",
|
|
"password-hash",
|
|
"sha1",
|
|
"sha2",
|
|
"streebog",
|
|
]
|
|
|
|
[[package]]
|
|
name = "phc"
|
|
version = "0.6.0-rc.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "71d390c5fe8d102c2c18ff39f1e72b9ad5996de282c2d831b0312f56910f5508"
|
|
dependencies = [
|
|
"base64ct",
|
|
"getrandom",
|
|
"rand_core",
|
|
"subtle",
|
|
]
|
|
|
|
[[package]]
|
|
name = "proc-macro2"
|
|
version = "1.0.105"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
dependencies = [
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "quote"
|
|
version = "1.0.43"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
]
|
|
|
|
[[package]]
|
|
name = "r-efi"
|
|
version = "5.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
|
|
[[package]]
|
|
name = "rand_core"
|
|
version = "0.10.0-rc-5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "05a06e03bd1f2ae861ab9e7498b6c64ed3dadb9ce175c0464a2522a5f23c0045"
|
|
|
|
[[package]]
|
|
name = "rayon"
|
|
version = "1.11.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
dependencies = [
|
|
"either",
|
|
"rayon-core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rayon-core"
|
|
version = "1.13.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
dependencies = [
|
|
"crossbeam-deque",
|
|
"crossbeam-utils",
|
|
]
|
|
|
|
[[package]]
|
|
name = "readme"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"argon2",
|
|
"password-hash",
|
|
"pbkdf2",
|
|
"scrypt",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rustversion"
|
|
version = "1.0.22"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
|
[[package]]
|
|
name = "salsa20"
|
|
version = "0.11.0-rc.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "06522a356e94a02a1f83d699a1d84dd2ba613fbb20b211153bd5a75de9ccdc92"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"cipher",
|
|
]
|
|
|
|
[[package]]
|
|
name = "scrypt"
|
|
version = "0.12.0-rc.9"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"kdf",
|
|
"mcf",
|
|
"password-hash",
|
|
"pbkdf2",
|
|
"rayon",
|
|
"salsa20",
|
|
"sha2",
|
|
"subtle",
|
|
]
|
|
|
|
[[package]]
|
|
name = "sha-crypt"
|
|
version = "0.6.0-rc.3"
|
|
dependencies = [
|
|
"base64ct",
|
|
"mcf",
|
|
"password-hash",
|
|
"sha2",
|
|
"subtle",
|
|
]
|
|
|
|
[[package]]
|
|
name = "sha1"
|
|
version = "0.11.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "aa1ae819b9870cadc959a052363de870944a1646932d274a4e270f64bf79e5ef"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"cpufeatures",
|
|
"digest",
|
|
]
|
|
|
|
[[package]]
|
|
name = "sha2"
|
|
version = "0.11.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"cpufeatures",
|
|
"digest",
|
|
]
|
|
|
|
[[package]]
|
|
name = "streebog"
|
|
version = "0.11.0-rc.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4b24f3259853f4857159f8dfefc4e3500b37cf91e497944b99d9434371d4db05"
|
|
dependencies = [
|
|
"digest",
|
|
]
|
|
|
|
[[package]]
|
|
name = "subtle"
|
|
version = "2.6.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
|
[[package]]
|
|
name = "syn"
|
|
version = "2.0.114"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "typenum"
|
|
version = "1.19.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
|
|
[[package]]
|
|
name = "unicode-ident"
|
|
version = "1.0.22"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
|
|
[[package]]
|
|
name = "wasip2"
|
|
version = "1.0.2+wasi-0.2.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
dependencies = [
|
|
"wit-bindgen",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen"
|
|
version = "0.2.108"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"once_cell",
|
|
"rustversion",
|
|
"wasm-bindgen-macro",
|
|
"wasm-bindgen-shared",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen-macro"
|
|
version = "0.2.108"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
dependencies = [
|
|
"quote",
|
|
"wasm-bindgen-macro-support",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen-macro-support"
|
|
version = "0.2.108"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
dependencies = [
|
|
"bumpalo",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
"wasm-bindgen-shared",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen-shared"
|
|
version = "0.2.108"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
dependencies = [
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wit-bindgen"
|
|
version = "0.51.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
|
|
[[package]]
|
|
name = "yescrypt"
|
|
version = "0.1.0-rc.4"
|
|
dependencies = [
|
|
"hex-literal",
|
|
"hmac",
|
|
"kdf",
|
|
"mcf",
|
|
"password-hash",
|
|
"pbkdf2",
|
|
"salsa20",
|
|
"sha2",
|
|
"subtle",
|
|
]
|
|
|
|
[[package]]
|
|
name = "zeroize"
|
|
version = "1.8.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|