Module HKDF.Noalloc
Versions of these functions which write their output in a buffer passed in as an argument
val extract : alg:SharedDefs.HashDefs.alg -> salt:bytes -> ikm:bytes -> prk:bytes -> unitextract alg salt ikm prkcomputes a pseudorandom keyprkusing hashing algorithmalgwith input key materialikmand saltsalt.
val expand : alg:SharedDefs.HashDefs.alg -> prk:bytes -> info:bytes -> okm:bytes -> unitexpand alg prk info okmexpands the pseudorandom keyprkusing hashing algorithmalg, taking the info stringinfointo account, and writes the output key material inokm.