Richard Elkins
Richard Elkins
or simply generate a bash shell script that does the equivalent. This is a common technique used by Python packages.
Except for the /usr/*.dtb files, all of the other files are readable scripts and configuration files except for 3 DEB files in the tree top: - xinput-calibrator_0.7.5-1_armhf.deb - xserver-xorg-input-evdev_1%3a2.10.3-1_armhf.deb -...
My DEBs have been updated by the normal `apt dist-upgrade` process and I see no ill effects.
Agreed. I can also disassemble Java class files, Python pyc files, and compiled object files for forensic purposes. Viewing the original source shows documentation at a detailed level as well...
I ran `dtc` on bcm2710-rpi-3-b.dtb on an RPi3. The first 5 messages are warnings about directories that do not exist (E.g. /memory and /soc): : Warning (unit_address_vs_reg): Node /memory has...
@barentsen The scipy folks said version "1.5". I did this: ```pip3 install git+"https://github.com/scipy/scipy"``` ``` Collecting git+https://github.com/scipy/scipy Cloning https://github.com/scipy/scipy to /tmp/pip-req-build-xphlmq9t Running command git clone -q https://github.com/scipy/scipy /tmp/pip-req-build-xphlmq9t Running command git...
@adiroiban This works now: ``` from Crypto.Util.number import long_to_bytes number = 256 s = long_to_bytes(number) print("long_to_bytes({}) = {}".format(number, s)) ``` Your size_in_bits() issue was called out separately in #407.
@dpawson If nothing is outstanding, can this 2017 issue be closed?
This is possible in setup.py: ``` try: import pycrypto ### Issue warning or error message. ### Could have a dialog whether or not to continue. except: pass ``` I see...
@josephernest I believe that a stream cipher would provide the solution you are looking for. You can pick one from the pycryptodome documentation of stream ciphers. E.g. https://pycryptodome.readthedocs.io/en/latest/src/cipher/chacha20_poly1305.html for cryptography...