Commit b41f6809 authored by canterburym's avatar canterburym Committed by canterburym
Browse files

Fixing issues

parent 351ffd6d
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -1368,12 +1368,12 @@ TLS13PSKHashAlgorithm ::= ENUMERATED
}


- RFC8446, clause 4.4.2: Certificates.
-- RFC8446, clause 4.4.2: Certificates.

TLS13CertificateType ::= ENUMERATED
{
    X509(0),
    RawPublicKey(2)
    x509(0),
    rawPublicKey(2)
}

TLS13CerificateEntry ::= SEQUENCE
@@ -1410,7 +1410,7 @@ TLS13PSKIdentity ::= SEQUENCE
TLS13OfferedPSK ::= SEQUENCE
{
    identity [1] TLS13PSKIdentity,
    binder   [2] OCTET STRING (SIZE(32..255)),
    binder   [2] OCTET STRING (SIZE(32..255))
}

-- Actual PSK, either explicitly provisioned or derived from
@@ -1468,14 +1468,14 @@ TLS13EarlySecretInfo ::= SEQUENCE
{
    earlySecretValue [1] OCTET STRING (SIZE(1..65535)),
    transcriptHash   [2] OCTET STRING (SIZE(1..65535))
    - Hash(ClientHello)
    -- Hash(ClientHello)
}

TLS13HandshakeSecretInfo ::= SEQUENCE
{
    handshakeSecretValue [1] OCTET STRING (SIZE(1..65535)),
    transcriptHash       [2] OCTET STRING (SIZE(1..65535))
    - Hash(ClientHello..ServerHello)
    -- Hash(ClientHello..ServerHello)
}

-- RFC8446, clause 7.1
@@ -1483,9 +1483,9 @@ TLS13MasterSecretInfo ::= SEQUENCE
{
    masterSecretValue [1] OCTET STRING (SIZE(1..65535)),
    transcriptHashS   [2] OCTET STRING (SIZE(1..65535)),
    - Hash(ClientHello..server Finished)
    -- Hash(ClientHello..server Finished)
    transcriptHashC   [3] OCTET STRING (SIZE(1..65535))
    - Hash(ClientHello..client Finished)
    -- Hash(ClientHello..client Finished)
}