forked from p15670423/monkey
cc: fix typo in pycrypto noqa comment
This commit is contained in:
parent
e4bcf2ef1c
commit
a7b79d6d03
|
@ -1,9 +1,10 @@
|
|||
import base64
|
||||
import os
|
||||
|
||||
# PyCrypto is deprecated, but we use pycryptodome, which uses the exact same imports but it maintained
|
||||
from Crypto import Random # noqa: DOU133 # nosec: B413
|
||||
from Crypto.Cipher import AES # noqa: DOU133 # nosec: B413
|
||||
# PyCrypto is deprecated, but we use pycryptodome, which uses the exact same imports but
|
||||
# is maintained.
|
||||
from Crypto import Random # noqa: DUO133 # nosec: B413
|
||||
from Crypto.Cipher import AES # noqa: DUO133 # nosec: B413
|
||||
|
||||
from monkey_island.cc.consts import MONKEY_ISLAND_ABS_PATH
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@ for more details.
|
|||
|
||||
import argparse
|
||||
|
||||
# PyCrypto is deprecated, but we use pycryptodome, which uses the exact same imports but
|
||||
# is maintained.
|
||||
from Crypto.Hash import SHA3_512 # noqa: DUO133 # nosec: B413
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue