You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we store 4 base64 copies of the key for writing purposes, which is wasted memory if the application code never writes the atkeys.
Things to do:
Remove base64 strings in atclient_atkeys
Ensure that atclient_atkeys writing functionality still works. To do this, prepare mbedtls RSA context and use mbedtls_pk_write_key_pem to write it to a buffer, then write that buffer to file.
The text was updated successfully, but these errors were encountered:
Right now, we store 4 base64 copies of the key for writing purposes, which is wasted memory if the application code never writes the atkeys.
Things to do:
atclient_atkeys
atclient_atkeys
writing functionality still works. To do this, prepare mbedtls RSA context and usembedtls_pk_write_key_pem
to write it to a buffer, then write that buffer to file.The text was updated successfully, but these errors were encountered: