1
0
Fork 0
nrf51-cryptolib/ckdf.h

13 lines
263 B
C
Raw Normal View History

/* CMAC Key Derivation Function
HKDF, but with CMAC
Based on ietf draft-agl-ckdf-00
Shawn Nock - <nock@nocko.se>
*/
void ckdf_extract(uint8_t *, uint8_t *, uint8_t *, uint32_t);
void ckdf_expand(uint8_t *, uint8_t *, uint8_t *, uint32_t, uint32_t);