Skip to content

Instantly share code, notes, and snippets.

View JoogsWasTaken's full-sized avatar

Maximilian Jugl JoogsWasTaken

View GitHub Profile
@JoogsWasTaken
JoogsWasTaken / collect.py
Created January 7, 2021 09:38
Python scripts for pulling public keys from Steam's login mechanism and ingesting them into a SQLite database
# usage: python collect.py <username> <folder to save response to>
import requests
import sys
import os
import time
def main():
ts = int(time.time())
pk_dir = sys.argv[2]
@JoogsWasTaken
JoogsWasTaken / feal4.cpp
Created June 22, 2020 17:39
Implementation of the FEAL-4 round function
#include <iostream>
#include <cstdint>
#include <array>
#include <string>
#include <sstream>
#include <iomanip>
#define UINT8_BITLEN 8
#define UINT32_BITLEN 32