sidetree-client 0.1.2

Client library for managing DID operations for Sidetree API services
Documentation
1
2
3
4
5
use base64::{encode_config, URL_SAFE_NO_PAD};

pub fn encode<T: AsRef<[u8]>>(value: T) -> String {
    encode_config(value, URL_SAFE_NO_PAD)
}