Encodes the given bytes into base32. The function converts binary data into base32 format using the standard alphabet. Output is padded with '=' characters to make the length a multiple of 8. # Arguments `data` - A byte slice to encode # Returns A `Vec ` containing the base32-encoded data with padding. # Examples ``` use the_algorithms_rust::ciphers::base32_encode; assert_eq!(base32_enco
(data: &[u8])
source not stored for this graph (policy: none)