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 EXTRACTION
key = SigningKey.from_pem(pem)
if key.curve.name == 'NIST256p':
return ECDSA256P1(key)
else:
raise Exception("Unsupported")
is this mean, only NIST256p generated keys ..??
Second question is about Firmware encryption support on STM32H753:
- As mentioned in example, default crypto scheme SECBOOT_ECCDSA_WITH_AES128_CBC_SHA256, is supported on STM32H753 ..??
- But as i see SECBOOT_ECCDSA_WITH_AES128_CTR_SHA256 scheme is applicable on STM32H7 series with OTFDEC support feature only right ??
So can you please tell us on STM32H753VIT6 MCU, what kind of CRYPTO schemes are supported ??
