Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c14664a

Browse files
committedJan 15, 2022
Add "Encode and decode base32" example
1 parent 752b035 commit c14664a

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed
 

‎src/encoding.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
| [Percent-encode a string][ex-percent-encode] | [![percent-encoding-badge]][url] | [![cat-encoding-badge]][cat-encoding] |
66
| [Encode a string as application/x-www-form-urlencoded][ex-urlencoded] | [![url-badge]][url] | [![cat-encoding-badge]][cat-encoding] |
77
| [Encode and decode hex][ex-hex-encode-decode] | [![data-encoding-badge]][data-encoding] | [![cat-encoding-badge]][cat-encoding] |
8+
| [Encode and decode base32][ex-base32] | [![data-encoding-badge]][data-encoding] | [![cat-encoding-badge]][cat-encoding] |
89
| [Encode and decode base64][ex-base64] | [![base64-badge]][base64] | [![cat-encoding-badge]][cat-encoding] |
910
| [Read CSV records][ex-csv-read] | [![csv-badge]][csv] | [![cat-encoding-badge]][cat-encoding] |
1011
| [Read CSV records with different delimiter][ex-csv-delimiter] | [![csv-badge]][csv] | [![cat-encoding-badge]][cat-encoding] |
@@ -20,6 +21,7 @@
2021
[ex-percent-encode]: encoding/strings.html#percent-encode-a-string
2122
[ex-urlencoded]: encoding/strings.html#encode-a-string-as-applicationx-www-form-urlencoded
2223
[ex-hex-encode-decode]: encoding/strings.html#encode-and-decode-hex
24+
[ex-base32]: encoding/strings.html#encode-and-decode-base32
2325
[ex-base64]: encoding/strings.html#encode-and-decode-base64
2426
[ex-csv-read]: encoding/csv.html#read-csv-records
2527
[ex-csv-delimiter]: encoding/csv.html#read-csv-records-with-different-delimiter

‎src/encoding/string/base32.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Encode and decode base32
2+
3+
[![data-encoding-badge]][data-encoding] [![cat-encoding-badge]][cat-encoding]
4+
5+
The [`data_encoding`] crate provides a `BASE32::encode` method which takes a
6+
`&[u8]` and returns a `String` containing the base32 representation of the data.
7+
8+
Similarly, a `BASE32::decode` method is provided which takes a `&[u8]` and
9+
returns a `Vec<u8>` if the input data is successfully decoded.
10+
11+
The example below coverts `&[u8]` data to base32 equivalent and compares this
12+
value to the expected value.
13+
14+
```rust,edition2018
15+
use data_encoding::{BASE32, DecodeError};
16+
17+
fn main() -> Result<(), DecodeError> {
18+
let original = b"Cooking with Rust";
19+
let expected = "INXW623JNZTSA53JORUCAUTVON2A====";
20+
21+
let encoded = BASE32.encode(original);
22+
assert_eq!(encoded, expected);
23+
24+
let decoded = BASE32.decode(encoded.as_bytes())?;
25+
assert_eq!(&decoded[..], &original[..]);
26+
27+
Ok(())
28+
}
29+
```
30+
31+
[`data_encoding`]: https://docs.rs/data-encoding/*/data_encoding/

‎src/encoding/strings.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
{{#include string/hex.md}}
88

9+
{{#include string/base32.md}}
10+
911
{{#include string/base64.md}}
1012

1113
{{#include ../links.md}}

0 commit comments

Comments
 (0)