Struct password_hash::Value[][src]

pub struct Value<'a>(_);
Expand description

Algorithm parameter value string.

Parameter values are defined in the PHC string format specification.

Constraints

  • ASCII-encoded string consisting of the characters [a-zA-Z0-9/+.-] (lowercase letters, digits, and the minus sign)
  • Minimum length: 0 (i.e. empty values are allowed)
  • Maximum length: 64 ASCII characters (i.e. 64-bytes)

Additional Notes

The PHC spec allows for algorithm-defined maximum lengths for parameter values, however this library defines a Value::MAX_LENGTH of 64 ASCII characters.

Implementations

Maximum length of an Value - 64 ASCII characters (i.e. 64-bytes).

This value is selected to match the maximum length of a Salt as this library internally uses this type to represent salts.

Parse a Value from the provided str, validating it according to the PHC string format’s rules.

Attempt to decode a B64-encoded Value, writing the decoded result into the provided buffer, and returning a slice of the buffer containing the decoded result on success.

Examples of “B64”-encoded parameters in practice are the keyid and data parameters used by the Argon2 Encoding as described in the PHC string format specification.

Borrow this value as a str.

Borrow this value as bytes.

Get the length of this value in ASCII characters.

Is this value empty?

Attempt to parse this Value as a PHC-encoded decimal (i.e. integer).

Decimal values are integers which follow the rules given in the “Decimal Encoding” section of the PHC string format specification.

The decimal encoding rules are as follows:

For an integer value x, its decimal encoding consist in the following:

  • If x < 0, then its decimal encoding is the minus sign - followed by the decimal encoding of -x.
  • If x = 0, then its decimal encoding is the single character 0.
  • If x > 0, then its decimal encoding is the smallest sequence of ASCII digits that matches its value (i.e. there is no leading zero).

Thus, a value is a valid decimal for an integer x if and only if all of the following hold true:

  • The first character is either a - sign, or an ASCII digit.
  • All characters other than the first are ASCII digits.
  • If the first character is - sign, then there is at least another character, and the second character is not a 0.
  • If the string consists in more than one character, then the first one cannot be a 0.

Note: this implementation does not support negative decimals despite them being allowed per the spec above. If you need to parse a negative number, please parse it from the string representation directly e.g. value.as_str().parse::<i32>()

Does this value parse successfully as a decimal?

Trait Implementations

Performs the conversion.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.