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:
Johanna Amann 2023-03-15 09:19:26 +01:00
parent b56b856da9
commit b8d658ac77
4 changed files with 13 additions and 11 deletions

View file

@ -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 "========";
}