Home | History | Annotate | Download | only in dns

Lines Matching defs:e_bytes

745 	unsigned int e_bytes;
757 e_bytes = BN_num_bytes(c.e);
759 if (e_bytes < 256) { /*%< key exponent is <= 2040 bits */
763 isc_buffer_putuint8(data, (uint8_t)e_bytes);
770 isc_buffer_putuint16(data, (uint16_t)e_bytes);
774 if (r.length < e_bytes + mod_bytes) {
779 isc_region_consume(&r, e_bytes);
783 isc_buffer_add(data, e_bytes + mod_bytes);
795 unsigned int e_bytes;
810 e_bytes = *r.base;
813 if (e_bytes == 0) {
817 e_bytes = (*r.base) << 8;
819 e_bytes += *r.base;
823 if (r.length < e_bytes) {
826 c.e = BN_bin2bn(r.base, e_bytes, NULL);
827 isc_region_consume(&r, e_bytes);
1159 static const unsigned char e_bytes[] = "\x01\x00\x01";
1274 c.e = BN_bin2bn(e_bytes, sizeof(e_bytes) - 1, NULL);