Lines Matching refs:e_bytes
1392 unsigned int e_bytes = 0, mod_bytes = 0;
1405 e_bytes = (unsigned int) attr->ulValueLen;
1416 if (e_bytes < 256) { /*%< key exponent is <= 2040 bits */
1419 isc_buffer_putuint8(data, (isc_uint8_t) e_bytes);
1425 isc_buffer_putuint16(data, (isc_uint16_t) e_bytes);
1429 if (r.length < e_bytes + mod_bytes)
1432 memmove(r.base, exponent, e_bytes);
1433 isc_region_consume(&r, e_bytes);
1436 isc_buffer_add(data, e_bytes + mod_bytes);
1445 unsigned int e_bytes, mod_bytes;
1461 e_bytes = *r.base;
1464 if (e_bytes == 0) {
1470 e_bytes = (*r.base) << 8;
1472 e_bytes += *r.base;
1476 if (r.length < e_bytes) {
1482 isc_region_consume(&r, e_bytes);
1503 attr[1].pValue = isc_mem_get(key->mctx, e_bytes);
1506 memmove(attr[1].pValue, exponent, e_bytes);
1507 attr[1].ulValueLen = (CK_ULONG) e_bytes;