base64_simd/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
//! SIMD-accelerated base64 encoding and decoding.
//!
//! # Examples
//!
//! ```
//! # #[cfg(feature = "alloc")]
//! # {
//! let bytes = b"hello world";
//! let base64 = base64_simd::STANDARD;
//!
//! let encoded = base64.encode_to_string(bytes);
//! assert_eq!(encoded, "aGVsbG8gd29ybGQ=");
//!
//! let decoded = base64.decode_to_vec(encoded).unwrap();
//! assert_eq!(decoded, bytes);
//! # }
//! ```
//!
#![doc=vsimd::shared_docs!()]
//
#![cfg_attr(not(any(feature = "std", test)), no_std)]
#![cfg_attr(feature = "unstable", feature(arm_target_feature))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(test, deny(warnings))]
//
#![deny(
missing_debug_implementations,
missing_docs,
clippy::all,
clippy::pedantic,
clippy::cargo,
clippy::missing_inline_in_public_items
)]
#![warn(clippy::todo)]
#![allow(
clippy::inline_always,
clippy::wildcard_imports,
clippy::module_name_repetitions,
clippy::cast_sign_loss,
clippy::cast_possible_truncation,
clippy::cast_lossless,
clippy::cast_possible_wrap,
clippy::items_after_statements,
clippy::match_same_arms,
clippy::verbose_bit_mask
)]
#[cfg(feature = "alloc")]
extern crate alloc;
#[macro_use]
mod error;
pub use self::error::Error;
mod alsw;
mod ascii;
mod check;
mod decode;
mod encode;
mod multiversion;
#[cfg(feature = "alloc")]
mod heap;
mod forgiving;
pub use self::forgiving::*;
pub use outref::{AsOut, Out};
// -----------------------------------------------------------------------------
use crate::decode::decoded_length;
use crate::encode::encoded_length_unchecked;
use vsimd::tools::{slice_mut, slice_parts};
#[cfg(feature = "alloc")]
use alloc::{string::String, vec::Vec};
const STANDARD_CHARSET: &[u8; 64] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
const URL_SAFE_CHARSET: &[u8; 64] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
/// Base64 variant
#[derive(Debug)]
pub struct Base64 {
config: Config,
}
#[derive(Debug, Clone, Copy)]
enum Kind {
Standard,
UrlSafe,
}
#[derive(Debug, Clone, Copy)]
struct Config {
kind: Kind,
extra: Extra,
}
#[derive(Debug, Clone, Copy)]
enum Extra {
Pad,
NoPad,
Forgiving,
}
impl Extra {
/// Whether to add padding when encoding
#[inline(always)]
#[must_use]
const fn padding(self) -> bool {
match self {
Extra::Pad => true,
Extra::NoPad => false,
Extra::Forgiving => true,
}
}
#[inline(always)]
#[must_use]
const fn forgiving(self) -> bool {
match self {
Extra::Pad => false,
Extra::NoPad => false,
Extra::Forgiving => true,
}
}
}
/// Standard charset with padding.
pub const STANDARD: Base64 = Base64 {
config: Config {
kind: Kind::Standard,
extra: Extra::Pad,
},
};
/// URL-Safe charset with padding.
pub const URL_SAFE: Base64 = Base64 {
config: Config {
kind: Kind::UrlSafe,
extra: Extra::Pad,
},
};
/// Standard charset without padding.
pub const STANDARD_NO_PAD: Base64 = Base64 {
config: Config {
kind: Kind::Standard,
extra: Extra::NoPad,
},
};
/// URL-Safe charset without padding.
pub const URL_SAFE_NO_PAD: Base64 = Base64 {
config: Config {
kind: Kind::UrlSafe,
extra: Extra::NoPad,
},
};
const STANDARD_FORGIVING: Base64 = Base64 {
config: Config {
kind: Kind::Standard,
extra: Extra::Forgiving,
},
};
impl Base64 {
/// Returns the character set.
#[inline]
#[must_use]
pub const fn charset(&self) -> &[u8; 64] {
match self.config.kind {
Kind::Standard => STANDARD_CHARSET,
Kind::UrlSafe => URL_SAFE_CHARSET,
}
}
/// Calculates the encoded length.
///
/// # Panics
/// This function will panic if `n > isize::MAX`.
#[inline]
#[must_use]
pub const fn encoded_length(&self, n: usize) -> usize {
assert!(n <= usize::MAX / 2);
encoded_length_unchecked(n, self.config)
}
/// Estimates the decoded length.
///
/// The result is an upper bound which can be used for allocation.
#[inline]
#[must_use]
pub const fn estimated_decoded_length(&self, n: usize) -> usize {
if n % 4 == 0 {
n / 4 * 3
} else {
(n / 4 + 1) * 3
}
}
/// Calculates the decoded length.
///
/// The result is a precise value which can be used for allocation.
///
/// # Errors
/// This function returns `Err` if the content of `data` is partially invalid.
#[inline]
pub fn decoded_length(&self, data: &[u8]) -> Result<usize, Error> {
let (_, m) = decoded_length(data, self.config)?;
Ok(m)
}
/// Checks whether `data` is a base64 string.
///
/// # Errors
/// This function returns `Err` if the content of `data` is invalid.
#[inline]
pub fn check(&self, data: &[u8]) -> Result<(), Error> {
let (n, _) = decoded_length(data, self.config)?;
unsafe { crate::multiversion::check::auto(data.as_ptr(), n, self.config) }
}
/// Encodes bytes to a base64 string.
///
/// # Panics
/// This function will panic if the length of `dst` is not enough.
#[inline]
#[must_use]
pub fn encode<'d>(&self, src: &[u8], mut dst: Out<'d, [u8]>) -> &'d mut [u8] {
unsafe {
let m = encoded_length_unchecked(src.len(), self.config);
assert!(dst.len() >= m);
let (src, len) = slice_parts(src);
let dst = dst.as_mut_ptr();
self::multiversion::encode::auto(src, len, dst, self.config);
slice_mut(dst, m)
}
}
/// Encodes bytes to a base64 string and returns [`&mut str`](str).
///
/// # Panics
/// This function will panic if the length of `dst` is not enough.
#[inline]
#[must_use]
pub fn encode_as_str<'d>(&self, src: &[u8], dst: Out<'d, [u8]>) -> &'d mut str {
let ans = self.encode(src, dst);
unsafe { core::str::from_utf8_unchecked_mut(ans) }
}
/// Decodes a base64 string to bytes.
///
/// # Errors
/// This function returns `Err` if the content of `src` is invalid.
///
/// # Panics
/// This function will panic if the length of `dst` is not enough.
#[inline]
pub fn decode<'d>(&self, src: &[u8], mut dst: Out<'d, [u8]>) -> Result<&'d mut [u8], Error> {
unsafe {
let (n, m) = decoded_length(src, self.config)?;
assert!(dst.len() >= m);
let src = src.as_ptr();
let dst = dst.as_mut_ptr();
self::multiversion::decode::auto(src, dst, n, self.config)?;
Ok(slice_mut(dst, m))
}
}
/// Decodes a base64 string to bytes and writes inplace.
///
/// # Errors
/// This function returns `Err` if the content of `data` is invalid.
#[inline]
pub fn decode_inplace<'d>(&self, data: &'d mut [u8]) -> Result<&'d mut [u8], Error> {
unsafe {
let (n, m) = decoded_length(data, self.config)?;
let dst: *mut u8 = data.as_mut_ptr();
let src: *const u8 = dst;
self::multiversion::decode::auto(src, dst, n, self.config)?;
Ok(slice_mut(dst, m))
}
}
/// Encodes bytes to a base64 string and returns a specified type.
#[inline]
#[must_use]
pub fn encode_type<T: FromBase64Encode>(&self, data: impl AsRef<[u8]>) -> T {
T::from_base64_encode(self, data.as_ref())
}
/// Decodes a base64 string to bytes and returns a specified type.
///
/// # Errors
/// This function returns `Err` if the content of `data` is invalid.
#[inline]
pub fn decode_type<T: FromBase64Decode>(&self, data: impl AsRef<[u8]>) -> Result<T, Error> {
T::from_base64_decode(self, data.as_ref())
}
/// Encodes bytes to a base64 string and appends to a specified type.
#[inline]
pub fn encode_append<T: AppendBase64Encode>(&self, src: impl AsRef<[u8]>, dst: &mut T) {
T::append_base64_encode(self, src.as_ref(), dst);
}
/// Decodes a base64 string to bytes and appends to a specified type.
///
/// # Errors
/// This function returns `Err` if the content of `src` is invalid.
#[inline]
pub fn decode_append<T: AppendBase64Decode>(&self, src: impl AsRef<[u8]>, dst: &mut T) -> Result<(), Error> {
T::append_base64_decode(self, src.as_ref(), dst)
}
/// Encodes bytes to a base64 string.
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
#[cfg(feature = "alloc")]
#[inline]
#[must_use]
pub fn encode_to_string(&self, data: impl AsRef<[u8]>) -> String {
self.encode_type(data)
}
/// Decodes a base64 string to bytes.
///
/// # Errors
/// This function returns `Err` if the content of `data` is invalid.
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
#[cfg(feature = "alloc")]
#[inline]
pub fn decode_to_vec(&self, data: impl AsRef<[u8]>) -> Result<Vec<u8>, Error> {
self.decode_type(data)
}
}
/// Types that can represent a base64 string.
pub trait FromBase64Encode: Sized {
/// Encodes bytes to a base64 string and returns the self type.
fn from_base64_encode(base64: &Base64, data: &[u8]) -> Self;
}
/// Types that can be decoded from a base64 string.
pub trait FromBase64Decode: Sized {
/// Decodes a base64 string to bytes and returns the self type.
///
/// # Errors
/// This function returns `Err` if the content of `data` is invalid.
fn from_base64_decode(base64: &Base64, data: &[u8]) -> Result<Self, Error>;
}
/// Types that can append a base64 string.
pub trait AppendBase64Encode: FromBase64Encode {
/// Encodes bytes to a base64 string and appends into the self type.
fn append_base64_encode(base64: &Base64, src: &[u8], dst: &mut Self);
}
/// Types that can append bytes decoded from from a base64 string.
pub trait AppendBase64Decode: FromBase64Decode {
/// Decodes a base64 string to bytes and appends to the self type.
///
/// # Errors
/// This function returns `Err` if the content of `src` is invalid.
fn append_base64_decode(base64: &Base64, src: &[u8], dst: &mut Self) -> Result<(), Error>;
}