Home
last modified time | relevance | path

Searched refs:mlen (Results 1 – 1 of 1) sorted by relevance

/loramac-node-latest/src/peripherals/soft-se/
Dcmac.c73 uint32_t mlen; in AES_CMAC_Update() local
78 mlen = MIN( 16 - ctx->M_n, len ); in AES_CMAC_Update()
79 memcpy1( ctx->M_last + ctx->M_n, data, mlen ); in AES_CMAC_Update()
80 ctx->M_n += mlen; in AES_CMAC_Update()
81 if( ctx->M_n < 16 || len == mlen ) in AES_CMAC_Update()
89 data += mlen; in AES_CMAC_Update()
90 len -= mlen; in AES_CMAC_Update()