-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing getters on some fields #5005
Comments
Hi! Any update on this? |
Hi! Thanks for your report. Could you clarify if you need read or write access to these fields? Also, it's not clear to me if what you mean exactly by ecdsa_alt functionality. Are you talking about
|
Hello! In order to use it, we need some information that needs to be recovered in the sign method, this information is basically a key handle. We use the method mbedtls_mpi_read_binary((*mbedtls_ecp_keypair)keyPair->d, ourKeyHandle, ..); to do it. After this call we reassign the value: Thanks! |
Suggested enhancement
We need access to some of the fields that are now private since version 3.0.0:
mbedtls_pk_context
pk_ctx
mbedtls_ecp_keypair
d
###Justification
mbedtls_pk_context: We have to configure a pk_ctx in order to be able to implement ecdsa_alt functionality
mbedtls_ecp_keypair: Same, for ecdsa_alt functionality we need to provide the key information inside d field
The text was updated successfully, but these errors were encountered: