Update tls.md

Fix tls.md to use OCTET STRING instead of BIT STRING for elements of SignedKey
This commit is contained in:
Roman
2021-07-30 17:57:52 +03:00
committed by GitHub
parent 98e0ca0e54
commit f4ed51d5f5

View File

@@ -80,8 +80,8 @@ The public host key and the signature are ANS.1-encoded into the SignedKey data
```asn1
SignedKey ::= SEQUENCE {
publicKey BIT STRING,
signature BIT STRING
publicKey OCTET STRING,
signature OCTET STRING
}
```