mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
25 lines
473 B
C++
25 lines
473 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "X509.h"
|
|
|
|
namespace plugin {
|
|
namespace Bro_X509 {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new ::file_analysis::Component("X509", ::file_analysis::X509::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Bro::X509";
|
|
config.description = "X509 analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|