basenc 0.2.3

Encoding and decoding hex, base64 and base32 with support for #[no_std].
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

mod scalar;

impl_arch_encode! {
	unsafe fn(bytes: &[u8], base: &Base64, pad: Padding, dest: *mut u8) -> *mut u8;

	(any(target_arch = "x86_64", target_arch = "x86")) => {
		ssse3: "ssse3" is_x86_feature_detected!("ssse3");
	},
}