new functionalities (hashes, ids_flag)

pull/4/head
Sascha Rommelfangen 2017-04-28 09:58:58 +02:00
parent 24eadaa54d
commit a9785670a9
1 changed files with 6 additions and 0 deletions

6
hashmarker.py Executable file
View File

@ -0,0 +1,6 @@
#!/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"""