mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2025-12-08 05:19:46 +00:00
Add Ed25519 keys and EdDSA signatures
This commit is contained in:
parent
db731bb3a7
commit
764c1e81b9
73 changed files with 6840 additions and 629 deletions
8
setup.py
8
setup.py
|
|
@ -443,6 +443,14 @@ ext_modules = [
|
|||
'src/p521_table.c'],
|
||||
py_limited_api=True,
|
||||
),
|
||||
Extension("Crypto.PublicKey._x255219",
|
||||
include_dirs=['src/'],
|
||||
sources=['src/x25519.c']
|
||||
),
|
||||
Extension("Crypto.PublicKey._ed25519",
|
||||
include_dirs=['src/'],
|
||||
sources=['src/ed25519.c']
|
||||
),
|
||||
|
||||
# Math
|
||||
Extension("Crypto.Math._modexp",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue