Lines Matching defs:e_bytes
748 unsigned int e_bytes;
763 e_bytes = BN_num_bytes(c.e);
765 if (e_bytes < 256) { /*%< key exponent is <= 2040 bits */
769 isc_buffer_putuint8(data, (uint8_t)e_bytes);
776 isc_buffer_putuint16(data, (uint16_t)e_bytes);
780 if (r.length < e_bytes + mod_bytes) {
785 isc_region_consume(&r, e_bytes);
789 isc_buffer_add(data, e_bytes + mod_bytes);
801 unsigned int e_bytes;
816 e_bytes = *r.base;
819 if (e_bytes == 0) {
823 e_bytes = (*r.base) << 8;
825 e_bytes += *r.base;
829 if (r.length < e_bytes) {
832 c.e = BN_bin2bn(r.base, e_bytes, NULL);
833 isc_region_consume(&r, e_bytes);
1177 static const unsigned char e_bytes[] = "\x01\x00\x01";
1292 c.e = BN_bin2bn(e_bytes, sizeof(e_bytes) - 1, NULL);