pisa -> teos

This commit is contained in:
Sergi Delgado Segura
2020-03-17 13:05:55 +01:00
parent 15126618d5
commit 7c7ff909d7
56 changed files with 373 additions and 372 deletions

View File

@@ -8,7 +8,7 @@ from cryptography.hazmat.primitives.asymmetric import ec
# Simple tool to generate an ECDSA private key using the secp256k1 curve and save private and public keys
# as 'pisa_sk.der' 'and pisa_pk.der', respectively.
# as 'teos_sk.der' 'and teos_pk.der', respectively.
def save_sk(sk, filename):
@@ -29,7 +29,7 @@ def save_pk(pk, filename):
if __name__ == "__main__":
name = "pisa"
name = "teos"
output_dir = "."
opts, _ = getopt(argv[1:], "n:d:", ["name", "dir"])