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
switch to using function calls to determine the size of signatures and key export buffers
ecc_key_size is a new convenience function that returns the size of the ecc key, it is used in shared_secret to determine the size of the secret buffer
sizeof_ecc_x963 is a new convenience function that returns the size the exported ecc key will be, just calls wc_ecc_export_x963 with NULL and returns the length it gets back
RsaPrivateDerSize is a new convenience function that returns the size the exported private key will be, just calls wc_RsaKeyToDer with NULL
RsaPublicDerSize is a new convenience function that returns the size the exported public key will be, just calls wc_RsaKeyToPublicDer with NULL
0 commit comments