summaryrefslogtreecommitdiffstats
path: root/src/base64.rs
blob: cc0f787558be1717f52731f039035bd5b97d9c10 (plain) (blame)
1
2
3
4
5
use serialize::base64::{ToBase64, STANDARD};

pub fn to_base64 (bytes: &[u8]) -> String {
    return bytes.to_base64(STANDARD);
}