Lines Matching defs:e_bytes
847 unsigned int e_bytes;
872 e_bytes = BN_num_bytes(rsa->e);
875 if (e_bytes < 256) { /*%< key exponent is <= 2040 bits */
878 isc_buffer_putuint8(data, (isc_uint8_t) e_bytes);
884 isc_buffer_putuint16(data, (isc_uint16_t) e_bytes);
888 if (r.length < e_bytes + mod_bytes)
892 isc_region_consume(&r, e_bytes);
895 isc_buffer_add(data, e_bytes + mod_bytes);
910 unsigned int e_bytes;
928 e_bytes = *r.base++;
931 if (e_bytes == 0) {
936 e_bytes = ((*r.base++) << 8);
937 e_bytes += *r.base++;
941 if (r.length < e_bytes) {
945 rsa->e = BN_bin2bn(r.base, e_bytes, NULL);
946 r.base += e_bytes;
947 r.length -= e_bytes;