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
As noted by Martin here, we currently do unnecessary work when deriving key material, because our crypto backend only exposes a single hkdf_sha256 operation. If it instead exposed separate hkdf_sha256_extract and hkdf_sha256_expand operations, we could save a few iterations of the hash function by doing a single extract and then multiple expands.
The text was updated successfully, but these errors were encountered:
As noted by Martin here, we currently do unnecessary work when deriving key material, because our crypto backend only exposes a single
hkdf_sha256
operation. If it instead exposed separatehkdf_sha256_extract
andhkdf_sha256_expand
operations, we could save a few iterations of the hash function by doing a singleextract
and then multipleexpand
s.The text was updated successfully, but these errors were encountered: