Crates.io | mcf |
lib.rs | mcf |
version | 0.2.0 |
created_at | 2025-06-03 02:27:51.06651+00 |
updated_at | 2025-09-07 20:48:31.557116+00 |
description | Pure Rust implementation of the Modular Crypt Format (MCF) which is used to store password hashes in the form `${id}$...` |
homepage | |
repository | https://github.com/RustCrypto/formats |
max_upload_size | |
id | 1698592 |
size | 37,046 |
Pure Rust implementation of the Modular Crypt Format (MCF), which is used to store password hashes.
Modular Crypt Format is the name for a bespoke set of password hash formats associated with the
POSIX crypt(3)
function which take the form ${id}$...
, where {id}
is a short numeric or
lower case alphanumeric algorithm identifier optionally containing a hyphen character (-
),
followed by $
as a delimiter, further followed by an algorithm-specific serialization of a
password hash, typically using a variant (often an algorithm-specific variant) of Base64.
This algorithm-specific serialization contains one or more fields ${first}[${second}]...
, where
each field only uses characters in the regexp range [A-Za-z0-9./+=,\-]
. Usually, these include
a salt and the output of a password hashing function.
Note that MCF has no official specification describing it, and no central registry of identifiers exists, nor are there more specific rules for the format than outlined above. MCF is more of an ad hoc idea of how to serialize password hashes rather than a standard.
This crate provides types for working with Modular Crypt Format in as generic a manner as possible.
For more information and history on MCF, see the PassLib documentation.
$6$rounds=100000$exn6tVc2j/MZD8uG$BI1Xh8qQSK9J4m14uwy7abn.ctj/TIAzlaVCto0MQrOFIeTXsc1iwzH16XEWo/a7c7Y9eVJvufVzYAs4EsPOy0
MSRV increases are not considered breaking changes and can happen in patch releases.
The crate MSRV accounts for all supported targets and crate feature combinations, excluding explicitly unstable features.
Licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.