Skip to content

Instantly share code, notes, and snippets.

# The following is adapted from https://github.com/reswitched/loaders/blob/master/nxo64.py
#
# ===========================================================================================
#
# Copyright 2017 Reswitched Team
#
# Permission to use, copy, modify, and/or distribute this software for any purpose with or
# without fee is hereby granted, provided that the above copyright notice and this permission
# notice appear in all copies.
#
###############################################
# TX SX OS unpacker - by hexkyz and naehrwert #
###############################################
from Crypto.Cipher import AES
from Crypto.Util import Counter
import os
import struct
"""
@jkereako
jkereako / symmetric-difference.m
Last active March 24, 2021 02:27
Finds the symmetric difference between 2 sets.
//
// symmetric-difference.m
// RosettaCodeData
//
// Created by Ingy döt Net on 4/2/14.
// https://github.com/acmeism/RosettaCodeData/blob/master/Task/Symmetric-difference/Objective-C/symmetric-difference.m
//
#import <Foundation/Foundation.h>