rage/age-core
Jack Grigg 8da15148fc age-core: Reject invalid last lines in AgeStanza bodies
The length of a Base64 encoding can never be 1 mod 4, because that
only provides six of the eight bits necessary for encoding a byte.
Previously we checked that every line was valid Base64 (which works
because all lines except the last are 64 characters, which exactly
encodes 48 bytes).

In 0.7.0 we improved the parser efficiency by only running the Base64
decoder lazily. We replaced the per-line check with an `is_base64_char`
check, but forgot to reject the invalid subset of last-line lengths.
2021-12-23 20:57:47 +00:00
..
src age-core: Reject invalid last lines in AgeStanza bodies 2021-12-23 20:57:47 +00:00
Cargo.toml v0.7.0 2021-10-18 17:52:37 +01:00
CHANGELOG.md v0.7.0 2021-10-18 17:52:37 +01:00
README.md Update READMEs 2020-07-29 02:06:18 +12:00

age-core Rust library

This crate contains common structs and functions used across the age crates.

You are probably looking for the age crate itself. You should only need to directly depend on this crate if you are implementing a custom recipient type.

License

Licensed under either of

at your option.

Contribution

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.