mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #17107 from miri64/treewide/fix/pycryptodome
pycrypto: use pycryptodome instead
This commit is contained in:
commit
c3226ba865
2
dist/tools/mcuboot/imgtool.md
vendored
2
dist/tools/mcuboot/imgtool.md
vendored
@ -6,7 +6,7 @@ operations that are necessary to manage keys and sign images.
|
||||
This program is written for Python3, and has several dependencies on
|
||||
Python libraries. These can be installed using 'pip3' manually:
|
||||
|
||||
pip3 install --user pycrypto
|
||||
pip3 install --user pycryptodome
|
||||
pip3 install --user pyasn1
|
||||
pip3 install --user ecdsa
|
||||
|
||||
|
2
dist/tools/packer/scripts/riot.sh
vendored
2
dist/tools/packer/scripts/riot.sh
vendored
@ -17,7 +17,7 @@ sudo -u /${SSH_USERNAME} pip3 install --user iotlabwscli iotlabsshcli iotlabcli
|
||||
|
||||
# Python tools
|
||||
sudo -u /${SSH_USERNAME} pip3 install --user aiocoap pyocd paho-mqtt pyserial flake8 tox \
|
||||
pyasn1 ecdsa pexpect pycrypto ed25519 cbor cryptography \
|
||||
pyasn1 ecdsa pexpect pycryptodome ed25519 cbor cryptography \
|
||||
scapy codespell protobuf jupyterlab \
|
||||
#
|
||||
|
||||
|
2
dist/tools/vagrant/freebsd/Vagrantfile
vendored
2
dist/tools/vagrant/freebsd/Vagrantfile
vendored
@ -1,7 +1,7 @@
|
||||
$init_riot = <<-INIT_RIOT
|
||||
# vim for xxd
|
||||
pkg install -y bash git gmake gcc cmake afl afl++ \
|
||||
python3 py37-pip py37-scipy py37-pycrypto py37-cython py37-scapy \
|
||||
python3 py38-pip py38-scipy py38-pycryptodome py38-cython py38-scapy \
|
||||
vim
|
||||
chsh -s /usr/local/bin/bash vagrant
|
||||
if ! [ -d /home/vagrant/RIOT ]; then
|
||||
|
@ -15,14 +15,14 @@ system.
|
||||
Before running the test, be sure that you meet the following Python3
|
||||
dependencies:
|
||||
|
||||
- pycrypto
|
||||
- pycryptodome
|
||||
- ecdsa
|
||||
- pyasn1
|
||||
|
||||
If you don't have one of those, you can install them with the commands:
|
||||
|
||||
```console
|
||||
pip3 install --user pycrypto ecdsa pyasn1
|
||||
pip3 install --user pycryptodome ecdsa pyasn1
|
||||
```
|
||||
|
||||
This test can be called using `make mcuboot` to produce such ELF file,
|
||||
|
Loading…
Reference in New Issue
Block a user