mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
SSL/TLS CertificateRequest message: Address review feedback
Minor stylistic changes; see https://github.com/zeek/zeek/pull/2855 for details
This commit is contained in:
parent
b56b856da9
commit
b8d658ac77
4 changed files with 13 additions and 11 deletions
|
@ -13,10 +13,10 @@ event ssl_certificate_request(c: connection, is_client: bool, certificate_types:
|
|||
{
|
||||
print certificate_types;
|
||||
print supported_signature_algorithms;
|
||||
for ( i in certificate_authorities )
|
||||
for ( _, ca in certificate_authorities )
|
||||
{
|
||||
print certificate_authorities[i];
|
||||
print parse_distinguished_name(certificate_authorities[i]);
|
||||
print ca;
|
||||
print parse_distinguished_name(ca);
|
||||
}
|
||||
print "========";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue