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

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