(input: T)
| 5 | |
| 6 | #[inline] |
| 7 | pub(crate) fn b64_encode<T: AsRef<[u8]>>(input: T) -> String { |
| 8 | URL_SAFE_NO_PAD.encode(input) |
| 9 | } |
| 10 | |
| 11 | #[inline] |
| 12 | pub(crate) fn b64_decode<T: AsRef<[u8]>>(input: T) -> Result<Vec<u8>> { |
no outgoing calls
no test coverage detected