Lines Matching defs:bits
52 * shipped is the same as specifying 1024 for the 'bits' parameter. Bsafe
53 * uses a version where the bits parameter is the same as len*8
55 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits)
67 if (bits <= 0)
68 bits = 1024;
69 if (bits > 1024)
70 bits = 1024;
83 /* hmm.... key reduction to 'bits' bits */
85 j = (bits + 7) >> 3;
87 c = (0xff >> (-bits & 0x07));