Lines Matching defs:bits
107 * A key of size 2048 bits or larger MUST be used with these algorithms.
204 * A key of size 2048 bits or larger MUST be used with this algorithm.
261 * A key of size 2048 bits or larger MUST be used with this algorithm.
406 * Use of an Initialization Vector (IV) of size 96 bits is REQUIRED with
413 * The requested size of the Authentication Tag output MUST be 128 bits,
486 * the HMAC output truncated to 128 bits, corresponding to the
546 * Use of an IV of size 96 bits is REQUIRED with this algorithm.
548 * The requested size of the Authentication Tag output MUST be 128 bits,
668 lws_gencrypto_bits_to_bytes(int bits)
670 if (bits & 7)
671 return (bits / 8) + 1;
673 return bits / 8;