Skip to content

Instantly share code, notes, and snippets.

View ynx0's full-sized avatar
⚗️
the proof is in the poly

Yaseen ynx0

⚗️
the proof is in the poly
View GitHub Profile
@ynx0
ynx0 / index.html
Created December 21, 2017 03:00
socket.io problem
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Socket.io</title>
<script src="/jquery/dist/jquery.min.js"></script>
<script src="/socket.io-client/dist/socket.io.js"></script>
</head>
<body>
@ynx0
ynx0 / AesCrypt.py
Created June 26, 2017 21:21 — 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: