My actual need is to generate a EC key pair (public & private key) and use it to mock the device authorization. Once the generated public key is used in one of our endpoints, I will receive an SMS TAN for which I will need to generate a signature and then use that signature to authorize the device mocking.
so far, manually, I was using https://kjur.github.io/jsrsasign/sample/sample-ecdsa.html to generate the EC key pair, sign message and verifying the signature. I am looking for any direct APIs so that I can do these via postman or jMeter without any manual interventions.