mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
age: Return label set from Recipient::wrap_file_key
This commit is contained in:
parent
8091015514
commit
8f1d6af149
13 changed files with 251 additions and 37 deletions
|
@ -7,6 +7,8 @@ and this project adheres to Rust's notion of
|
|||
to 1.0.0 are beta releases.
|
||||
|
||||
## [Unreleased]
|
||||
### Added
|
||||
- `age_core::format::is_arbitrary_string`
|
||||
|
||||
## [0.10.0] - 2024-02-04
|
||||
### Added
|
||||
|
|
|
@ -90,6 +90,16 @@ impl From<AgeStanza<'_>> for Stanza {
|
|||
}
|
||||
}
|
||||
|
||||
/// Checks whether the string is a valid age "arbitrary string" (`1*VCHAR` in ABNF).
|
||||
pub fn is_arbitrary_string<S: AsRef<str>>(s: &S) -> bool {
|
||||
let s = s.as_ref();
|
||||
!s.is_empty()
|
||||
&& s.chars().all(|c| match u8::try_from(c) {
|
||||
Ok(u) => (33..=126).contains(&u),
|
||||
Err(_) => false,
|
||||
})
|
||||
}
|
||||
|
||||
/// Creates a random recipient stanza that exercises the joint in the age v1 format.
|
||||
///
|
||||
/// This function is guaranteed to return a valid stanza, but makes no other guarantees
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue