Logo floats right
authorRick van Rein <rick@openfortress.nl>
Mon, 22 Feb 2016 10:36:23 +0000 (10:36 +0000)
committerRick van Rein <rick@openfortress.nl>
Mon, 22 Feb 2016 10:36:23 +0000 (10:36 +0000)
INSTALL.MD
LICENSE.MD
PACK-SYNTAX.MD
README.MD
USING.MD
WALK-SYNTAX.MD
WHEN-SIZE-MATTERS.MD

index 9dc14b0..f41c344 100644 (file)
@@ -1,6 +1,6 @@
 # Installing Quick DER
 
-![Quick DER logo](quick-der-logo.png)
+<img alt="Quick DER logo" src="quick-der-logo.png" style="float: right"/>
 
     ./configure
     make
index c64d529..c6f3f30 100644 (file)
@@ -1,6 +1,6 @@
 # Quick DER licensing terms
 
-![Quick DER logo](quick-der-logo.png)
+<img alt="Quick DER logo" src="quick-der-logo.png" style="float: right"/>
 
 Copyright (c) 2016, Rick van Rein, OpenFortress.nl
 All rights reserved.
index 42feba2..4714a52 100644 (file)
@@ -1,6 +1,6 @@
 # Syntax for Packing Paths
 
-![Quick DER logo](quick-der-logo.png)
+<img alt="Quick DER logo" src="quick-der-logo.png" style="float: right"/>
 
 This specification describes the path format used by `der_unpack()` and
 `der_pack()` to pass through a DER binary and map it to (or from) an array
index 2c20548..a571ff1 100644 (file)
--- a/README.MD
+++ b/README.MD
@@ -1,6 +1,6 @@
 # Quick (and Easy) DER, a Library for parsing ASN.1
 
-![Quick DER logo](quick-der-logo.png)
+<img alt="Quick DER logo" src="quick-der-logo.png" style="float: right"/>
 
 > *Quick DER, or if you like, "Quick and Easy DER", is a library for handling
 > DER, which is a widely used binary representation of ASN.1 syntax in binary
index dc7b599..0a7b93d 100644 (file)
--- a/USING.MD
+++ b/USING.MD
@@ -1,6 +1,6 @@
 # Quick DER parsing support
 
-![Quick DER logo](quick-der-logo.png)
+<img alt="Quick DER logo" src="quick-der-logo.png" style="float: right"/>
 
 > *Quick DER parsing aims to get you started with the parsing of DER (and most
 > BER) encoded ASN.1 data really quickly.  It also aims to makes quick parsers,
index dbfafef..2e51ab1 100644 (file)
@@ -1,6 +1,6 @@
 # Syntax for Walking Paths
 
-![Quick DER logo](quick-der-logo.png)
+<img alt="Quick DER logo" src="quick-der-logo.png" style="float: right"/>
 
 This specification describes how to make `der_walk()` traverse the path in DER
 binaries that you intend it to take.
@@ -88,18 +88,6 @@ length of 9, and you can continue to process it:
 
     printf ("Found \"%.*s\"\n", crs.derlen, crs.derptr);
 
-## There is more
-
-Also have a look at the individual steps that can be taken with
-`der_enter()` and `der_skip()`.  And take a look at
-`der_iterate_first()` and `der_iterate_next()` if you need iterators.
-
-Where `der_walk()` is ideally suited to retrieve a single bit of information
-from the repository, the `der_unpack()` routine can unpack a complete DER
-structure (only deferring dynamically-sized parts to later calls).  The latter
-also has a reverse routine `der_pack()`.  You will want to read the
-[PACK SYNTAX](PACK-SYNTAX.MD) for the walking paths used with those routines.
-
 
 ## Optionals, Choices and the ANYs
 
@@ -116,3 +104,16 @@ there will be no validation of that particular tag.
 The forms `ANY` and `ANY DEFINED BY` receive the same treatment as `CHOICE`,
 but can be declare with a separate symbol `DER_WALK_ANY`.
 
+
+## There is more
+
+Also have a look at the individual steps that can be taken with
+`der_enter()` and `der_skip()`.  And take a look at
+`der_iterate_first()` and `der_iterate_next()` if you need iterators.
+
+Where `der_walk()` is ideally suited to retrieve a single bit of information
+from the repository, the `der_unpack()` routine can unpack a complete DER
+structure (only deferring dynamically-sized parts to later calls).  The latter
+also has a reverse routine `der_pack()`.  You will want to read the
+[PACK SYNTAX](PACK-SYNTAX.MD) for the walking paths used with those routines.
+
index fab9b68..f7f76b5 100644 (file)
@@ -1,6 +1,6 @@
 # Quick DER sizes: Sometimes small is bettar
 
-![Quick DER logo](quick-der-logo.png)
+<img alt="Quick DER logo" src="quick-der-logo.png" style="float: right"/>
 
 > *This is a decription of the sizes of structures used by Quick DER.  As this
 > demonstrates, the library is quite useful for embedded purposes.*