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
I'm trying to generate an hkdf sha256 key from a master key and a salt. According to https://wiki.openssl.org/index.php/EVP_Key_Derivation it seems openssl has this functionality. Unfortunately, looking through the source code for spacemonkeygo/openssl, I can't find any "EVP_KDF" functions.
I've written my own HKDF function that produces the expected output:
This function works, but is only a proof of concept right now. Before I commit to making the function production ready, I thought I'd ask if anyone could point me to a spacemonkeygo/openssl function that already does this.
Thanks!
The text was updated successfully, but these errors were encountered:
I'm trying to generate an hkdf sha256 key from a master key and a salt. According to https://wiki.openssl.org/index.php/EVP_Key_Derivation it seems openssl has this functionality. Unfortunately, looking through the source code for spacemonkeygo/openssl, I can't find any "EVP_KDF" functions.
I've written my own HKDF function that produces the expected output:
This function works, but is only a proof of concept right now. Before I commit to making the function production ready, I thought I'd ask if anyone could point me to a spacemonkeygo/openssl function that already does this.
Thanks!
The text was updated successfully, but these errors were encountered: