mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
age: Adjust scrypt::Identity::set_max_work_factor
docs
They are now consistent with `scrypt::Recipient::set_work_factor`.
This commit is contained in:
parent
e84159365d
commit
67a539791b
1 changed files with 3 additions and 3 deletions
|
@ -196,13 +196,13 @@ impl Identity {
|
|||
}
|
||||
}
|
||||
|
||||
/// Sets the maximum accepted scrypt work factor to `2^max_work_factor`.
|
||||
/// Sets the maximum accepted scrypt work factor to `N = 2^max_log_n`.
|
||||
///
|
||||
/// This method must be called before [`Self::unwrap_stanza`] to have an effect.
|
||||
///
|
||||
/// [`Self::unwrap_stanza`]: crate::Identity::unwrap_stanza
|
||||
pub fn set_max_work_factor(&mut self, max_work_factor: u8) {
|
||||
self.max_work_factor = max_work_factor;
|
||||
pub fn set_max_work_factor(&mut self, max_log_n: u8) {
|
||||
self.max_work_factor = max_log_n;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue