Add very basic ocsp stapling support.

This only allows access to the ocsp stapling response data. No verification
or anything else at the moment.
This commit is contained in:
Bernhard Amann 2014-04-24 12:36:05 -07:00
parent 9b7eb293f1
commit c24629abf4
7 changed files with 41 additions and 2 deletions

View file

@ -0,0 +1,7 @@
# @TEST-EXEC: bro -C -r $TRACES/tls/ocsp-stapling.trace %INPUT
# @TEST-EXEC: btest-diff .stdout
event ssl_stapled_ocsp(c: connection, is_orig: bool, response: string)
{
print is_orig, |response|;
}