mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 06:04:21 +01:00
7 lines
123 B
Python
7 lines
123 B
Python
import ecdsa
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sk = ecdsa.SigningKey.generate(curve=ecdsa.SECP256k1)
|
|
print(sk.to_der())
|