This commit is contained in:
Dario 2025-02-20 10:17:00 +01:00 committed by GitHub
commit 16157c3220
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -517,11 +517,11 @@ impl<W: AsyncWrite> AsyncWrite for ArmoredWriter<W> {
BASE64_STANDARD
.encode_slice(&byte_buf, &mut encoded_buf[..],)
.expect("byte_buf.len() <= BASE64_CHUNK_SIZE_BYTES"),
ARMORED_COLUMNS_PER_LINE
BASE64_CHUNK_SIZE_COLUMNS
);
*encoded_line = Some(EncodedBytes {
offset: 0,
end: ARMORED_COLUMNS_PER_LINE,
end: BASE64_CHUNK_SIZE_COLUMNS,
});
byte_buf.clear();
}