HomeSort by: relevance | last modified time | path
    Searched defs:e_bytes (Results 1 - 3 of 3) sorted by relevancy

  /src/external/mpl/bind/dist/lib/dns/
opensslrsa_link.c 745 unsigned int e_bytes; local
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; local
810 e_bytes = *r.base
1159 static const unsigned char e_bytes[] = "\\x01\\x00\\x01"; variable
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
opensslrsa_link.c 577 unsigned int e_bytes; local
596 e_bytes = BN_num_bytes(e);
600 if (e_bytes < 256) { /*%< key exponent is <= 2040 bits */
604 isc_buffer_putuint8(data, (uint8_t)e_bytes);
611 isc_buffer_putuint16(data, (uint16_t)e_bytes);
615 if (r.length < e_bytes + mod_bytes) {
621 isc_region_consume(&r, e_bytes);
624 isc_buffer_add(data, e_bytes + mod_bytes);
636 unsigned int e_bytes; local
656 e_bytes = *r.base
1211 static const unsigned char e_bytes[] = "\\x01\\x00\\x01"; variable
    [all...]
pkcs11rsa_link.c 1300 unsigned int e_bytes = 0, mod_bytes = 0; local
1313 e_bytes = (unsigned int)attr->ulValueLen;
1325 if (e_bytes < 256) { /*%< key exponent is <= 2040 bits */
1329 isc_buffer_putuint8(data, (uint8_t)e_bytes);
1336 isc_buffer_putuint16(data, (uint16_t)e_bytes);
1340 if (r.length < e_bytes + mod_bytes) {
1344 memmove(r.base, exponent, e_bytes);
1345 isc_region_consume(&r, e_bytes);
1348 isc_buffer_add(data, e_bytes + mod_bytes);
1357 unsigned int e_bytes, mod_bytes local
    [all...]

Completed in 61 milliseconds