decodedLenUpperBound
Returns the maximum possible decoded size for a given input length after skipping ignored characters.
Function parameters
Parameters
- b64_len:usize
(best-effort) constant time hexadecimal encoding and decoding.
Types
Error sets in this namespace
Error Sets
Source
Implementation
pub fn decodedLenUpperBound(b64_len: usize) usize {
return b64_len / 3 * 4;
}