mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
7 lines
174 B
Text
7 lines
174 B
Text
##! Perform MD5 and SHA1 hashing on all files.
|
|
|
|
event file_new(f: fa_file)
|
|
{
|
|
Files::add_analyzer(f, Files::ANALYZER_MD5);
|
|
Files::add_analyzer(f, Files::ANALYZER_SHA1);
|
|
}
|