Skip to content

Instantly share code, notes, and snippets.

View Coronon's full-sized avatar
🧙‍♂️

Rubin Raithel Coronon

🧙‍♂️
View GitHub Profile
@Coronon
Coronon / AesCrypt.py
Created June 8, 2018 08:02 — forked from pfote/AesCrypt.py
AES256 with PKCS5 padding
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from Crypto.Cipher import AES
import base64
import random
import hashlib
import os
class AesCrypt256: