wdg-base32 0.3.22

The Base32 Data Encoding
Documentation
# rust-base32


[![Build Status](https://travis-ci.org/WatchDG/rust-base32.svg?branch=master)](https://travis-ci.org/WatchDG/rust-base32)
[![Build status](https://ci.appveyor.com/api/projects/status/miiyoafeh6ycj824/branch/master?svg=true)](https://ci.appveyor.com/project/WatchDG/rust-base32/branch/master)
[![Docs.rs](https://docs.rs/wdg-base32/badge.svg)](https://docs.rs/wdg-base32)
[![Crates.io](https://img.shields.io/crates/v/wdg-base32.svg)](https://crates.io/crates/wdg-base32)
[![License](https://img.shields.io/crates/l/wdg-base32.svg)](https://github.com/WatchDG/rust-base32/blob/master/LICENSE)

# Install

Cargo.toml
``` Rust
[dependencies]
wdg-base32="*"
```

# How to use?


```
    B32::<type>::encode(data);
    B32::<type>::decode(data);
```

# Examples


``` Rust
extern crate wdg_base32;
use wdg_base32::{B32,B32Encode,B32Decode};

fn main(){

    // u8
    println!("{}",B32::<String>::encode(5u8));

    // u16
    println!("{}",B32::<String>::encode(5u16));

}
```