Function crypto_wasi::hkdf_hmac

source ·
pub fn hkdf_hmac(
    alg: &str,
    key: impl AsRef<[u8]>,
    salt: impl AsRef<[u8]>,
    info: impl AsRef<[u8]>,
    key_len: usize
) -> Result<Vec<u8>, CryptoErrno>
Expand description

As same as hkdf, but use hmac to manual expand

See https://github.com/WasmEdge/WasmEdge/issues/2176