This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************************************************** | |
* aes-min.c | |
* | |
* Minimal byte-oriented AES-128 encryption/decryption implementation suitable | |
* for small microprocessors. | |
****************************************************************************/ | |
/***************************************************************************** | |
* Includes | |
****************************************************************************/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Movt's tend to be discontinuous in the latest arm compilers. This script puts them | |
back together. Based upon https://github.com/xyzz/vita-ida-physdump/blob/master/vita_phys_dump.py | |
Revision history | |
========================= | |
v1.0 - initial version | |
v1.1 - Added this comment years after I started using this, not sure the changes - Trunk / Hypoxic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hypoxic Capture via TDS 3034B | |
# Requires pyvisa and NI-VISA, not tested much, but figured I'd share as it would be helpful for others | |
import pyvisa | |
import numpy as np | |
import time as time | |
class Tek: | |
def __init__(self, source = "CH1"): | |
self.timeout = 5.0 |