picoctf/243/solve.py

6 lines
125 B
Python
Raw Normal View History

2022-09-23 15:42:43 +02:00
#!/usr/bin/env python3
import hashlib
str = 'homeless shelters'
result = hashlib.md5(str.encode())
print(result.hexdigest())