Skip to content
Permalink
Branch: master
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
10 lines (7 sloc) 207 Bytes
extern crate bs58;
use std::io::{ self, Read };
fn main() {
let mut input = Vec::<u8>::new();
io::stdin().read_to_end(&mut input).unwrap();
println!("{}", bs58::encode(input).into_string());
}
You can’t perform that action at this time.