mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2025-12-08 05:19:46 +00:00
First version of bcrypt
This commit is contained in:
parent
c33fcd2c66
commit
ca975e96ad
8 changed files with 451 additions and 23 deletions
4
setup.py
4
setup.py
|
|
@ -356,6 +356,10 @@ ext_modules = [
|
|||
Extension("Crypto.Cipher._raw_blowfish",
|
||||
include_dirs=['src/'],
|
||||
sources=["src/blowfish.c"]),
|
||||
Extension("Crypto.Cipher._raw_eksblowfish",
|
||||
include_dirs=['src/'],
|
||||
define_macros=[('EKS',None),],
|
||||
sources=["src/blowfish.c"]),
|
||||
Extension("Crypto.Cipher._raw_cast",
|
||||
include_dirs=['src/'],
|
||||
sources=["src/CAST.c"]),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue