Lines Matching refs:e_bytes
1145 unsigned int e_bytes;
1173 e_bytes = BN_num_bytes(e);
1175 if (e_bytes < 256) { /*%< key exponent is <= 2040 bits */
1178 isc_buffer_putuint8(data, (isc_uint8_t) e_bytes);
1184 isc_buffer_putuint16(data, (isc_uint16_t) e_bytes);
1188 if (r.length < e_bytes + mod_bytes)
1193 isc_region_consume(&r, e_bytes);
1196 isc_buffer_add(data, e_bytes + mod_bytes);
1211 unsigned int e_bytes;
1232 e_bytes = *r.base;
1235 if (e_bytes == 0) {
1240 e_bytes = (*r.base) << 8;
1242 e_bytes += *r.base;
1246 if (r.length < e_bytes) {
1250 e = BN_bin2bn(r.base, e_bytes, NULL);
1251 isc_region_consume(&r, e_bytes);