pub fn from_base64(s: &str) -> Result<Vec<u8>, DecodeError>
Convert base64 string to bytes.
use quantacore::utils::from_base64; let bytes = from_base64("SGVsbG8=").unwrap(); assert_eq!(bytes, b"Hello");