mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
Parse pre-shared-key extension.
No documentation yet...
This commit is contained in:
parent
5ba46eaa71
commit
e85a016521
8 changed files with 162 additions and 3 deletions
|
@ -4170,6 +4170,10 @@ export {
|
|||
SignatureAlgorithm: count; ##< Signature algorithm number
|
||||
};
|
||||
|
||||
type PSKIdentity: record {
|
||||
identity: string; ##< PSK identity
|
||||
obfuscated_ticket_age: count;
|
||||
};
|
||||
|
||||
## Number of non-DTLS frames that can occur in a DTLS connection before
|
||||
## parsing of the connection is suspended.
|
||||
|
@ -4191,6 +4195,8 @@ module GLOBAL;
|
|||
## directly and then remove this alias.
|
||||
type signature_and_hashalgorithm_vec: vector of SSL::SignatureAndHashAlgorithm;
|
||||
|
||||
type psk_identity_vec: vector of SSL::PSKIdentity;
|
||||
|
||||
module X509;
|
||||
export {
|
||||
type Certificate: record {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue