• Home
  • Raw
  • Download

Lines Matching refs:sizeInBits

20173       sizeInBits number of bits.
20176 509 //% sizeInBits, keyStream, counterInOut) \
20184 517 //% ((UINT32)sizeInBits), \
20197 sizeInBits.
20200 524 //% sizeInBits, keyStream, counterInOut) \
20208 532 //% ((UINT32)sizeInBits), \
20227 545 UINT32 sizeInBits, // IN: size of generated key in bit
20239 552 CryptKDFa(hash, key, label, contextU, contextV, sizeInBits,
20250 556 //% sizeInBits, keyStream) \
20258 564 //% ((UINT32)sizeInBits), \
27284 The value of sizeInBits must be no larger than (2^18)-1 = 256K bits (32385 bytes).
27286sizeInBits will be used in the HMAC computation but only one iteration of the KDF is performed. Th…
27289 result. If once is TRUE, then sizeInBits must be a multiple of 8.
27304 567 UINT32 sizeInBits, // IN: size of generated key in bit
27311 574 // "sizeInBits"
27324 587 pAssert(once == FALSE || (sizeInBits & 7) == 0);
27350 607 pAssert(((sizeInBits + 7)/ 8) <= INT16_MAX);
27352 609 bytes = once ? hLen : (INT16)((sizeInBits + 7) / 8);
27387 644 UINT32_TO_BYTE_ARRAY(sizeInBits, marshaledUint32);
27397 654 if((sizeInBits % 8) != 0)
27398 655 keyStream[0] &= ((1 << (sizeInBits % 8)) - 1);
27401 658 return (CRYPT_RESULT)((sizeInBits + 7)/8);
27416 …value of sizeInBits must be no larger than (2^18)-1 = 256K bits (32385 bytes). Any error in the pr…
27431 667 UINT32 sizeInBits, // IN: size of generated key in bit
27445 681 && ((sizeInBits + 7) / 8) < INT16_MAX);
27450 686 bytes = (INT16)((sizeInBits + 7) / 8);
27516 746 if((sizeInBits % 8) != 0)
27517 747 keyStream[0] &= ((1 << (sizeInBits % 8)) - 1);
27519 749 return (CRYPT_RESULT)((sizeInBits + 7) / 8);