This program was written to demonstrate how to correctly encrypt and decrypt files, using PBKDF2-SHA1, AES, and HMAC-MD5.
Why I love NumPy
How to find palindromes in Python
In school this week, the idea of finding palindromes in Python came up, as a homework assignment in a class I took last semester. A friend asked me for some guidance in how to do this in Python, so I showed him my “simple” solution:
#!/usr/bin/env python3
from …