ㅇ Pycrypto
ㅁ AES, EDS, RSA 등의 암호 알고리즘 및 SHA-256 등의 Hash 함수 제공 Python Package
ㅁ Pyhton 공식 사이트에서 C++ Source Code 형태로 배포중

 

ㅇ Source 설치
ㅁ Windows의 경우 MSVS 설치 후 공식 홈페이지에서 Source 다운

C:\>python setup.py build
python: can't open file 'setup.py': [Errno 2] No such file or directory

C:\>python setup.py install
python: can't open file 'setup.py': [Errno 2] No such file or directory

C:\>

 

ㅇ PIP를 이용한 설치
ㅁ Windows의 경우 MSVS 설치 후 진행

C:\>pip install pycrypto

ㅁ Windows의 경우 MSVS 설치 없이도 아래의 Github에서 진행 가능

[64비트]
C:\>pip install --use-wheel --no-index --find-links=https://github.com/sfbahr/PyCrypto-Wheels/raw/master/pycrypto-2.6.1-cp35-none-win_amd64.whl pycrypto

[32비트]
C:\>pip install --use-wheel --no-index --find-links=https://github.com/sfbahr/PyCrypto-Wheels/raw/master/pycrypto-2.6.1-cp35-none-win32.whl pycrypto

 

근데 안된다. 걍  dome 붙이거나 domex 붙여서 써여ㅑ 할 듯

C:\>pip install pycryptodome
Collecting pycryptodome
  Downloading pycryptodome-3.9.8-cp38-cp38-win32.whl (14.1 MB)
     |████████████████████████████████| 14.1 MB 233 kB/s
Installing collected packages: pycryptodome
Successfully installed pycryptodome-3.9.8

C:\>
Posted by aapsemiordoenus
,