mirror of https://github.com/MISP/mail_to_misp
7 lines
161 B
Python
7 lines
161 B
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
MD5_REGEX = r"""\b([a-f0-9]{32})\b"""
|
||
|
SHA1_REGEX = r"""\b([a-f0-9]{40})\b"""
|
||
|
SHA256_REGEX = r"""\b([a-f0-9]{64})\b"""
|