to_base64

Function to_base64 

Source
pub fn to_base64(data: &[u8]) -> String
Expand description

Convert bytes to base64 string.

ยงExample

use quantacore::utils::to_base64;

let b64 = to_base64(b"Hello");
assert_eq!(b64, "SGVsbG8=");