tlv_parser 0.0.2

BER-TLV parsing & emitting library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# tlv-parser
[![Build Status](https://travis-ci.org/lexxvir/tlv-parser.svg?branch=master)](https://travis-ci.org/lexxvir/tlv-parser.svg)

Library for parsing BER-TLV

[Documentation](https://lexxvir.github.io/tlv-parser/tlv_parser/index.html)

Library is early development stage and supports parsing from `Vec<u8>` and emitting `Vec<u8>`.

For usage see 'examples/print.rs'.

```
$ echo "7003820151" | cargo run --example print
     Running `target/debug/examples/print`
	 tag=70
	   tag=82,     len=1,    data=51 Q
```