hkdf icon indicating copy to clipboard operation
hkdf copied to clipboard

HKDF implementation (RFC 5869)

Results 3 hkdf issues
Sort by recently updated
recently updated
newest added

Currently only SHA-256 is supported as hash function.

enhancement

Why is [`mk_salt`](https://github.com/wireapp/hkdf/blob/develop/src/lib.rs#L77) implemented like this? I've read [RFC 5869](https://tools.ietf.org/html/rfc5869) and as far as I can tell, it is nowhere specified that you should pad or hash the salt. They...