is the Asymmetric Cryptography supports ECC NIST256p keys only ..?? Because i tried to generate ECC private key with help of "secp256k1" and got compilation error as NOT SUPPORTED,
Self Generation script is like this :def generate(): return ECDSA256P1(SigningKey.generate(curve=NIST256p))KEY EXTRACTIONkey = SigningKey.from_pem(pem) if key.curve.name == 'NIST256p': return ECDSA256P1(key) else: ...