Added signatures to appointment

This commit is contained in:
Salvatore Ingala
2019-10-10 16:38:34 +07:00
parent b74df42a2b
commit 99db9a29ad
5 changed files with 21 additions and 5 deletions

6
apps/generate_key.py Normal file
View File

@@ -0,0 +1,6 @@
import ecdsa
if __name__ == '__main__':
sk = ecdsa.SigningKey.generate(curve=ecdsa.SECP256k1)
print(sk.to_der())