finally fixed all indents in SSH ref

This commit is contained in:
2022-03-07 03:42:09 -05:00
parent 990ad2908f
commit 1c70a0d0d4
20 changed files with 420 additions and 435 deletions

View File

@@ -1,15 +1,16 @@
==== Public
===== Structure
Public keys are stored in the following structure:
.Key Structure
[source,text,linenums]
----
0.0 uint32 allocator for 0.0.0 (4 bytes)
0.0.0 Public key key type string (ASCII bytes)
0.0.0 Public key key type string (ASCII bytes)
1.0 uint32 allocator for 1.0.0 (4 bytes)
1.0.0 Public key payload (bytes)
1.0.0 Public key payload (bytes)
----
===== Example
@@ -24,7 +25,7 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEQ4i8lzaE3WaFcTESK/8hLJg7umsWLE6XzRH3PDnZew
[source,text,linenums]
----
0.0 0000000b (11)
0.0.0 7373682d65643235353139 ("ssh-ed25519")
0.0.0 7373682d65643235353139 ("ssh-ed25519")
1.0 00000020 (32)
1.0.0 44388bc973684dd66857131122bff212c983bba6b162c4e97cd11f73c39d97b0 (bytes)
1.0.0 44388bc973684dd66857131122bff212c983bba6b162c4e97cd11f73c39d97b0 (bytes)
----