私は単純な RSA Python スクリプトを持っています:
import Crypto.PublicKey.RSA
import rsakey
from Crypto.PublicKey import pubkey
# Some global stuff
impl = Crypto.PublicKey.RSA.RSAImplementation(use_fast_math = True)
RSAObj = impl.construct(rsakey.RSAKeys)
def decrypt(encrypted):
return RSAObj.decrypt(encrypted)
実行しようとすると、CLI にエラーが表示されます。
トレースバック (最新の呼び出しが最後):
ファイル "otrsa.py"、6 行目、impl = Crypto.PublicKey.RSA.RSAImplementation(use_fast_math = True) 属性エラー: 'モジュール' オブジェクトに属性 'RSAImplementation' がありません
私はPythonに本当に慣れていないので、それが何を意味するのかわかりません。どんな助けにも感謝します。