stylistic tweaks
This commit is contained in:
parent
168d256fea
commit
b5fd3c6008
1 changed files with 6 additions and 6 deletions
12
README.md
12
README.md
|
@ -1,27 +1,27 @@
|
||||||
== Overview
|
== Overview ==
|
||||||
|
|
||||||
POC to compile a data set into a modified radix tree,
|
POC to compile a data set into a modified radix tree,
|
||||||
and applying huffman encoding.
|
and applying huffman encoding.
|
||||||
|
|
||||||
|
|
||||||
== Usage
|
== Usage ==
|
||||||
|
|
||||||
Take in an v1 x509 certificate, and extract the
|
Take in an v1 x509 certificate, and extract the
|
||||||
content sets, output them to newline delimited output
|
content sets, output them to newline delimited output
|
||||||
|
|
||||||
$> ruby ./thing.rb d this-cert.pem > this-cert.list
|
`$> ruby ./thing.rb d this-cert.pem > this-cert.list`
|
||||||
|
|
||||||
Process this output to generate the compiled output
|
Process this output to generate the compiled output
|
||||||
|
|
||||||
$> ruby ./thing.rb c this-cert.list
|
`$> ruby ./thing.rb c this-cert.list`
|
||||||
|
|
||||||
This would produce a file named 'this-cert.bin'
|
This would produce a file named 'this-cert.bin'
|
||||||
Then, the unpack the binary with:
|
Then, the unpack the binary with:
|
||||||
|
|
||||||
$> ./unpack this-cert.bin
|
`$> ./unpack this-cert.bin`
|
||||||
|
|
||||||
|
|
||||||
== Code compiles
|
== Code compiles ==
|
||||||
|
|
||||||
To compile the 'unpack' command, just run `make`.
|
To compile the 'unpack' command, just run `make`.
|
||||||
( this requires make, gcc, and zlib-devel)
|
( this requires make, gcc, and zlib-devel)
|
||||||
|
|
Loading…
Reference in a new issue