Lines Matching refs:hLen
98 INT16 hLen; // length of the hash in _cpri__KDFa() local
118 if((hLen = (INT16) _cpri__GetDigestSize(hashAlg)) == 0) in _cpri__KDFa()
123 bytes = once ? hLen : (INT16)((sizeInBits + 7) / 8); in _cpri__KDFa()
125 for (; bytes > 0; stream = &stream[hLen], bytes = bytes - hLen) in _cpri__KDFa()
127 if(bytes < hLen) in _cpri__KDFa()
128 hLen = bytes; in _cpri__KDFa()
156 _cpri__CompleteHMAC(&hashState, &hmacKey.b, hLen, stream); in _cpri__KDFa()
180 INT16 hLen = (INT16) _cpri__GetDigestSize(hashAlg); in _cpri__KDFe() local
186 if(hLen == 0) in _cpri__KDFe()
205 for (; bytes > 0; stream = &stream[hLen], bytes = bytes - hLen) in _cpri__KDFe()
207 if(bytes < hLen) in _cpri__KDFe()
208 hLen = bytes; in _cpri__KDFe()
235 _cpri__CompleteHash(&hashState, hLen, stream); in _cpri__KDFe()