fuzz_early_setup:
   23|      2|void fuzz_early_setup(void) {
   24|       |    /* Set stderr to point to normal stderr by default */
   25|      2|    fuzz.fake_stderr = stderr;
   26|      2|}
fuzz_common_setup:
   28|      1|void fuzz_common_setup(void) {
   29|      1|	disallow_core();
   30|      1|    fuzz.fuzzing = 1;
   31|      1|    fuzz.wrapfds = 1;
   32|      1|    fuzz.do_jmp = 1;
   33|      1|    fuzz.input = m_malloc(sizeof(buffer));
   34|      1|    _dropbear_log = fuzz_dropbear_log;
   35|      1|    crypto_init();
   36|      1|    fuzz_seed("start", 5);
   37|       |    /* let any messages get flushed */
   38|      1|    setlinebuf(stdout);
   39|       |#if DEBUG_TRACE
   40|       |    if (debug_trace)
   41|       |    {
   42|       |        fprintf(stderr, "Dropbear fuzzer: -v specified, not disabling stderr output\n");
   43|       |    }
   44|       |    else
   45|       |#endif
   46|      1|    if (getenv("DROPBEAR_KEEP_STDERR")) {
  ------------------
  |  Branch (46:9): [True: 0, False: 1]
  ------------------
   47|      0|        fprintf(stderr, "Dropbear fuzzer: DROPBEAR_KEEP_STDERR, not disabling stderr output\n");
   48|      0|    } 
   49|      1|    else 
   50|      1|    {
   51|      1|        fprintf(stderr, "Dropbear fuzzer: Disabling stderr output\n");
   52|      1|        fuzz.fake_stderr = fopen("/dev/null", "w");
   53|      1|        assert(fuzz.fake_stderr);
   54|      1|    }
   55|      1|}
fuzz_set_input:
   57|  2.86k|int fuzz_set_input(const uint8_t *Data, size_t Size) {
   58|       |
   59|  2.86k|    fuzz.input->data = (unsigned char*)Data;
   60|  2.86k|    fuzz.input->size = Size;
   61|  2.86k|    fuzz.input->len = Size;
   62|  2.86k|    fuzz.input->pos = 0;
   63|       |
   64|  2.86k|    memset(&ses, 0x0, sizeof(ses));
   65|  2.86k|    memset(&svr_ses, 0x0, sizeof(svr_ses));
   66|  2.86k|    memset(&cli_ses, 0x0, sizeof(cli_ses));
   67|  2.86k|    wrapfd_setup(fuzz.input);
   68|       |    // printhex("input", fuzz.input->data, fuzz.input->len);
   69|       |
   70|  2.86k|    fuzz_seed(fuzz.input->data, MIN(fuzz.input->len, 16));
   71|       |
   72|  2.86k|    return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  2.86k|#define DROPBEAR_SUCCESS 0
  ------------------
   73|  2.86k|}
fuzz-common.c:fuzz_dropbear_log:
   84|    688|static void fuzz_dropbear_log(int UNUSED(priority), const char* UNUSED(format), va_list UNUSED(param)) {
   85|       |    /* No print */
   86|    688|}

wrapfd_setup:
   32|  2.86k|void wrapfd_setup(buffer *buf) {
   33|  2.86k|	TRACE(("wrapfd_setup"))
   34|       |
   35|       |	// clean old ones
   36|  2.86k|	int i;
   37|  2.86k|	for (i = 0; i <= wrapfd_maxfd; i++) {
  ------------------
  |  Branch (37:14): [True: 0, False: 2.86k]
  ------------------
   38|      0|		if (wrap_fds[i].mode != UNUSED) {
  ------------------
  |  Branch (38:7): [True: 0, False: 0]
  ------------------
   39|      0|			wrapfd_remove(i);
   40|      0|		}
   41|      0|	}
   42|  2.86k|	wrapfd_maxfd = -1;
   43|       |
   44|  2.86k|	memset(rand_state, 0x0, sizeof(rand_state));
   45|  2.86k|	wrapfd_setseed(50);
   46|  2.86k|	input_buf = buf;
   47|  2.86k|}
wrapfd_setseed:
   49|  2.86k|void wrapfd_setseed(uint32_t seed) {
   50|  2.86k|	memcpy(rand_state, &seed, sizeof(seed));
   51|  2.86k|	nrand48(rand_state);
   52|  2.86k|}

LLVMFuzzerTestOneInput:
   15|  2.86k|int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
   16|  2.86k|	static int once = 0;
   17|  2.86k|	if (!once) {
  ------------------
  |  Branch (17:6): [True: 1, False: 2.86k]
  ------------------
   18|      1|		setup_fuzzer();
   19|      1|		verifydata = buf_new(30);
   20|      1|		buf_putstring(verifydata, "x", 1);
   21|      1|		once = 1;
   22|      1|	}
   23|       |
   24|  2.86k|	if (fuzz_set_input(Data, Size) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  2.86k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (24:6): [True: 0, False: 2.86k]
  ------------------
   25|      0|		return 0;
   26|      0|	}
   27|       |
   28|  2.86k|	m_malloc_set_epoch(1);
   29|       |
   30|  2.86k|	if (setjmp(fuzz.jmp) == 0) {
  ------------------
  |  Branch (30:6): [True: 2.86k, False: 0]
  ------------------
   31|  2.86k|		sign_key *key = new_sign_key();
   32|  2.86k|		enum signkey_type keytype = DROPBEAR_SIGNKEY_ANY;
   33|  2.86k|		if (buf_get_pub_key(fuzz.input, key, &keytype) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  2.86k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (33:7): [True: 1.73k, False: 1.12k]
  ------------------
   34|  1.73k|			enum signature_type sigtype;
   35|  1.73k|			if (keytype == DROPBEAR_SIGNKEY_RSA) {
  ------------------
  |  Branch (35:8): [True: 908, False: 827]
  ------------------
   36|       |				/* Flip a coin to decide rsa signature type */
   37|    908|				int flag = buf_getbyte(fuzz.input);
   38|    908|				if (flag & 0x01) {
  ------------------
  |  Branch (38:9): [True: 17, False: 891]
  ------------------
   39|     17|					sigtype = DROPBEAR_SIGNATURE_RSA_SHA256;
   40|    891|				} else {
   41|    891|					sigtype = DROPBEAR_SIGNATURE_RSA_SHA1;
   42|    891|				}
   43|    908|			} else {
   44|    827|				sigtype = signature_type_from_signkey(keytype);
   45|    827|			}
   46|  1.73k|			if (buf_verify(fuzz.input, key, sigtype, verifydata) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  1.73k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (46:8): [True: 125, False: 1.61k]
  ------------------
   47|       |				/* The fuzzer is capable of generating keys with a signature to match.
   48|       |				We don't want false positives if the key is bogus, since a client/server 
   49|       |				wouldn't be trusting a bogus key anyway */
   50|    125|				int boguskey = 0;
   51|       |
   52|    125|				if (keytype == DROPBEAR_SIGNKEY_DSS) {
  ------------------
  |  Branch (52:9): [True: 123, False: 2]
  ------------------
   53|       |					/* So far have seen dss keys with bad p/q/g domain parameters */
   54|    123|					int pprime, qprime, trials;
   55|    123|					trials = mp_prime_rabin_miller_trials(mp_count_bits(key->dsskey->p));
   56|    123|					assert(mp_prime_is_prime(key->dsskey->p, trials, &pprime) == MP_OKAY);
   57|    123|					trials = mp_prime_rabin_miller_trials(mp_count_bits(key->dsskey->q));
   58|    123|					assert(mp_prime_is_prime(key->dsskey->q, trials, &qprime) == MP_OKAY);
   59|    123|					boguskey = !(pprime && qprime);
  ------------------
  |  Branch (59:19): [True: 0, False: 123]
  |  Branch (59:29): [True: 0, False: 0]
  ------------------
   60|       |					/* Could also check g**q mod p == 1 */
   61|    123|				}
   62|       |
   63|    125|				if (keytype == DROPBEAR_SIGNKEY_SK_ED25519 || keytype == DROPBEAR_SIGNKEY_ED25519) {
  ------------------
  |  Branch (63:9): [True: 2, False: 123]
  |  Branch (63:51): [True: 0, False: 123]
  ------------------
   64|      2|					dropbear_ed25519_key **eck = (dropbear_ed25519_key**)signkey_key_ptr(key, keytype);
   65|      2|					if (eck && *eck) {
  ------------------
  |  Branch (65:10): [True: 2, False: 0]
  |  Branch (65:17): [True: 2, False: 0]
  ------------------
   66|      2|						int i;
   67|       |						/* we've seen all-zero keys validate */
   68|      2|						boguskey = 1;
   69|     66|						for (i = 0; i < CURVE25519_LEN; i++) {
  ------------------
  |  |   34|     66|#define CURVE25519_LEN 32
  ------------------
  |  Branch (69:19): [True: 64, False: 2]
  ------------------
   70|     64|							if ((*eck)->priv[i] != 0x00 || (*eck)->pub[i] != 0x00) {
  ------------------
  |  Branch (70:12): [True: 0, False: 64]
  |  Branch (70:39): [True: 0, False: 64]
  ------------------
   71|      0|								boguskey = 0;
   72|      0|							}
   73|     64|						}
   74|       |
   75|      2|					}
   76|      2|				}
   77|       |
   78|    125|				if (!boguskey) {
  ------------------
  |  Branch (78:9): [True: 0, False: 125]
  ------------------
   79|      0|					printf("Random key/signature managed to verify!\n");
   80|      0|					abort();
   81|      0|				}
   82|       |
   83|       |
   84|    125|			}
   85|  1.73k|		}
   86|  2.86k|		sign_key_free(key);
   87|  2.86k|		m_malloc_free_epoch(1, 0);
   88|  2.86k|	} else {
   89|      0|		m_malloc_free_epoch(1, 1);
   90|      0|		TRACE(("dropbear_exit longjmped"))
   91|       |		/* dropbear_exit jumped here */
   92|      0|	}
   93|       |
   94|  2.86k|	return 0;
   95|  2.86k|}
fuzzer-verify.c:setup_fuzzer:
    8|      1|static void setup_fuzzer(void) {
    9|      1|	fuzz_common_setup();
   10|      1|}

sha1_init:
  164|  1.00k|{
  165|  1.00k|   LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|  1.00k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  166|  1.00k|   md->sha1.state[0] = 0x67452301UL;
  167|  1.00k|   md->sha1.state[1] = 0xefcdab89UL;
  168|  1.00k|   md->sha1.state[2] = 0x98badcfeUL;
  169|  1.00k|   md->sha1.state[3] = 0x10325476UL;
  170|  1.00k|   md->sha1.state[4] = 0xc3d2e1f0UL;
  171|  1.00k|   md->sha1.curlen = 0;
  172|  1.00k|   md->sha1.length = 0;
  173|  1.00k|   return CRYPT_OK;
  174|  1.00k|}
sha1_done:
  192|  1.00k|{
  193|  1.00k|    int i;
  194|       |
  195|  1.00k|    LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|  1.00k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  196|  1.00k|    LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|  1.00k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  197|       |
  198|  1.00k|    if (md->sha1.curlen >= sizeof(md->sha1.buf)) {
  ------------------
  |  Branch (198:9): [True: 0, False: 1.00k]
  ------------------
  199|      0|       return CRYPT_INVALID_ARG;
  200|      0|    }
  201|       |
  202|       |    /* increase the length of the message */
  203|  1.00k|    md->sha1.length += md->sha1.curlen * 8;
  204|       |
  205|       |    /* append the '1' bit */
  206|  1.00k|    md->sha1.buf[md->sha1.curlen++] = (unsigned char)0x80;
  207|       |
  208|       |    /* if the length is currently above 56 bytes we append zeros
  209|       |     * then compress.  Then we can fall back to padding zeros and length
  210|       |     * encoding like normal.
  211|       |     */
  212|  1.00k|    if (md->sha1.curlen > 56) {
  ------------------
  |  Branch (212:9): [True: 0, False: 1.00k]
  ------------------
  213|      0|        while (md->sha1.curlen < 64) {
  ------------------
  |  Branch (213:16): [True: 0, False: 0]
  ------------------
  214|      0|            md->sha1.buf[md->sha1.curlen++] = (unsigned char)0;
  215|      0|        }
  216|      0|        sha1_compress(md, md->sha1.buf);
  217|      0|        md->sha1.curlen = 0;
  218|      0|    }
  219|       |
  220|       |    /* pad upto 56 bytes of zeroes */
  221|  51.4k|    while (md->sha1.curlen < 56) {
  ------------------
  |  Branch (221:12): [True: 50.4k, False: 1.00k]
  ------------------
  222|  50.4k|        md->sha1.buf[md->sha1.curlen++] = (unsigned char)0;
  223|  50.4k|    }
  224|       |
  225|       |    /* store length */
  226|  1.00k|    STORE64H(md->sha1.length, md->sha1.buf+56);
  ------------------
  |  |  101|  1.00k|#define STORE64H(x, y)                          \
  |  |  102|  1.00k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|  1.00k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|  1.00k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  227|  1.00k|    sha1_compress(md, md->sha1.buf);
  228|       |
  229|       |    /* copy output */
  230|  6.04k|    for (i = 0; i < 5; i++) {
  ------------------
  |  Branch (230:17): [True: 5.04k, False: 1.00k]
  ------------------
  231|  5.04k|        STORE32H(md->sha1.state[i], out+(4*i));
  ------------------
  |  |   62|  5.04k|#define STORE32H(x, y)                          \
  |  |   63|  5.04k|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  5.04k|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  5.04k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  232|  5.04k|    }
  233|       |#ifdef LTC_CLEAN_STACK
  234|       |    zeromem(md, sizeof(hash_state));
  235|       |#endif
  236|  1.00k|    return CRYPT_OK;
  237|  1.00k|}
sha1.c:sha1_compress:
   47|  1.00k|{
   48|  1.00k|    ulong32 a,b,c,d,e,W[80],i;
   49|  1.00k|#ifdef LTC_SMALL_CODE
   50|  1.00k|    ulong32 t;
   51|  1.00k|#endif
   52|       |
   53|       |    /* copy the state into 512-bits into W[0..15] */
   54|  17.1k|    for (i = 0; i < 16; i++) {
  ------------------
  |  Branch (54:17): [True: 16.1k, False: 1.00k]
  ------------------
   55|  16.1k|        LOAD32H(W[i], buf + (4*i));
  ------------------
  |  |   66|  16.1k|#define LOAD32H(x, y)                           \
  |  |   67|  16.1k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  16.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  16.1k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
   56|  16.1k|    }
   57|       |
   58|       |    /* copy state */
   59|  1.00k|    a = md->sha1.state[0];
   60|  1.00k|    b = md->sha1.state[1];
   61|  1.00k|    c = md->sha1.state[2];
   62|  1.00k|    d = md->sha1.state[3];
   63|  1.00k|    e = md->sha1.state[4];
   64|       |
   65|       |    /* expand it */
   66|  65.5k|    for (i = 16; i < 80; i++) {
  ------------------
  |  Branch (66:18): [True: 64.5k, False: 1.00k]
  ------------------
   67|  64.5k|        W[i] = ROL(W[i-3] ^ W[i-8] ^ W[i-14] ^ W[i-16], 1);
   68|  64.5k|    }
   69|       |
   70|       |    /* compress */
   71|       |    /* round one */
   72|  1.00k|    #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
   73|  1.00k|    #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
   74|  1.00k|    #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
   75|  1.00k|    #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
   76|       |
   77|  1.00k|#ifdef LTC_SMALL_CODE
   78|       |
   79|  21.1k|    for (i = 0; i < 20; ) {
  ------------------
  |  Branch (79:17): [True: 20.1k, False: 1.00k]
  ------------------
   80|  20.1k|       FF0(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   72|  20.1k|    #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  |  |                   #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   37|  20.1k|#define F0(x,y,z)  (z ^ (x & (y ^ z)))
  |  |  ------------------
  |  |                   #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  ------------------
   81|  20.1k|    }
   82|       |
   83|  21.1k|    for (; i < 40; ) {
  ------------------
  |  Branch (83:12): [True: 20.1k, False: 1.00k]
  ------------------
   84|  20.1k|       FF1(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   73|  20.1k|    #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  |  |                   #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   38|  20.1k|#define F1(x,y,z)  (x ^ y ^ z)
  |  |  ------------------
  |  |                   #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  ------------------
   85|  20.1k|    }
   86|       |
   87|  21.1k|    for (; i < 60; ) {
  ------------------
  |  Branch (87:12): [True: 20.1k, False: 1.00k]
  ------------------
   88|  20.1k|       FF2(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   74|  20.1k|    #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  |  |                   #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   39|  20.1k|#define F2(x,y,z)  ((x & y) | (z & (x | y)))
  |  |  ------------------
  |  |                   #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  ------------------
   89|  20.1k|    }
   90|       |
   91|  21.1k|    for (; i < 80; ) {
  ------------------
  |  Branch (91:12): [True: 20.1k, False: 1.00k]
  ------------------
   92|  20.1k|       FF3(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   75|  20.1k|    #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  |  |                   #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   40|  20.1k|#define F3(x,y,z)  (x ^ y ^ z)
  |  |  ------------------
  |  |                   #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  20.1k|#define ROLc(word,i) ({ \
  |  |  |  |  276|  20.1k|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  20.1k|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  20.1k|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  20.1k|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  20.1k|            "I" (i)); \
  |  |  |  |  281|  20.1k|            __ROLc_tmp; \
  |  |  |  |  282|  20.1k|   })
  |  |  ------------------
  ------------------
   93|  20.1k|    }
   94|       |
   95|       |#else
   96|       |
   97|       |    for (i = 0; i < 20; ) {
   98|       |       FF0(a,b,c,d,e,i++);
   99|       |       FF0(e,a,b,c,d,i++);
  100|       |       FF0(d,e,a,b,c,i++);
  101|       |       FF0(c,d,e,a,b,i++);
  102|       |       FF0(b,c,d,e,a,i++);
  103|       |    }
  104|       |
  105|       |    /* round two */
  106|       |    for (; i < 40; )  {
  107|       |       FF1(a,b,c,d,e,i++);
  108|       |       FF1(e,a,b,c,d,i++);
  109|       |       FF1(d,e,a,b,c,i++);
  110|       |       FF1(c,d,e,a,b,i++);
  111|       |       FF1(b,c,d,e,a,i++);
  112|       |    }
  113|       |
  114|       |    /* round three */
  115|       |    for (; i < 60; )  {
  116|       |       FF2(a,b,c,d,e,i++);
  117|       |       FF2(e,a,b,c,d,i++);
  118|       |       FF2(d,e,a,b,c,i++);
  119|       |       FF2(c,d,e,a,b,i++);
  120|       |       FF2(b,c,d,e,a,i++);
  121|       |    }
  122|       |
  123|       |    /* round four */
  124|       |    for (; i < 80; )  {
  125|       |       FF3(a,b,c,d,e,i++);
  126|       |       FF3(e,a,b,c,d,i++);
  127|       |       FF3(d,e,a,b,c,i++);
  128|       |       FF3(c,d,e,a,b,i++);
  129|       |       FF3(b,c,d,e,a,i++);
  130|       |    }
  131|       |#endif
  132|       |
  133|  1.00k|    #undef FF0
  134|  1.00k|    #undef FF1
  135|  1.00k|    #undef FF2
  136|  1.00k|    #undef FF3
  137|       |
  138|       |    /* store */
  139|  1.00k|    md->sha1.state[0] = md->sha1.state[0] + a;
  140|  1.00k|    md->sha1.state[1] = md->sha1.state[1] + b;
  141|  1.00k|    md->sha1.state[2] = md->sha1.state[2] + c;
  142|  1.00k|    md->sha1.state[3] = md->sha1.state[3] + d;
  143|  1.00k|    md->sha1.state[4] = md->sha1.state[4] + e;
  144|       |
  145|  1.00k|    return CRYPT_OK;
  146|  1.00k|}

sha256_init:
  205|  6.92k|{
  206|  6.92k|    LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|  6.92k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 6.92k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  207|       |
  208|  6.92k|    md->sha256.curlen = 0;
  209|  6.92k|    md->sha256.length = 0;
  210|  6.92k|    md->sha256.state[0] = 0x6A09E667UL;
  211|  6.92k|    md->sha256.state[1] = 0xBB67AE85UL;
  212|  6.92k|    md->sha256.state[2] = 0x3C6EF372UL;
  213|  6.92k|    md->sha256.state[3] = 0xA54FF53AUL;
  214|  6.92k|    md->sha256.state[4] = 0x510E527FUL;
  215|  6.92k|    md->sha256.state[5] = 0x9B05688CUL;
  216|  6.92k|    md->sha256.state[6] = 0x1F83D9ABUL;
  217|  6.92k|    md->sha256.state[7] = 0x5BE0CD19UL;
  218|  6.92k|    return CRYPT_OK;
  219|  6.92k|}
sha256_done:
  237|  6.92k|{
  238|  6.92k|    int i;
  239|       |
  240|  6.92k|    LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|  6.92k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 6.92k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  241|  6.92k|    LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|  6.92k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 6.92k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  242|       |
  243|  6.92k|    if (md->sha256.curlen >= sizeof(md->sha256.buf)) {
  ------------------
  |  Branch (243:9): [True: 0, False: 6.92k]
  ------------------
  244|      0|       return CRYPT_INVALID_ARG;
  245|      0|    }
  246|       |
  247|       |
  248|       |    /* increase the length of the message */
  249|  6.92k|    md->sha256.length += md->sha256.curlen * 8;
  250|       |
  251|       |    /* append the '1' bit */
  252|  6.92k|    md->sha256.buf[md->sha256.curlen++] = (unsigned char)0x80;
  253|       |
  254|       |    /* if the length is currently above 56 bytes we append zeros
  255|       |     * then compress.  Then we can fall back to padding zeros and length
  256|       |     * encoding like normal.
  257|       |     */
  258|  6.92k|    if (md->sha256.curlen > 56) {
  ------------------
  |  Branch (258:9): [True: 18, False: 6.90k]
  ------------------
  259|     60|        while (md->sha256.curlen < 64) {
  ------------------
  |  Branch (259:16): [True: 42, False: 18]
  ------------------
  260|     42|            md->sha256.buf[md->sha256.curlen++] = (unsigned char)0;
  261|     42|        }
  262|     18|        sha256_compress(md, md->sha256.buf);
  263|     18|        md->sha256.curlen = 0;
  264|     18|    }
  265|       |
  266|       |    /* pad upto 56 bytes of zeroes */
  267|   171k|    while (md->sha256.curlen < 56) {
  ------------------
  |  Branch (267:12): [True: 164k, False: 6.92k]
  ------------------
  268|   164k|        md->sha256.buf[md->sha256.curlen++] = (unsigned char)0;
  269|   164k|    }
  270|       |
  271|       |    /* store length */
  272|  6.92k|    STORE64H(md->sha256.length, md->sha256.buf+56);
  ------------------
  |  |  101|  6.92k|#define STORE64H(x, y)                          \
  |  |  102|  6.92k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|  6.92k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|  6.92k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  273|  6.92k|    sha256_compress(md, md->sha256.buf);
  274|       |
  275|       |    /* copy output */
  276|  62.3k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (276:17): [True: 55.3k, False: 6.92k]
  ------------------
  277|  55.3k|        STORE32H(md->sha256.state[i], out+(4*i));
  ------------------
  |  |   62|  55.3k|#define STORE32H(x, y)                          \
  |  |   63|  55.3k|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  55.3k|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  55.3k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  278|  55.3k|    }
  279|       |#ifdef LTC_CLEAN_STACK
  280|       |    zeromem(md, sizeof(hash_state));
  281|       |#endif
  282|  6.92k|    return CRYPT_OK;
  283|  6.92k|}
sha256.c:sha256_compress:
   71|  7.98k|{
   72|  7.98k|    ulong32 S[8], W[64], t0, t1;
   73|  7.98k|#ifdef LTC_SMALL_CODE
   74|  7.98k|    ulong32 t;
   75|  7.98k|#endif
   76|  7.98k|    int i;
   77|       |
   78|       |    /* copy state into S */
   79|  71.8k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (79:17): [True: 63.8k, False: 7.98k]
  ------------------
   80|  63.8k|        S[i] = md->sha256.state[i];
   81|  63.8k|    }
   82|       |
   83|       |    /* copy the state into 512-bits into W[0..15] */
   84|   135k|    for (i = 0; i < 16; i++) {
  ------------------
  |  Branch (84:17): [True: 127k, False: 7.98k]
  ------------------
   85|   127k|        LOAD32H(W[i], buf + (4*i));
  ------------------
  |  |   66|   127k|#define LOAD32H(x, y)                           \
  |  |   67|   127k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|   127k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|   127k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
   86|   127k|    }
   87|       |
   88|       |    /* fill W[16..63] */
   89|   391k|    for (i = 16; i < 64; i++) {
  ------------------
  |  Branch (89:18): [True: 383k, False: 7.98k]
  ------------------
   90|   383k|        W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   63|   383k|#define Gamma1(x)       (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  |  |  ------------------
  |  |  |  |   58|   383k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|   383k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|   383k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|   383k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|   383k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|   383k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|   383k|            "I" (i)); \
  |  |  |  |  |  |  289|   383k|            __RORc_tmp; \
  |  |  |  |  |  |  290|   383k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  |  |  ------------------
  |  |  |  |   58|   383k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|   383k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|   383k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|   383k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|   383k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|   383k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|   383k|            "I" (i)); \
  |  |  |  |  |  |  289|   383k|            __RORc_tmp; \
  |  |  |  |  |  |  290|   383k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  |  |  ------------------
  |  |  |  |   59|   383k|#define R(x, n)         (((x)&0xFFFFFFFFUL)>>(n))
  |  |  ------------------
  ------------------
                      W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   62|   383k|#define Gamma0(x)       (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  |  |  ------------------
  |  |  |  |   58|   383k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|   383k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|   383k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|   383k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|   383k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|   383k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|   383k|            "I" (i)); \
  |  |  |  |  |  |  289|   383k|            __RORc_tmp; \
  |  |  |  |  |  |  290|   383k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  |  |  ------------------
  |  |  |  |   58|   383k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|   383k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|   383k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|   383k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|   383k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|   383k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|   383k|            "I" (i)); \
  |  |  |  |  |  |  289|   383k|            __RORc_tmp; \
  |  |  |  |  |  |  290|   383k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  |  |  ------------------
  |  |  |  |   59|   383k|#define R(x, n)         (((x)&0xFFFFFFFFUL)>>(n))
  |  |  ------------------
  ------------------
   91|   383k|    }
   92|       |
   93|       |    /* Compress */
   94|  7.98k|#ifdef LTC_SMALL_CODE
   95|  7.98k|#define RND(a,b,c,d,e,f,g,h,i)                         \
   96|  7.98k|     t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
   97|  7.98k|     t1 = Sigma0(a) + Maj(a, b, c);                    \
   98|  7.98k|     d += t0;                                          \
   99|  7.98k|     h  = t0 + t1;
  100|       |
  101|   518k|     for (i = 0; i < 64; ++i) {
  ------------------
  |  Branch (101:18): [True: 510k, False: 7.98k]
  ------------------
  102|   510k|         RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],i);
  ------------------
  |  |   96|   510k|     t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
  |  |  ------------------
  |  |  |  |   61|   510k|#define Sigma1(x)       (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|   510k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|   510k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|   510k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|   510k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|   510k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|   510k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|   510k|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|   510k|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|   510k|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma1(x)       (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|   510k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|   510k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|   510k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|   510k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|   510k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|   510k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|   510k|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|   510k|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|   510k|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma1(x)       (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|   510k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|   510k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|   510k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|   510k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|   510k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|   510k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|   510k|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|   510k|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|   510k|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
  |  |  ------------------
  |  |  |  |   56|   510k|#define Ch(x,y,z)       (z ^ (x & (y ^ z)))
  |  |  ------------------
  |  |   97|   510k|     t1 = Sigma0(a) + Maj(a, b, c);                    \
  |  |  ------------------
  |  |  |  |   60|   510k|#define Sigma0(x)       (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|   510k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|   510k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|   510k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|   510k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|   510k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|   510k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|   510k|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|   510k|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|   510k|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma0(x)       (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|   510k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|   510k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|   510k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|   510k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|   510k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|   510k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|   510k|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|   510k|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|   510k|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma0(x)       (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|   510k|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|   510k|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|   510k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|   510k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|   510k|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|   510k|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|   510k|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|   510k|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|   510k|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    t1 = Sigma0(a) + Maj(a, b, c);                    \
  |  |  ------------------
  |  |  |  |   57|   510k|#define Maj(x,y,z)      (((x | y) & z) | (x & y))
  |  |  ------------------
  |  |   98|   510k|     d += t0;                                          \
  |  |   99|   510k|     h  = t0 + t1;
  ------------------
  103|   510k|         t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4];
  104|   510k|         S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t;
  105|   510k|     }
  106|       |#else
  107|       |#define RND(a,b,c,d,e,f,g,h,i,ki)                    \
  108|       |     t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i];   \
  109|       |     t1 = Sigma0(a) + Maj(a, b, c);                  \
  110|       |     d += t0;                                        \
  111|       |     h  = t0 + t1;
  112|       |
  113|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],0,0x428a2f98);
  114|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],1,0x71374491);
  115|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],2,0xb5c0fbcf);
  116|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],3,0xe9b5dba5);
  117|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],4,0x3956c25b);
  118|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],5,0x59f111f1);
  119|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],6,0x923f82a4);
  120|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],7,0xab1c5ed5);
  121|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],8,0xd807aa98);
  122|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],9,0x12835b01);
  123|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],10,0x243185be);
  124|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],11,0x550c7dc3);
  125|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],12,0x72be5d74);
  126|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],13,0x80deb1fe);
  127|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],14,0x9bdc06a7);
  128|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],15,0xc19bf174);
  129|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],16,0xe49b69c1);
  130|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],17,0xefbe4786);
  131|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],18,0x0fc19dc6);
  132|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],19,0x240ca1cc);
  133|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],20,0x2de92c6f);
  134|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],21,0x4a7484aa);
  135|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],22,0x5cb0a9dc);
  136|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],23,0x76f988da);
  137|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],24,0x983e5152);
  138|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],25,0xa831c66d);
  139|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],26,0xb00327c8);
  140|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],27,0xbf597fc7);
  141|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],28,0xc6e00bf3);
  142|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],29,0xd5a79147);
  143|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],30,0x06ca6351);
  144|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],31,0x14292967);
  145|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],32,0x27b70a85);
  146|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],33,0x2e1b2138);
  147|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],34,0x4d2c6dfc);
  148|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],35,0x53380d13);
  149|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],36,0x650a7354);
  150|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],37,0x766a0abb);
  151|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],38,0x81c2c92e);
  152|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],39,0x92722c85);
  153|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],40,0xa2bfe8a1);
  154|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],41,0xa81a664b);
  155|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],42,0xc24b8b70);
  156|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],43,0xc76c51a3);
  157|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],44,0xd192e819);
  158|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],45,0xd6990624);
  159|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],46,0xf40e3585);
  160|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],47,0x106aa070);
  161|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],48,0x19a4c116);
  162|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],49,0x1e376c08);
  163|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],50,0x2748774c);
  164|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],51,0x34b0bcb5);
  165|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],52,0x391c0cb3);
  166|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],53,0x4ed8aa4a);
  167|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],54,0x5b9cca4f);
  168|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],55,0x682e6ff3);
  169|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],56,0x748f82ee);
  170|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],57,0x78a5636f);
  171|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],58,0x84c87814);
  172|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],59,0x8cc70208);
  173|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],60,0x90befffa);
  174|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],61,0xa4506ceb);
  175|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],62,0xbef9a3f7);
  176|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],63,0xc67178f2);
  177|       |
  178|       |#undef RND
  179|       |
  180|       |#endif
  181|       |
  182|       |    /* feedback */
  183|  71.8k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (183:17): [True: 63.8k, False: 7.98k]
  ------------------
  184|  63.8k|        md->sha256.state[i] = md->sha256.state[i] + S[i];
  185|  63.8k|    }
  186|  7.98k|    return CRYPT_OK;
  187|  7.98k|}

sha384_init:
   42|     49|{
   43|     49|    LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|     49|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 49]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   44|       |
   45|     49|    md->sha512.curlen = 0;
   46|     49|    md->sha512.length = 0;
   47|     49|    md->sha512.state[0] = CONST64(0xcbbb9d5dc1059ed8);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   48|     49|    md->sha512.state[1] = CONST64(0x629a292a367cd507);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   49|     49|    md->sha512.state[2] = CONST64(0x9159015a3070dd17);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   50|     49|    md->sha512.state[3] = CONST64(0x152fecd8f70e5939);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   51|     49|    md->sha512.state[4] = CONST64(0x67332667ffc00b31);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   52|     49|    md->sha512.state[5] = CONST64(0x8eb44a8768581511);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   53|     49|    md->sha512.state[6] = CONST64(0xdb0c2e0d64f98fa7);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   54|     49|    md->sha512.state[7] = CONST64(0x47b5481dbefa4fa4);
  ------------------
  |  |  200|     49|   #define CONST64(n) n ## ULL
  ------------------
   55|     49|    return CRYPT_OK;
   56|     49|}
sha384_done:
   65|     49|{
   66|     49|   unsigned char buf[64];
   67|       |
   68|     49|   LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|     49|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 49]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   69|     49|   LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|     49|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 49]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   70|       |
   71|     49|    if (md->sha512.curlen >= sizeof(md->sha512.buf)) {
  ------------------
  |  Branch (71:9): [True: 0, False: 49]
  ------------------
   72|      0|       return CRYPT_INVALID_ARG;
   73|      0|    }
   74|       |
   75|     49|   sha512_done(md, buf);
   76|     49|   XMEMCPY(out, buf, 48);
  ------------------
  |  |   39|     49|#define XMEMCPY  memcpy
  ------------------
   77|       |#ifdef LTC_CLEAN_STACK
   78|       |   zeromem(buf, sizeof(buf));
   79|       |#endif
   80|     49|   return CRYPT_OK;
   81|     49|}

sha512_init:
  174|    119|{
  175|    119|    LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|    119|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 119]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  176|    119|    md->sha512.curlen = 0;
  177|    119|    md->sha512.length = 0;
  178|    119|    md->sha512.state[0] = CONST64(0x6a09e667f3bcc908);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  179|    119|    md->sha512.state[1] = CONST64(0xbb67ae8584caa73b);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  180|    119|    md->sha512.state[2] = CONST64(0x3c6ef372fe94f82b);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  181|    119|    md->sha512.state[3] = CONST64(0xa54ff53a5f1d36f1);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  182|    119|    md->sha512.state[4] = CONST64(0x510e527fade682d1);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  183|    119|    md->sha512.state[5] = CONST64(0x9b05688c2b3e6c1f);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  184|    119|    md->sha512.state[6] = CONST64(0x1f83d9abfb41bd6b);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  185|    119|    md->sha512.state[7] = CONST64(0x5be0cd19137e2179);
  ------------------
  |  |  200|    119|   #define CONST64(n) n ## ULL
  ------------------
  186|    119|    return CRYPT_OK;
  187|    119|}
sha512_done:
  205|    168|{
  206|    168|    int i;
  207|       |
  208|    168|    LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|    168|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 168]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  209|    168|    LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|    168|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 168]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  210|       |
  211|    168|    if (md->sha512.curlen >= sizeof(md->sha512.buf)) {
  ------------------
  |  Branch (211:9): [True: 0, False: 168]
  ------------------
  212|      0|       return CRYPT_INVALID_ARG;
  213|      0|    }
  214|       |
  215|       |    /* increase the length of the message */
  216|    168|    md->sha512.length += md->sha512.curlen * CONST64(8);
  ------------------
  |  |  200|    168|   #define CONST64(n) n ## ULL
  ------------------
  217|       |
  218|       |    /* append the '1' bit */
  219|    168|    md->sha512.buf[md->sha512.curlen++] = (unsigned char)0x80;
  220|       |
  221|       |    /* if the length is currently above 112 bytes we append zeros
  222|       |     * then compress.  Then we can fall back to padding zeros and length
  223|       |     * encoding like normal.
  224|       |     */
  225|    168|    if (md->sha512.curlen > 112) {
  ------------------
  |  Branch (225:9): [True: 0, False: 168]
  ------------------
  226|      0|        while (md->sha512.curlen < 128) {
  ------------------
  |  Branch (226:16): [True: 0, False: 0]
  ------------------
  227|      0|            md->sha512.buf[md->sha512.curlen++] = (unsigned char)0;
  228|      0|        }
  229|      0|        sha512_compress(md, md->sha512.buf);
  230|      0|        md->sha512.curlen = 0;
  231|      0|    }
  232|       |
  233|       |    /* pad upto 120 bytes of zeroes
  234|       |     * note: that from 112 to 120 is the 64 MSB of the length.  We assume that you won't hash
  235|       |     * > 2^64 bits of data... :-)
  236|       |     */
  237|  18.7k|    while (md->sha512.curlen < 120) {
  ------------------
  |  Branch (237:12): [True: 18.5k, False: 168]
  ------------------
  238|  18.5k|        md->sha512.buf[md->sha512.curlen++] = (unsigned char)0;
  239|  18.5k|    }
  240|       |
  241|       |    /* store length */
  242|    168|    STORE64H(md->sha512.length, md->sha512.buf+120);
  ------------------
  |  |  101|    168|#define STORE64H(x, y)                          \
  |  |  102|    168|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|    168|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|    168|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  243|    168|    sha512_compress(md, md->sha512.buf);
  244|       |
  245|       |    /* copy output */
  246|  1.51k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (246:17): [True: 1.34k, False: 168]
  ------------------
  247|  1.34k|        STORE64H(md->sha512.state[i], out+(8*i));
  ------------------
  |  |  101|  1.34k|#define STORE64H(x, y)                          \
  |  |  102|  1.34k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|  1.34k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|  1.34k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  248|  1.34k|    }
  249|       |#ifdef LTC_CLEAN_STACK
  250|       |    zeromem(md, sizeof(hash_state));
  251|       |#endif
  252|    168|    return CRYPT_OK;
  253|    168|}
sha512.c:sha512_compress:
   96|    218|{
   97|    218|    ulong64 S[8], W[80], t0, t1;
   98|    218|    int i;
   99|       |
  100|       |    /* copy state into S */
  101|  1.96k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (101:17): [True: 1.74k, False: 218]
  ------------------
  102|  1.74k|        S[i] = md->sha512.state[i];
  103|  1.74k|    }
  104|       |
  105|       |    /* copy the state into 1024-bits into W[0..15] */
  106|  3.70k|    for (i = 0; i < 16; i++) {
  ------------------
  |  Branch (106:17): [True: 3.48k, False: 218]
  ------------------
  107|  3.48k|        LOAD64H(W[i], buf + (8*i));
  ------------------
  |  |  105|  3.48k|#define LOAD64H(x, y)                           \
  |  |  106|  3.48k|do { XMEMCPY (&(x), (y), 8);                    \
  |  |  ------------------
  |  |  |  |   39|  3.48k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  107|  3.48k|      (x) = __builtin_bswap64 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (107:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  108|  3.48k|    }
  109|       |
  110|       |    /* fill W[16..79] */
  111|  14.1k|    for (i = 16; i < 80; i++) {
  ------------------
  |  Branch (111:18): [True: 13.9k, False: 218]
  ------------------
  112|  13.9k|        W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   88|  13.9k|#define Gamma1(x)       (S(x, 19) ^ S(x, 61) ^ R(x, 6))
  |  |  ------------------
  |  |  |  |   83|  13.9k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  13.9k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  13.9k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  13.9k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  13.9k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  13.9k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  13.9k|            "J" (i)); \
  |  |  |  |  |  |  390|  13.9k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  13.9k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 19) ^ S(x, 61) ^ R(x, 6))
  |  |  ------------------
  |  |  |  |   83|  13.9k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  13.9k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  13.9k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  13.9k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  13.9k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  13.9k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  13.9k|            "J" (i)); \
  |  |  |  |  |  |  390|  13.9k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  13.9k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 19) ^ S(x, 61) ^ R(x, 6))
  |  |  ------------------
  |  |  |  |   84|  13.9k|#define R(x, n)         (((x)&CONST64(0xFFFFFFFFFFFFFFFF))>>((ulong64)n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  200|  13.9k|   #define CONST64(n) n ## ULL
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   87|  13.9k|#define Gamma0(x)       (S(x, 1) ^ S(x, 8) ^ R(x, 7))
  |  |  ------------------
  |  |  |  |   83|  13.9k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  13.9k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  13.9k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  13.9k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  13.9k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  13.9k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  13.9k|            "J" (i)); \
  |  |  |  |  |  |  390|  13.9k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  13.9k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 1) ^ S(x, 8) ^ R(x, 7))
  |  |  ------------------
  |  |  |  |   83|  13.9k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  13.9k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  13.9k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  13.9k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  13.9k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  13.9k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  13.9k|            "J" (i)); \
  |  |  |  |  |  |  390|  13.9k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  13.9k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 1) ^ S(x, 8) ^ R(x, 7))
  |  |  ------------------
  |  |  |  |   84|  13.9k|#define R(x, n)         (((x)&CONST64(0xFFFFFFFFFFFFFFFF))>>((ulong64)n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  200|  13.9k|   #define CONST64(n) n ## ULL
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  113|  13.9k|    }
  114|       |
  115|       |    /* Compress */
  116|    218|#ifdef LTC_SMALL_CODE
  117|  17.6k|    for (i = 0; i < 80; i++) {
  ------------------
  |  Branch (117:17): [True: 17.4k, False: 218]
  ------------------
  118|  17.4k|        t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
  ------------------
  |  |   86|  17.4k|#define Sigma1(x)       (S(x, 14) ^ S(x, 18) ^ S(x, 41))
  |  |  ------------------
  |  |  |  |   83|  17.4k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  17.4k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  17.4k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  17.4k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  17.4k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  17.4k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  17.4k|            "J" (i)); \
  |  |  |  |  |  |  390|  17.4k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  17.4k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma1(x)       (S(x, 14) ^ S(x, 18) ^ S(x, 41))
  |  |  ------------------
  |  |  |  |   83|  17.4k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  17.4k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  17.4k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  17.4k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  17.4k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  17.4k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  17.4k|            "J" (i)); \
  |  |  |  |  |  |  390|  17.4k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  17.4k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma1(x)       (S(x, 14) ^ S(x, 18) ^ S(x, 41))
  |  |  ------------------
  |  |  |  |   83|  17.4k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  17.4k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  17.4k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  17.4k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  17.4k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  17.4k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  17.4k|            "J" (i)); \
  |  |  |  |  |  |  390|  17.4k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  17.4k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
  ------------------
  |  |   81|  17.4k|#define Ch(x,y,z)       (z ^ (x & (y ^ z)))
  ------------------
  119|  17.4k|        t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
  ------------------
  |  |   85|  17.4k|#define Sigma0(x)       (S(x, 28) ^ S(x, 34) ^ S(x, 39))
  |  |  ------------------
  |  |  |  |   83|  17.4k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  17.4k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  17.4k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  17.4k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  17.4k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  17.4k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  17.4k|            "J" (i)); \
  |  |  |  |  |  |  390|  17.4k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  17.4k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma0(x)       (S(x, 28) ^ S(x, 34) ^ S(x, 39))
  |  |  ------------------
  |  |  |  |   83|  17.4k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  17.4k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  17.4k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  17.4k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  17.4k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  17.4k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  17.4k|            "J" (i)); \
  |  |  |  |  |  |  390|  17.4k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  17.4k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma0(x)       (S(x, 28) ^ S(x, 34) ^ S(x, 39))
  |  |  ------------------
  |  |  |  |   83|  17.4k|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  17.4k|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  17.4k|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  17.4k|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  17.4k|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  17.4k|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  17.4k|            "J" (i)); \
  |  |  |  |  |  |  390|  17.4k|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  17.4k|   })
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
  ------------------
  |  |   82|  17.4k|#define Maj(x,y,z)      (((x | y) & z) | (x & y))
  ------------------
  120|  17.4k|        S[7] = S[6];
  121|  17.4k|        S[6] = S[5];
  122|  17.4k|        S[5] = S[4];
  123|  17.4k|        S[4] = S[3] + t0;
  124|  17.4k|        S[3] = S[2];
  125|  17.4k|        S[2] = S[1];
  126|  17.4k|        S[1] = S[0];
  127|  17.4k|        S[0] = t0 + t1;
  128|  17.4k|    }
  129|       |#else
  130|       |#define RND(a,b,c,d,e,f,g,h,i)                    \
  131|       |     t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
  132|       |     t1 = Sigma0(a) + Maj(a, b, c);                  \
  133|       |     d += t0;                                        \
  134|       |     h  = t0 + t1;
  135|       |
  136|       |    for (i = 0; i < 80; i += 8) {
  137|       |        RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],i+0);
  138|       |        RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],i+1);
  139|       |        RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],i+2);
  140|       |        RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],i+3);
  141|       |        RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],i+4);
  142|       |        RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],i+5);
  143|       |        RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],i+6);
  144|       |        RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],i+7);
  145|       |    }
  146|       |#endif
  147|       |
  148|       |
  149|       |    /* feedback */
  150|  1.96k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (150:17): [True: 1.74k, False: 218]
  ------------------
  151|  1.74k|        md->sha512.state[i] = md->sha512.state[i] + S[i];
  152|  1.74k|    }
  153|       |
  154|    218|    return CRYPT_OK;
  155|    218|}

sha1_process:
  491|  1.00k|int func_name (hash_state * md, const unsigned char *in, unsigned long inlen)               \
  492|  1.00k|{                                                                                           \
  493|  1.00k|    unsigned long n;                                                                        \
  494|  1.00k|    int           err;                                                                      \
  495|  1.00k|    LTC_ARGCHK(md != NULL);                                                                 \
  ------------------
  |  |   32|  1.00k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  496|  1.00k|    LTC_ARGCHK(in != NULL);                                                                 \
  ------------------
  |  |   32|  1.00k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  497|  1.00k|    if (md-> state_var .curlen > sizeof(md-> state_var .buf)) {                             \
  ------------------
  |  Branch (497:9): [True: 0, False: 1.00k]
  ------------------
  498|      0|       return CRYPT_INVALID_ARG;                                                            \
  499|      0|    }                                                                                       \
  500|  1.00k|    if ((md-> state_var .length + inlen) < md-> state_var .length) {                        \
  ------------------
  |  Branch (500:9): [True: 0, False: 1.00k]
  ------------------
  501|      0|      return CRYPT_HASH_OVERFLOW;                                                           \
  502|      0|    }                                                                                       \
  503|  2.01k|    while (inlen > 0) {                                                                     \
  ------------------
  |  Branch (503:12): [True: 1.00k, False: 1.00k]
  ------------------
  504|  1.00k|        if (md-> state_var .curlen == 0 && inlen >= block_size) {                           \
  ------------------
  |  Branch (504:13): [True: 1.00k, False: 0]
  |  Branch (504:44): [True: 0, False: 1.00k]
  ------------------
  505|      0|           if ((err = compress_name (md, (unsigned char *)in)) != CRYPT_OK) {               \
  ------------------
  |  Branch (505:16): [True: 0, False: 0]
  ------------------
  506|      0|              return err;                                                                   \
  507|      0|           }                                                                                \
  508|      0|           md-> state_var .length += block_size * 8;                                        \
  509|      0|           in             += block_size;                                                    \
  510|      0|           inlen          -= block_size;                                                    \
  511|  1.00k|        } else {                                                                            \
  512|  1.00k|           n = MIN(inlen, (block_size - md-> state_var .curlen));                           \
  ------------------
  |  |  425|  1.00k|   #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (425:24): [True: 1.00k, False: 0]
  |  |  ------------------
  ------------------
  513|  1.00k|           XMEMCPY(md-> state_var .buf + md-> state_var.curlen, in, (size_t)n);             \
  ------------------
  |  |   39|  1.00k|#define XMEMCPY  memcpy
  ------------------
  514|  1.00k|           md-> state_var .curlen += n;                                                     \
  515|  1.00k|           in             += n;                                                             \
  516|  1.00k|           inlen          -= n;                                                             \
  517|  1.00k|           if (md-> state_var .curlen == block_size) {                                      \
  ------------------
  |  Branch (517:16): [True: 0, False: 1.00k]
  ------------------
  518|      0|              if ((err = compress_name (md, md-> state_var .buf)) != CRYPT_OK) {            \
  ------------------
  |  Branch (518:19): [True: 0, False: 0]
  ------------------
  519|      0|                 return err;                                                                \
  520|      0|              }                                                                             \
  521|      0|              md-> state_var .length += 8*block_size;                                       \
  522|      0|              md-> state_var .curlen = 0;                                                   \
  523|      0|           }                                                                                \
  524|  1.00k|       }                                                                                    \
  525|  1.00k|    }                                                                                       \
  526|  1.00k|    return CRYPT_OK;                                                                        \
  527|  1.00k|}
sha256_process:
  491|  13.5k|int func_name (hash_state * md, const unsigned char *in, unsigned long inlen)               \
  492|  13.5k|{                                                                                           \
  493|  13.5k|    unsigned long n;                                                                        \
  494|  13.5k|    int           err;                                                                      \
  495|  13.5k|    LTC_ARGCHK(md != NULL);                                                                 \
  ------------------
  |  |   32|  13.5k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 13.5k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  496|  13.5k|    LTC_ARGCHK(in != NULL);                                                                 \
  ------------------
  |  |   32|  13.5k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 13.5k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  497|  13.5k|    if (md-> state_var .curlen > sizeof(md-> state_var .buf)) {                             \
  ------------------
  |  Branch (497:9): [True: 0, False: 13.5k]
  ------------------
  498|      0|       return CRYPT_INVALID_ARG;                                                            \
  499|      0|    }                                                                                       \
  500|  13.5k|    if ((md-> state_var .length + inlen) < md-> state_var .length) {                        \
  ------------------
  |  Branch (500:9): [True: 0, False: 13.5k]
  ------------------
  501|      0|      return CRYPT_HASH_OVERFLOW;                                                           \
  502|      0|    }                                                                                       \
  503|  28.1k|    while (inlen > 0) {                                                                     \
  ------------------
  |  Branch (503:12): [True: 14.5k, False: 13.5k]
  ------------------
  504|  14.5k|        if (md-> state_var .curlen == 0 && inlen >= block_size) {                           \
  ------------------
  |  Branch (504:13): [True: 7.94k, False: 6.64k]
  |  Branch (504:44): [True: 1.04k, False: 6.90k]
  ------------------
  505|  1.04k|           if ((err = compress_name (md, (unsigned char *)in)) != CRYPT_OK) {               \
  ------------------
  |  Branch (505:16): [True: 0, False: 1.04k]
  ------------------
  506|      0|              return err;                                                                   \
  507|      0|           }                                                                                \
  508|  1.04k|           md-> state_var .length += block_size * 8;                                        \
  509|  1.04k|           in             += block_size;                                                    \
  510|  1.04k|           inlen          -= block_size;                                                    \
  511|  13.5k|        } else {                                                                            \
  512|  13.5k|           n = MIN(inlen, (block_size - md-> state_var .curlen));                           \
  ------------------
  |  |  425|  13.5k|   #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (425:24): [True: 13.5k, False: 0]
  |  |  ------------------
  ------------------
  513|  13.5k|           XMEMCPY(md-> state_var .buf + md-> state_var.curlen, in, (size_t)n);             \
  ------------------
  |  |   39|  13.5k|#define XMEMCPY  memcpy
  ------------------
  514|  13.5k|           md-> state_var .curlen += n;                                                     \
  515|  13.5k|           in             += n;                                                             \
  516|  13.5k|           inlen          -= n;                                                             \
  517|  13.5k|           if (md-> state_var .curlen == block_size) {                                      \
  ------------------
  |  Branch (517:16): [True: 0, False: 13.5k]
  ------------------
  518|      0|              if ((err = compress_name (md, md-> state_var .buf)) != CRYPT_OK) {            \
  ------------------
  |  Branch (518:19): [True: 0, False: 0]
  ------------------
  519|      0|                 return err;                                                                \
  520|      0|              }                                                                             \
  521|      0|              md-> state_var .length += 8*block_size;                                       \
  522|      0|              md-> state_var .curlen = 0;                                                   \
  523|      0|           }                                                                                \
  524|  13.5k|       }                                                                                    \
  525|  14.5k|    }                                                                                       \
  526|  13.5k|    return CRYPT_OK;                                                                        \
  527|  13.5k|}
sha512_process:
  491|    286|int func_name (hash_state * md, const unsigned char *in, unsigned long inlen)               \
  492|    286|{                                                                                           \
  493|    286|    unsigned long n;                                                                        \
  494|    286|    int           err;                                                                      \
  495|    286|    LTC_ARGCHK(md != NULL);                                                                 \
  ------------------
  |  |   32|    286|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 286]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  496|    286|    LTC_ARGCHK(in != NULL);                                                                 \
  ------------------
  |  |   32|    286|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 286]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  497|    286|    if (md-> state_var .curlen > sizeof(md-> state_var .buf)) {                             \
  ------------------
  |  Branch (497:9): [True: 0, False: 286]
  ------------------
  498|      0|       return CRYPT_INVALID_ARG;                                                            \
  499|      0|    }                                                                                       \
  500|    286|    if ((md-> state_var .length + inlen) < md-> state_var .length) {                        \
  ------------------
  |  Branch (500:9): [True: 0, False: 286]
  ------------------
  501|      0|      return CRYPT_HASH_OVERFLOW;                                                           \
  502|      0|    }                                                                                       \
  503|    622|    while (inlen > 0) {                                                                     \
  ------------------
  |  Branch (503:12): [True: 336, False: 286]
  ------------------
  504|    336|        if (md-> state_var .curlen == 0 && inlen >= block_size) {                           \
  ------------------
  |  Branch (504:13): [True: 218, False: 118]
  |  Branch (504:44): [True: 0, False: 218]
  ------------------
  505|      0|           if ((err = compress_name (md, (unsigned char *)in)) != CRYPT_OK) {               \
  ------------------
  |  Branch (505:16): [True: 0, False: 0]
  ------------------
  506|      0|              return err;                                                                   \
  507|      0|           }                                                                                \
  508|      0|           md-> state_var .length += block_size * 8;                                        \
  509|      0|           in             += block_size;                                                    \
  510|      0|           inlen          -= block_size;                                                    \
  511|    336|        } else {                                                                            \
  512|    336|           n = MIN(inlen, (block_size - md-> state_var .curlen));                           \
  ------------------
  |  |  425|    336|   #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (425:24): [True: 286, False: 50]
  |  |  ------------------
  ------------------
  513|    336|           XMEMCPY(md-> state_var .buf + md-> state_var.curlen, in, (size_t)n);             \
  ------------------
  |  |   39|    336|#define XMEMCPY  memcpy
  ------------------
  514|    336|           md-> state_var .curlen += n;                                                     \
  515|    336|           in             += n;                                                             \
  516|    336|           inlen          -= n;                                                             \
  517|    336|           if (md-> state_var .curlen == block_size) {                                      \
  ------------------
  |  Branch (517:16): [True: 50, False: 286]
  ------------------
  518|     50|              if ((err = compress_name (md, md-> state_var .buf)) != CRYPT_OK) {            \
  ------------------
  |  Branch (518:19): [True: 0, False: 50]
  ------------------
  519|      0|                 return err;                                                                \
  520|      0|              }                                                                             \
  521|     50|              md-> state_var .length += 8*block_size;                                       \
  522|     50|              md-> state_var .curlen = 0;                                                   \
  523|     50|           }                                                                                \
  524|    336|       }                                                                                    \
  525|    336|    }                                                                                       \
  526|    286|    return CRYPT_OK;                                                                        \
  527|    286|}

sha1.c:ROL:
  258|  64.5k|{
  259|  64.5k|   asm ("roll %%cl,%0"
  260|  64.5k|      :"=r" (word)
  261|  64.5k|      :"0" (word),"c" (i));
  262|  64.5k|   return word;
  263|  64.5k|}

ltm_desc.c:init:
   58|   398k|{
   59|   398k|   int err;
   60|       |
   61|   398k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   398k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 398k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   62|       |
   63|   398k|   if ((err = init_mpi(a)) != CRYPT_OK) {
  ------------------
  |  Branch (63:8): [True: 0, False: 398k]
  ------------------
   64|      0|      return err;
   65|      0|   }
   66|   398k|   if ((err = mpi_to_ltc_error(mp_init(*a))) != CRYPT_OK) {
  ------------------
  |  Branch (66:8): [True: 0, False: 398k]
  ------------------
   67|      0|      XFREE(*a);
  ------------------
  |  |   17|      0|#define XFREE m_free_direct
  ------------------
   68|      0|   }
   69|   398k|   return err;
   70|   398k|}
ltm_desc.c:init_mpi:
   46|   398k|{
   47|   398k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   398k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 398k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   48|       |
   49|   398k|   *a = XCALLOC(1, sizeof(mp_int));
  ------------------
  |  |   19|   398k|#define XCALLOC m_calloc
  ------------------
   50|   398k|   if (*a == NULL) {
  ------------------
  |  Branch (50:8): [True: 0, False: 398k]
  ------------------
   51|      0|      return CRYPT_MEM;
   52|   398k|   } else {
   53|   398k|      return CRYPT_OK;
   54|   398k|   }
   55|   398k|}
ltm_desc.c:mpi_to_ltc_error:
   34|  5.52M|{
   35|  5.52M|   size_t x;
   36|       |
   37|  5.52M|   for (x = 0; x < sizeof(mpi_to_ltc_codes)/sizeof(mpi_to_ltc_codes[0]); x++) {
  ------------------
  |  Branch (37:16): [True: 5.52M, False: 0]
  ------------------
   38|  5.52M|       if (err == mpi_to_ltc_codes[x].mpi_code) {
  ------------------
  |  Branch (38:12): [True: 5.52M, False: 0]
  ------------------
   39|  5.52M|          return mpi_to_ltc_codes[x].ltc_code;
   40|  5.52M|       }
   41|  5.52M|   }
   42|      0|   return CRYPT_ERROR;
   43|  5.52M|}
ltm_desc.c:deinit:
   73|   400k|{
   74|   400k|   LTC_ARGCHKVD(a != NULL);
  ------------------
  |  |   33|   400k|#define LTC_ARGCHKVD(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (33:34): [True: 0, False: 400k]
  |  |  |  Branch (33:89): [Folded - Ignored]
  |  |  ------------------
  ------------------
   75|   400k|   mp_clear(a);
   76|   400k|   XFREE(a);
  ------------------
  |  |   17|   400k|#define XFREE m_free_direct
  ------------------
   77|   400k|}
ltm_desc.c:copy:
   87|   253k|{
   88|   253k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   253k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 253k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   89|   253k|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|   253k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 253k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   90|   253k|   return mpi_to_ltc_error(mp_copy(a, b));
   91|   253k|}
ltm_desc.c:set_int:
  104|    504|{
  105|    504|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    504|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 504]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  106|    504|   mp_set_u32(a, b);
  107|    504|   return CRYPT_OK;
  108|    504|}
ltm_desc.c:get_digit:
  117|   127k|{
  118|   127k|   mp_int *A;
  119|   127k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   127k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 127k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  120|   127k|   A = a;
  121|   127k|   return (n >= A->used || n < 0) ? 0 : A->dp[n];
  ------------------
  |  Branch (121:12): [True: 0, False: 127k]
  |  Branch (121:28): [True: 0, False: 127k]
  ------------------
  122|   127k|}
ltm_desc.c:get_digit_count:
  125|   127k|{
  126|   127k|   mp_int *A;
  127|   127k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   127k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 127k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  128|   127k|   A = a;
  129|   127k|   return A->used;
  130|   127k|}
ltm_desc.c:compare:
  133|   640k|{
  134|   640k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   640k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 640k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  135|   640k|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|   640k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 640k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  136|   640k|   switch (mp_cmp(a, b)) {
  137|   319k|      case MP_LT: return LTC_MP_LT;
  ------------------
  |  |  154|   319k|#define MP_LT        -1   /* less than */
  ------------------
                    case MP_LT: return LTC_MP_LT;
  ------------------
  |  |   12|   319k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (137:7): [True: 319k, False: 320k]
  ------------------
  138|      0|      case MP_EQ: return LTC_MP_EQ;
  ------------------
  |  |  155|      0|#define MP_EQ         0   /* equal to */
  ------------------
                    case MP_EQ: return LTC_MP_EQ;
  ------------------
  |  |   13|      0|#define LTC_MP_EQ    0
  ------------------
  |  Branch (138:7): [True: 0, False: 640k]
  ------------------
  139|   320k|      case MP_GT: return LTC_MP_GT;
  ------------------
  |  |  156|   320k|#define MP_GT         1   /* greater than */
  ------------------
                    case MP_GT: return LTC_MP_GT;
  ------------------
  |  |   14|   320k|#define LTC_MP_GT    1
  ------------------
  |  Branch (139:7): [True: 320k, False: 319k]
  ------------------
  140|      0|      default:    return 0;
  ------------------
  |  Branch (140:7): [True: 0, False: 640k]
  ------------------
  141|   640k|   }
  142|   640k|}
ltm_desc.c:compare_d:
  145|   682k|{
  146|   682k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   682k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 682k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  147|   682k|   switch (mp_cmp_d(a, b)) {
  148|   340k|      case MP_LT: return LTC_MP_LT;
  ------------------
  |  |  154|   340k|#define MP_LT        -1   /* less than */
  ------------------
                    case MP_LT: return LTC_MP_LT;
  ------------------
  |  |   12|   340k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (148:7): [True: 340k, False: 341k]
  ------------------
  149|      4|      case MP_EQ: return LTC_MP_EQ;
  ------------------
  |  |  155|      4|#define MP_EQ         0   /* equal to */
  ------------------
                    case MP_EQ: return LTC_MP_EQ;
  ------------------
  |  |   13|      4|#define LTC_MP_EQ    0
  ------------------
  |  Branch (149:7): [True: 4, False: 682k]
  ------------------
  150|   341k|      case MP_GT: return LTC_MP_GT;
  ------------------
  |  |  156|   341k|#define MP_GT         1   /* greater than */
  ------------------
                    case MP_GT: return LTC_MP_GT;
  ------------------
  |  |   14|   341k|#define LTC_MP_GT    1
  ------------------
  |  Branch (150:7): [True: 341k, False: 340k]
  ------------------
  151|      0|      default:    return 0;
  ------------------
  |  Branch (151:7): [True: 0, False: 682k]
  ------------------
  152|   682k|   }
  153|   682k|}
ltm_desc.c:read_radix:
  178|  1.02k|{
  179|  1.02k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|  1.02k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.02k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  180|  1.02k|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|  1.02k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.02k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  181|  1.02k|   return mpi_to_ltc_error(mp_read_radix(a, b, radix));
  182|  1.02k|}
ltm_desc.c:unsigned_size:
  194|    504|{
  195|    504|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    504|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 504]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  196|    504|   return (unsigned long)mp_ubin_size(a);
  197|    504|}
ltm_desc.c:unsigned_write:
  201|    504|{
  202|    504|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    504|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 504]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  203|    504|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|    504|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 504]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  204|    504|   return mpi_to_ltc_error(mp_to_ubin(a, b, SIZE_MAX, NULL));
  205|    504|}
ltm_desc.c:unsigned_read:
  209|    258|{
  210|    258|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    258|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 258]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  211|    258|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|    258|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 258]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  212|    258|   return mpi_to_ltc_error(mp_from_ubin(a, b, (size_t)len));
  213|    258|}
ltm_desc.c:add:
  217|  1.00M|{
  218|  1.00M|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|  1.00M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  219|  1.00M|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|  1.00M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  220|  1.00M|   LTC_ARGCHK(c != NULL);
  ------------------
  |  |   32|  1.00M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.00M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  221|  1.00M|   return mpi_to_ltc_error(mp_add(a, b, c));
  222|  1.00M|}
ltm_desc.c:sub:
  233|  1.02M|{
  234|  1.02M|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|  1.02M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.02M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  235|  1.02M|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|  1.02M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.02M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  236|  1.02M|   LTC_ARGCHK(c != NULL);
  ------------------
  |  |   32|  1.02M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.02M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  237|  1.02M|   return mpi_to_ltc_error(mp_sub(a, b, c));
  238|  1.02M|}
ltm_desc.c:mul:
  249|   847k|{
  250|   847k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   847k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 847k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  251|   847k|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|   847k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 847k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  252|   847k|   LTC_ARGCHK(c != NULL);
  ------------------
  |  |   32|   847k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 847k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  253|   847k|   return mpi_to_ltc_error(mp_mul(a, b, c));
  254|   847k|}
ltm_desc.c:sqr:
  265|   512k|{
  266|   512k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   512k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 512k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  267|   512k|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|   512k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 512k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  268|   512k|   return mpi_to_ltc_error(mp_sqr(a, b));
  269|   512k|}
ltm_desc.c:divide:
  273|    756|{
  274|    756|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    756|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 756]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  275|    756|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|    756|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 756]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  276|    756|   return mpi_to_ltc_error(mp_div(a, b, c, d));
  277|    756|}
ltm_desc.c:div_2:
  280|   127k|{
  281|   127k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|   127k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 127k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  282|   127k|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|   127k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 127k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  283|   127k|   return mpi_to_ltc_error(mp_div_2(a, b));
  284|   127k|}
ltm_desc.c:mulmod:
  339|  2.01k|{
  340|  2.01k|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|  2.01k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 2.01k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  341|  2.01k|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|  2.01k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 2.01k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  342|  2.01k|   LTC_ARGCHK(c != NULL);
  ------------------
  |  |   32|  2.01k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 2.01k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  343|  2.01k|   LTC_ARGCHK(d != NULL);
  ------------------
  |  |   32|  2.01k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 2.01k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  344|  2.01k|   return mpi_to_ltc_error(mp_mulmod(a,b,c,d));
  345|  2.01k|}
ltm_desc.c:invmod:
  357|    504|{
  358|    504|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    504|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 504]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  359|    504|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|    504|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 504]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  360|    504|   LTC_ARGCHK(c != NULL);
  ------------------
  |  |   32|    504|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 504]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  361|    504|   return mpi_to_ltc_error(mp_invmod(a, b, c));
  362|    504|}
ltm_desc.c:montgomery_setup:
  366|    252|{
  367|    252|   int err;
  368|    252|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  369|    252|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  370|    252|   *b = XCALLOC(1, sizeof(mp_digit));
  ------------------
  |  |   19|    252|#define XCALLOC m_calloc
  ------------------
  371|    252|   if (*b == NULL) {
  ------------------
  |  Branch (371:8): [True: 0, False: 252]
  ------------------
  372|      0|      return CRYPT_MEM;
  373|      0|   }
  374|    252|   if ((err = mpi_to_ltc_error(mp_montgomery_setup(a, (mp_digit *)*b))) != CRYPT_OK) {
  ------------------
  |  Branch (374:8): [True: 0, False: 252]
  ------------------
  375|      0|      XFREE(*b);
  ------------------
  |  |   17|      0|#define XFREE m_free_direct
  ------------------
  376|      0|   }
  377|    252|   return err;
  378|    252|}
ltm_desc.c:montgomery_normalization:
  382|    252|{
  383|    252|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  384|    252|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  385|    252|   return mpi_to_ltc_error(mp_montgomery_calc_normalization(a, b));
  386|    252|}
ltm_desc.c:montgomery_reduce:
  390|  1.35M|{
  391|  1.35M|   LTC_ARGCHK(a != NULL);
  ------------------
  |  |   32|  1.35M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.35M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  392|  1.35M|   LTC_ARGCHK(b != NULL);
  ------------------
  |  |   32|  1.35M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.35M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  393|  1.35M|   LTC_ARGCHK(c != NULL);
  ------------------
  |  |   32|  1.35M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.35M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  394|  1.35M|   return mpi_to_ltc_error(mp_montgomery_reduce(a, b, *((mp_digit *)c)));
  395|  1.35M|}
ltm_desc.c:montgomery_deinit:
  399|    252|{
  400|    252|   XFREE(a);
  ------------------
  |  |   17|    252|#define XFREE m_free_direct
  ------------------
  401|    252|}

ltc_init_multi:
   15|   133k|{
   16|   133k|   void    **cur = a;
   17|   133k|   int       np  = 0;
   18|   133k|   va_list   args;
   19|       |
   20|   133k|   va_start(args, a);
   21|   531k|   while (cur != NULL) {
  ------------------
  |  Branch (21:11): [True: 398k, False: 133k]
  ------------------
   22|   398k|       if (mp_init(cur) != CRYPT_OK) {
  ------------------
  |  |  516|   398k|#define mp_init(a)                   ltc_mp.init(a)
  ------------------
  |  Branch (22:12): [True: 0, False: 398k]
  ------------------
   23|       |          /* failed */
   24|      0|          va_list clean_list;
   25|       |
   26|      0|          va_start(clean_list, a);
   27|      0|          cur = a;
   28|      0|          while (np--) {
  ------------------
  |  Branch (28:18): [True: 0, False: 0]
  ------------------
   29|      0|              mp_clear(*cur);
  ------------------
  |  |  518|      0|#define mp_clear(a)                  ltc_mp.deinit(a)
  ------------------
   30|      0|              cur = va_arg(clean_list, void**);
   31|      0|          }
   32|      0|          va_end(clean_list);
   33|      0|          va_end(args);
   34|      0|          return CRYPT_MEM;
   35|      0|       }
   36|   398k|       ++np;
   37|   398k|       cur = va_arg(args, void**);
   38|   398k|   }
   39|   133k|   va_end(args);
   40|   133k|   return CRYPT_OK;
   41|   133k|}
ltc_deinit_multi:
   44|   133k|{
   45|   133k|   void     *cur = a;
   46|   133k|   va_list   args;
   47|       |
   48|   133k|   va_start(args, a);
   49|   534k|   while (cur != NULL) {
  ------------------
  |  Branch (49:11): [True: 400k, False: 133k]
  ------------------
   50|   400k|       mp_clear(cur);
  ------------------
  |  |  518|   400k|#define mp_clear(a)                  ltc_mp.deinit(a)
  ------------------
   51|   400k|       cur = va_arg(args, void *);
   52|   400k|   }
   53|   133k|   va_end(args);
   54|   133k|}

register_cipher:
   22|      1|{
   23|      1|   int x;
   24|       |
   25|      1|   LTC_ARGCHK(cipher != NULL);
  ------------------
  |  |   32|      1|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   26|       |
   27|       |   /* is it already registered? */
   28|      1|   LTC_MUTEX_LOCK(&ltc_cipher_mutex);
   29|      6|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      6|#define TAB_SIZE      5
  ------------------
  |  Branch (29:16): [True: 5, False: 1]
  ------------------
   30|      5|       if (cipher_descriptor[x].name != NULL && cipher_descriptor[x].ID == cipher->ID) {
  ------------------
  |  Branch (30:12): [True: 0, False: 5]
  |  Branch (30:49): [True: 0, False: 0]
  ------------------
   31|      0|          LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   32|      0|          return x;
   33|      0|       }
   34|      5|   }
   35|       |
   36|       |   /* find a blank spot */
   37|      1|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      1|#define TAB_SIZE      5
  ------------------
  |  Branch (37:16): [True: 1, False: 0]
  ------------------
   38|      1|       if (cipher_descriptor[x].name == NULL) {
  ------------------
  |  Branch (38:12): [True: 1, False: 0]
  ------------------
   39|      1|          XMEMCPY(&cipher_descriptor[x], cipher, sizeof(struct ltc_cipher_descriptor));
  ------------------
  |  |   39|      1|#define XMEMCPY  memcpy
  ------------------
   40|      1|          LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   41|      1|          return x;
   42|      1|       }
   43|      1|   }
   44|       |
   45|       |   /* no spot */
   46|      0|   LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   47|      0|   return -1;
   48|      1|}

register_hash:
   22|      4|{
   23|      4|   int x;
   24|       |
   25|      4|   LTC_ARGCHK(hash != NULL);
  ------------------
  |  |   32|      4|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 4]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   26|       |
   27|       |   /* is it already registered? */
   28|      4|   LTC_MUTEX_LOCK(&ltc_hash_mutex);
   29|     24|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|     24|#define TAB_SIZE      5
  ------------------
  |  Branch (29:16): [True: 20, False: 4]
  ------------------
   30|     20|       if (XMEMCMP(&hash_descriptor[x], hash, sizeof(struct ltc_hash_descriptor)) == 0) {
  ------------------
  |  |   45|     20|#define XMEMCMP  memcmp
  ------------------
  |  Branch (30:12): [True: 0, False: 20]
  ------------------
   31|      0|          LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   32|      0|          return x;
   33|      0|       }
   34|     20|   }
   35|       |
   36|       |   /* find a blank spot */
   37|     10|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|     10|#define TAB_SIZE      5
  ------------------
  |  Branch (37:16): [True: 10, False: 0]
  ------------------
   38|     10|       if (hash_descriptor[x].name == NULL) {
  ------------------
  |  Branch (38:12): [True: 4, False: 6]
  ------------------
   39|      4|          XMEMCPY(&hash_descriptor[x], hash, sizeof(struct ltc_hash_descriptor));
  ------------------
  |  |   39|      4|#define XMEMCPY  memcpy
  ------------------
   40|      4|          LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   41|      4|          return x;
   42|      4|       }
   43|     10|   }
   44|       |
   45|       |   /* no spot */
   46|      0|   LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   47|      0|   return -1;
   48|      4|}

register_prng:
   22|      1|{
   23|      1|   int x;
   24|       |
   25|      1|   LTC_ARGCHK(prng != NULL);
  ------------------
  |  |   32|      1|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   26|       |
   27|       |   /* is it already registered? */
   28|      1|   LTC_MUTEX_LOCK(&ltc_prng_mutex);
   29|      6|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      6|#define TAB_SIZE      5
  ------------------
  |  Branch (29:16): [True: 5, False: 1]
  ------------------
   30|      5|       if (XMEMCMP(&prng_descriptor[x], prng, sizeof(struct ltc_prng_descriptor)) == 0) {
  ------------------
  |  |   45|      5|#define XMEMCMP  memcmp
  ------------------
  |  Branch (30:12): [True: 0, False: 5]
  ------------------
   31|      0|          LTC_MUTEX_UNLOCK(&ltc_prng_mutex);
   32|      0|          return x;
   33|      0|       }
   34|      5|   }
   35|       |
   36|       |   /* find a blank spot */
   37|      1|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      1|#define TAB_SIZE      5
  ------------------
  |  Branch (37:16): [True: 1, False: 0]
  ------------------
   38|      1|       if (prng_descriptor[x].name == NULL) {
  ------------------
  |  Branch (38:12): [True: 1, False: 0]
  ------------------
   39|      1|          XMEMCPY(&prng_descriptor[x], prng, sizeof(struct ltc_prng_descriptor));
  ------------------
  |  |   39|      1|#define XMEMCPY  memcpy
  ------------------
   40|      1|          LTC_MUTEX_UNLOCK(&ltc_prng_mutex);
   41|      1|          return x;
   42|      1|       }
   43|      1|   }
   44|       |
   45|       |   /* no spot */
   46|      0|   LTC_MUTEX_UNLOCK(&ltc_prng_mutex);
   47|      0|   return -1;
   48|      1|}

ecc_free:
   29|    487|{
   30|    487|   LTC_ARGCHKVD(key != NULL);
  ------------------
  |  |   33|    487|#define LTC_ARGCHKVD(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (33:34): [True: 0, False: 487]
  |  |  |  Branch (33:89): [Folded - Ignored]
  |  |  ------------------
  ------------------
   31|    487|   mp_clear_multi(key->pubkey.x, key->pubkey.y, key->pubkey.z, key->k, NULL);
  ------------------
  |  |  519|    487|#define mp_clear_multi               ltc_deinit_multi
  ------------------
   32|    487|}

ltc_ecc_map:
   32|    252|{
   33|    252|   void *t1, *t2;
   34|    252|   int   err;
   35|       |
   36|    252|   LTC_ARGCHK(P       != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   37|    252|   LTC_ARGCHK(modulus != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   38|    252|   LTC_ARGCHK(mp      != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   39|       |
   40|    252|   if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
  ------------------
  |  |  517|    252|#define mp_init_multi                ltc_init_multi
  ------------------
  |  Branch (40:8): [True: 0, False: 252]
  ------------------
   41|      0|      return err;
   42|      0|   }
   43|       |
   44|       |   /* first map z back to normal */
   45|    252|   if ((err = mp_montgomery_reduce(P->z, modulus, mp)) != CRYPT_OK)           { goto done; }
  ------------------
  |  |  565|    252|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (45:8): [True: 0, False: 252]
  ------------------
   46|       |
   47|       |   /* get 1/z */
   48|    252|   if ((err = mp_invmod(P->z, modulus, t1)) != CRYPT_OK)                      { goto done; }
  ------------------
  |  |  561|    252|#define mp_invmod(a, b, c)           ltc_mp.invmod(a, b, c)
  ------------------
  |  Branch (48:8): [True: 0, False: 252]
  ------------------
   49|       |
   50|       |   /* get 1/z^2 and 1/z^3 */
   51|    252|   if ((err = mp_sqr(t1, t2)) != CRYPT_OK)                                    { goto done; }
  ------------------
  |  |  549|    252|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (51:8): [True: 0, False: 252]
  ------------------
   52|    252|   if ((err = mp_mod(t2, modulus, t2)) != CRYPT_OK)                           { goto done; }
  ------------------
  |  |  552|    252|#define mp_mod(a, b, c)              ltc_mp.mpdiv(a, b, NULL, c)
  ------------------
  |  Branch (52:8): [True: 0, False: 252]
  ------------------
   53|    252|   if ((err = mp_mul(t1, t2, t1)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  547|    252|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (53:8): [True: 0, False: 252]
  ------------------
   54|    252|   if ((err = mp_mod(t1, modulus, t1)) != CRYPT_OK)                           { goto done; }
  ------------------
  |  |  552|    252|#define mp_mod(a, b, c)              ltc_mp.mpdiv(a, b, NULL, c)
  ------------------
  |  Branch (54:8): [True: 0, False: 252]
  ------------------
   55|       |
   56|       |   /* multiply against x/y */
   57|    252|   if ((err = mp_mul(P->x, t2, P->x)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  547|    252|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (57:8): [True: 0, False: 252]
  ------------------
   58|    252|   if ((err = mp_montgomery_reduce(P->x, modulus, mp)) != CRYPT_OK)           { goto done; }
  ------------------
  |  |  565|    252|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (58:8): [True: 0, False: 252]
  ------------------
   59|    252|   if ((err = mp_mul(P->y, t1, P->y)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  547|    252|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (59:8): [True: 0, False: 252]
  ------------------
   60|    252|   if ((err = mp_montgomery_reduce(P->y, modulus, mp)) != CRYPT_OK)           { goto done; }
  ------------------
  |  |  565|    252|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (60:8): [True: 0, False: 252]
  ------------------
   61|    252|   if ((err = mp_set(P->z, 1)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  526|    252|#define mp_set(a, b)                 ltc_mp.set_int(a, b)
  ------------------
  |  Branch (61:8): [True: 0, False: 252]
  ------------------
   62|       |
   63|    252|   err = CRYPT_OK;
   64|    252|done:
   65|    252|   mp_clear_multi(t1, t2, NULL);
  ------------------
  |  |  519|    252|#define mp_clear_multi               ltc_deinit_multi
  ------------------
   66|    252|   return err;
   67|    252|}

ltc_ecc_mul2add:
   39|    252|{
   40|    252|  ecc_point     *precomp[16];
   41|    252|  unsigned       bitbufA, bitbufB, lenA, lenB, len, x, y, nA, nB, nibble;
   42|    252|  unsigned char *tA, *tB;
   43|    252|  int            err, first;
   44|    252|  void          *mp, *mu;
   45|       |
   46|       |  /* argchks */
   47|    252|  LTC_ARGCHK(A       != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   48|    252|  LTC_ARGCHK(B       != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   49|    252|  LTC_ARGCHK(C       != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   50|    252|  LTC_ARGCHK(kA      != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   51|    252|  LTC_ARGCHK(kB      != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   52|    252|  LTC_ARGCHK(modulus != NULL);
  ------------------
  |  |   32|    252|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 252]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   53|       |
   54|       |  /* allocate memory */
   55|    252|  tA = XCALLOC(1, ECC_BUF_SIZE);
  ------------------
  |  |   19|    252|#define XCALLOC m_calloc
  ------------------
                tA = XCALLOC(1, ECC_BUF_SIZE);
  ------------------
  |  |  246|    252|#define ECC_BUF_SIZE 256
  ------------------
   56|    252|  if (tA == NULL) {
  ------------------
  |  Branch (56:7): [True: 0, False: 252]
  ------------------
   57|      0|     return CRYPT_MEM;
   58|      0|  }
   59|    252|  tB = XCALLOC(1, ECC_BUF_SIZE);
  ------------------
  |  |   19|    252|#define XCALLOC m_calloc
  ------------------
                tB = XCALLOC(1, ECC_BUF_SIZE);
  ------------------
  |  |  246|    252|#define ECC_BUF_SIZE 256
  ------------------
   60|    252|  if (tB == NULL) {
  ------------------
  |  Branch (60:7): [True: 0, False: 252]
  ------------------
   61|      0|     XFREE(tA);
  ------------------
  |  |   17|      0|#define XFREE m_free_direct
  ------------------
   62|      0|     return CRYPT_MEM;
   63|      0|  }
   64|       |
   65|       |  /* get sizes */
   66|    252|  lenA = mp_unsigned_bin_size(kA);
  ------------------
  |  |  539|    252|#define mp_unsigned_bin_size(a)      ltc_mp.unsigned_size(a)
  ------------------
   67|    252|  lenB = mp_unsigned_bin_size(kB);
  ------------------
  |  |  539|    252|#define mp_unsigned_bin_size(a)      ltc_mp.unsigned_size(a)
  ------------------
   68|    252|  len  = MAX(lenA, lenB);
  ------------------
  |  |  421|    252|   #define MAX(x, y) ( ((x)>(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (421:24): [True: 69, False: 183]
  |  |  ------------------
  ------------------
   69|       |
   70|       |  /* sanity check */
   71|    252|  if ((lenA > ECC_BUF_SIZE) || (lenB > ECC_BUF_SIZE)) {
  ------------------
  |  |  246|    252|#define ECC_BUF_SIZE 256
  ------------------
                if ((lenA > ECC_BUF_SIZE) || (lenB > ECC_BUF_SIZE)) {
  ------------------
  |  |  246|    252|#define ECC_BUF_SIZE 256
  ------------------
  |  Branch (71:7): [True: 0, False: 252]
  |  Branch (71:32): [True: 0, False: 252]
  ------------------
   72|      0|     err = CRYPT_INVALID_ARG;
   73|      0|     goto ERR_T;
   74|      0|  }
   75|       |
   76|       |  /* extract and justify kA */
   77|    252|  mp_to_unsigned_bin(kA, (len - lenA) + tA);
  ------------------
  |  |  540|    252|#define mp_to_unsigned_bin(a, b)     ltc_mp.unsigned_write(a, b)
  ------------------
   78|       |
   79|       |  /* extract and justify kB */
   80|    252|  mp_to_unsigned_bin(kB, (len - lenB) + tB);
  ------------------
  |  |  540|    252|#define mp_to_unsigned_bin(a, b)     ltc_mp.unsigned_write(a, b)
  ------------------
   81|       |
   82|       |  /* allocate the table */
   83|  4.28k|  for (x = 0; x < 16; x++) {
  ------------------
  |  Branch (83:15): [True: 4.03k, False: 252]
  ------------------
   84|  4.03k|     precomp[x] = ltc_ecc_new_point();
   85|  4.03k|     if (precomp[x] == NULL) {
  ------------------
  |  Branch (85:10): [True: 0, False: 4.03k]
  ------------------
   86|      0|         for (y = 0; y < x; ++y) {
  ------------------
  |  Branch (86:22): [True: 0, False: 0]
  ------------------
   87|      0|            ltc_ecc_del_point(precomp[y]);
   88|      0|         }
   89|      0|         err = CRYPT_MEM;
   90|      0|         goto ERR_T;
   91|      0|     }
   92|  4.03k|  }
   93|       |
   94|       |  /* init montgomery reduction */
   95|    252|  if ((err = mp_montgomery_setup(modulus, &mp)) != CRYPT_OK) {
  ------------------
  |  |  563|    252|#define mp_montgomery_setup(a, b)    ltc_mp.montgomery_setup(a, b)
  ------------------
  |  Branch (95:7): [True: 0, False: 252]
  ------------------
   96|      0|      goto ERR_P;
   97|      0|  }
   98|    252|  if ((err = mp_init(&mu)) != CRYPT_OK) {
  ------------------
  |  |  516|    252|#define mp_init(a)                   ltc_mp.init(a)
  ------------------
  |  Branch (98:7): [True: 0, False: 252]
  ------------------
   99|      0|      goto ERR_MP;
  100|      0|  }
  101|    252|  if ((err = mp_montgomery_normalization(mu, modulus)) != CRYPT_OK) {
  ------------------
  |  |  564|    252|#define mp_montgomery_normalization(a, b) ltc_mp.montgomery_normalization(a, b)
  ------------------
  |  Branch (101:7): [True: 0, False: 252]
  ------------------
  102|      0|      goto ERR_MU;
  103|      0|  }
  104|       |
  105|       |  /* copy ones ... */
  106|    252|  if ((err = mp_mulmod(A->x, mu, modulus, precomp[1]->x)) != CRYPT_OK)                                         { goto ERR_MU; }
  ------------------
  |  |  559|    252|#define mp_mulmod(a, b, c, d)        ltc_mp.mulmod(a, b, c, d)
  ------------------
  |  Branch (106:7): [True: 0, False: 252]
  ------------------
  107|    252|  if ((err = mp_mulmod(A->y, mu, modulus, precomp[1]->y)) != CRYPT_OK)                                         { goto ERR_MU; }
  ------------------
  |  |  559|    252|#define mp_mulmod(a, b, c, d)        ltc_mp.mulmod(a, b, c, d)
  ------------------
  |  Branch (107:7): [True: 0, False: 252]
  ------------------
  108|    252|  if ((err = mp_mulmod(A->z, mu, modulus, precomp[1]->z)) != CRYPT_OK)                                         { goto ERR_MU; }
  ------------------
  |  |  559|    252|#define mp_mulmod(a, b, c, d)        ltc_mp.mulmod(a, b, c, d)
  ------------------
  |  Branch (108:7): [True: 0, False: 252]
  ------------------
  109|       |
  110|    252|  if ((err = mp_mulmod(B->x, mu, modulus, precomp[1<<2]->x)) != CRYPT_OK)                                      { goto ERR_MU; }
  ------------------
  |  |  559|    252|#define mp_mulmod(a, b, c, d)        ltc_mp.mulmod(a, b, c, d)
  ------------------
  |  Branch (110:7): [True: 0, False: 252]
  ------------------
  111|    252|  if ((err = mp_mulmod(B->y, mu, modulus, precomp[1<<2]->y)) != CRYPT_OK)                                      { goto ERR_MU; }
  ------------------
  |  |  559|    252|#define mp_mulmod(a, b, c, d)        ltc_mp.mulmod(a, b, c, d)
  ------------------
  |  Branch (111:7): [True: 0, False: 252]
  ------------------
  112|    252|  if ((err = mp_mulmod(B->z, mu, modulus, precomp[1<<2]->z)) != CRYPT_OK)                                      { goto ERR_MU; }
  ------------------
  |  |  559|    252|#define mp_mulmod(a, b, c, d)        ltc_mp.mulmod(a, b, c, d)
  ------------------
  |  Branch (112:7): [True: 0, False: 252]
  ------------------
  113|       |
  114|       |  /* precomp [i,0](A + B) table */
  115|    252|  if ((err = ltc_mp.ecc_ptdbl(precomp[1], precomp[2], modulus, mp)) != CRYPT_OK)                               { goto ERR_MU; }
  ------------------
  |  Branch (115:7): [True: 0, False: 252]
  ------------------
  116|    252|  if ((err = ltc_mp.ecc_ptadd(precomp[1], precomp[2], precomp[3], modulus, mp)) != CRYPT_OK)                   { goto ERR_MU; }
  ------------------
  |  Branch (116:7): [True: 0, False: 252]
  ------------------
  117|       |
  118|       |  /* precomp [0,i](A + B) table */
  119|    252|  if ((err = ltc_mp.ecc_ptdbl(precomp[1<<2], precomp[2<<2], modulus, mp)) != CRYPT_OK)                         { goto ERR_MU; }
  ------------------
  |  Branch (119:7): [True: 0, False: 252]
  ------------------
  120|    252|  if ((err = ltc_mp.ecc_ptadd(precomp[1<<2], precomp[2<<2], precomp[3<<2], modulus, mp)) != CRYPT_OK)          { goto ERR_MU; }
  ------------------
  |  Branch (120:7): [True: 0, False: 252]
  ------------------
  121|       |
  122|       |  /* precomp [i,j](A + B) table (i != 0, j != 0) */
  123|  1.00k|  for (x = 1; x < 4; x++) {
  ------------------
  |  Branch (123:15): [True: 756, False: 252]
  ------------------
  124|  3.02k|     for (y = 1; y < 4; y++) {
  ------------------
  |  Branch (124:18): [True: 2.26k, False: 756]
  ------------------
  125|  2.26k|        if ((err = ltc_mp.ecc_ptadd(precomp[x], precomp[(y<<2)], precomp[x+(y<<2)], modulus, mp)) != CRYPT_OK) { goto ERR_MU; }
  ------------------
  |  Branch (125:13): [True: 0, False: 2.26k]
  ------------------
  126|  2.26k|     }
  127|    756|  }
  128|       |
  129|    252|  nibble  = 3;
  130|    252|  first   = 1;
  131|    252|  bitbufA = tA[0];
  132|    252|  bitbufB = tB[0];
  133|       |
  134|       |  /* for every byte of the multiplicands */
  135|  43.5k|  for (x = 0;; ) {
  136|       |     /* grab a nibble */
  137|  43.5k|     if (++nibble == 4) {
  ------------------
  |  Branch (137:10): [True: 11.0k, False: 32.4k]
  ------------------
  138|  11.0k|        if (x == len) break;
  ------------------
  |  Branch (138:13): [True: 252, False: 10.8k]
  ------------------
  139|  10.8k|        bitbufA = tA[x];
  140|  10.8k|        bitbufB = tB[x];
  141|  10.8k|        nibble  = 0;
  142|  10.8k|        ++x;
  143|  10.8k|     }
  144|       |
  145|       |     /* extract two bits from both, shift/update */
  146|  43.2k|     nA = (bitbufA >> 6) & 0x03;
  147|  43.2k|     nB = (bitbufB >> 6) & 0x03;
  148|  43.2k|     bitbufA = (bitbufA << 2) & 0xFF;
  149|  43.2k|     bitbufB = (bitbufB << 2) & 0xFF;
  150|       |
  151|       |     /* if both zero, if first, continue */
  152|  43.2k|     if ((nA == 0) && (nB == 0) && (first == 1)) {
  ------------------
  |  Branch (152:10): [True: 10.8k, False: 32.3k]
  |  Branch (152:23): [True: 3.97k, False: 6.91k]
  |  Branch (152:36): [True: 193, False: 3.77k]
  ------------------
  153|    193|        continue;
  154|    193|     }
  155|       |
  156|       |     /* double twice, only if this isn't the first */
  157|  43.0k|     if (first == 0) {
  ------------------
  |  Branch (157:10): [True: 42.8k, False: 252]
  ------------------
  158|       |        /* double twice */
  159|  42.8k|        if ((err = ltc_mp.ecc_ptdbl(C, C, modulus, mp)) != CRYPT_OK)                  { goto ERR_MU; }
  ------------------
  |  Branch (159:13): [True: 0, False: 42.8k]
  ------------------
  160|  42.8k|        if ((err = ltc_mp.ecc_ptdbl(C, C, modulus, mp)) != CRYPT_OK)                  { goto ERR_MU; }
  ------------------
  |  Branch (160:13): [True: 0, False: 42.8k]
  ------------------
  161|  42.8k|     }
  162|       |
  163|       |     /* if not both zero */
  164|  43.0k|     if ((nA != 0) || (nB != 0)) {
  ------------------
  |  Branch (164:10): [True: 32.3k, False: 10.6k]
  |  Branch (164:23): [True: 6.91k, False: 3.77k]
  ------------------
  165|  39.2k|        if (first == 1) {
  ------------------
  |  Branch (165:13): [True: 252, False: 39.0k]
  ------------------
  166|       |           /* if first, copy from table */
  167|    252|           first = 0;
  168|    252|           if ((err = mp_copy(precomp[nA + (nB<<2)]->x, C->x)) != CRYPT_OK)           { goto ERR_MU; }
  ------------------
  |  |  524|    252|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (168:16): [True: 0, False: 252]
  ------------------
  169|    252|           if ((err = mp_copy(precomp[nA + (nB<<2)]->y, C->y)) != CRYPT_OK)           { goto ERR_MU; }
  ------------------
  |  |  524|    252|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (169:16): [True: 0, False: 252]
  ------------------
  170|    252|           if ((err = mp_copy(precomp[nA + (nB<<2)]->z, C->z)) != CRYPT_OK)           { goto ERR_MU; }
  ------------------
  |  |  524|    252|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (170:16): [True: 0, False: 252]
  ------------------
  171|  39.0k|        } else {
  172|       |           /* if not first, add from table */
  173|  39.0k|           if ((err = ltc_mp.ecc_ptadd(C, precomp[nA + (nB<<2)], C, modulus, mp)) != CRYPT_OK) { goto ERR_MU; }
  ------------------
  |  Branch (173:16): [True: 0, False: 39.0k]
  ------------------
  174|  39.0k|        }
  175|  39.2k|     }
  176|  43.0k|  }
  177|       |
  178|       |  /* reduce to affine */
  179|    252|  err = ltc_ecc_map(C, modulus, mp);
  180|       |
  181|       |  /* clean up */
  182|    252|ERR_MU:
  183|    252|   mp_clear(mu);
  ------------------
  |  |  518|    252|#define mp_clear(a)                  ltc_mp.deinit(a)
  ------------------
  184|    252|ERR_MP:
  185|    252|   mp_montgomery_free(mp);
  ------------------
  |  |  566|    252|#define mp_montgomery_free(a)        ltc_mp.montgomery_deinit(a)
  ------------------
  186|    252|ERR_P:
  187|  4.28k|   for (x = 0; x < 16; x++) {
  ------------------
  |  Branch (187:16): [True: 4.03k, False: 252]
  ------------------
  188|  4.03k|       ltc_ecc_del_point(precomp[x]);
  189|  4.03k|   }
  190|    252|ERR_T:
  191|       |#ifdef LTC_CLEAN_STACK
  192|       |   zeromem(tA, ECC_BUF_SIZE);
  193|       |   zeromem(tB, ECC_BUF_SIZE);
  194|       |#endif
  195|    252|   XFREE(tA);
  ------------------
  |  |   17|    252|#define XFREE m_free_direct
  ------------------
  196|    252|   XFREE(tB);
  ------------------
  |  |   17|    252|#define XFREE m_free_direct
  ------------------
  197|       |
  198|    252|   return err;
  199|    252|}

ltc_ecc_new_point:
   29|  4.64k|{
   30|  4.64k|   ecc_point *p;
   31|  4.64k|   p = XCALLOC(1, sizeof(*p));
  ------------------
  |  |   19|  4.64k|#define XCALLOC m_calloc
  ------------------
   32|  4.64k|   if (p == NULL) {
  ------------------
  |  Branch (32:8): [True: 0, False: 4.64k]
  ------------------
   33|      0|      return NULL;
   34|      0|   }
   35|  4.64k|   if (mp_init_multi(&p->x, &p->y, &p->z, NULL) != CRYPT_OK) {
  ------------------
  |  |  517|  4.64k|#define mp_init_multi                ltc_init_multi
  ------------------
  |  Branch (35:8): [True: 0, False: 4.64k]
  ------------------
   36|      0|      XFREE(p);
  ------------------
  |  |   17|      0|#define XFREE m_free_direct
  ------------------
   37|      0|      return NULL;
   38|      0|   }
   39|  4.64k|   return p;
   40|  4.64k|}
ltc_ecc_del_point:
   46|  4.63k|{
   47|       |   /* prevents free'ing null arguments */
   48|  4.63k|   if (p != NULL) {
  ------------------
  |  Branch (48:8): [True: 4.63k, False: 0]
  ------------------
   49|  4.63k|      mp_clear_multi(p->x, p->y, p->z, NULL); /* note: p->z may be NULL but that's ok with this function anyways */
  ------------------
  |  |  519|  4.63k|#define mp_clear_multi               ltc_deinit_multi
  ------------------
   50|  4.63k|      XFREE(p);
  ------------------
  |  |   17|  4.63k|#define XFREE m_free_direct
  ------------------
   51|  4.63k|   }
   52|  4.63k|}

ltc_ecc_projective_add_point:
   34|  41.8k|{
   35|  41.8k|   void  *t1, *t2, *x, *y, *z;
   36|  41.8k|   int    err;
   37|       |
   38|  41.8k|   LTC_ARGCHK(P       != NULL);
  ------------------
  |  |   32|  41.8k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 41.8k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   39|  41.8k|   LTC_ARGCHK(Q       != NULL);
  ------------------
  |  |   32|  41.8k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 41.8k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   40|  41.8k|   LTC_ARGCHK(R       != NULL);
  ------------------
  |  |   32|  41.8k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 41.8k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   41|  41.8k|   LTC_ARGCHK(modulus != NULL);
  ------------------
  |  |   32|  41.8k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 41.8k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   42|  41.8k|   LTC_ARGCHK(mp      != NULL);
  ------------------
  |  |   32|  41.8k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 41.8k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   43|       |
   44|  41.8k|   if ((err = mp_init_multi(&t1, &t2, &x, &y, &z, NULL)) != CRYPT_OK) {
  ------------------
  |  |  517|  41.8k|#define mp_init_multi                ltc_init_multi
  ------------------
  |  Branch (44:8): [True: 0, False: 41.8k]
  ------------------
   45|      0|      return err;
   46|      0|   }
   47|       |
   48|       |   /* should we dbl instead? */
   49|  41.8k|   if ((err = mp_sub(modulus, Q->y, t1)) != CRYPT_OK)                          { goto done; }
  ------------------
  |  |  545|  41.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (49:8): [True: 0, False: 41.8k]
  ------------------
   50|       |
   51|  41.8k|   if ( (mp_cmp(P->x, Q->x) == LTC_MP_EQ) &&
  ------------------
  |  |  531|  41.8k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if ( (mp_cmp(P->x, Q->x) == LTC_MP_EQ) &&
  ------------------
  |  |   13|  41.8k|#define LTC_MP_EQ    0
  ------------------
  |  Branch (51:9): [True: 0, False: 41.8k]
  ------------------
   52|  41.8k|        (Q->z != NULL && mp_cmp(P->z, Q->z) == LTC_MP_EQ) &&
  ------------------
  |  |  531|      0|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                      (Q->z != NULL && mp_cmp(P->z, Q->z) == LTC_MP_EQ) &&
  ------------------
  |  |   13|      0|#define LTC_MP_EQ    0
  ------------------
  |  Branch (52:10): [True: 0, False: 0]
  |  Branch (52:26): [True: 0, False: 0]
  ------------------
   53|  41.8k|        (mp_cmp(P->y, Q->y) == LTC_MP_EQ || mp_cmp(P->y, t1) == LTC_MP_EQ)) {
  ------------------
  |  |  531|      0|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                      (mp_cmp(P->y, Q->y) == LTC_MP_EQ || mp_cmp(P->y, t1) == LTC_MP_EQ)) {
  ------------------
  |  |   13|      0|#define LTC_MP_EQ    0
  ------------------
                      (mp_cmp(P->y, Q->y) == LTC_MP_EQ || mp_cmp(P->y, t1) == LTC_MP_EQ)) {
  ------------------
  |  |  531|      0|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                      (mp_cmp(P->y, Q->y) == LTC_MP_EQ || mp_cmp(P->y, t1) == LTC_MP_EQ)) {
  ------------------
  |  |   13|      0|#define LTC_MP_EQ    0
  ------------------
  |  Branch (53:10): [True: 0, False: 0]
  |  Branch (53:45): [True: 0, False: 0]
  ------------------
   54|      0|        mp_clear_multi(t1, t2, x, y, z, NULL);
  ------------------
  |  |  519|      0|#define mp_clear_multi               ltc_deinit_multi
  ------------------
   55|      0|        return ltc_ecc_projective_dbl_point(P, R, modulus, mp);
   56|      0|   }
   57|       |
   58|  41.8k|   if ((err = mp_copy(P->x, x)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  524|  41.8k|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (58:8): [True: 0, False: 41.8k]
  ------------------
   59|  41.8k|   if ((err = mp_copy(P->y, y)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  524|  41.8k|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (59:8): [True: 0, False: 41.8k]
  ------------------
   60|  41.8k|   if ((err = mp_copy(P->z, z)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  524|  41.8k|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (60:8): [True: 0, False: 41.8k]
  ------------------
   61|       |
   62|       |   /* if Z is one then these are no-operations */
   63|  41.8k|   if (Q->z != NULL) {
  ------------------
  |  Branch (63:8): [True: 41.8k, False: 0]
  ------------------
   64|       |      /* T1 = Z' * Z' */
   65|  41.8k|      if ((err = mp_sqr(Q->z, t1)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  549|  41.8k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (65:11): [True: 0, False: 41.8k]
  ------------------
   66|  41.8k|      if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)           { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (66:11): [True: 0, False: 41.8k]
  ------------------
   67|       |      /* X = X * T1 */
   68|  41.8k|      if ((err = mp_mul(t1, x, x)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (68:11): [True: 0, False: 41.8k]
  ------------------
   69|  41.8k|      if ((err = mp_montgomery_reduce(x, modulus, mp)) != CRYPT_OK)            { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (69:11): [True: 0, False: 41.8k]
  ------------------
   70|       |      /* T1 = Z' * T1 */
   71|  41.8k|      if ((err = mp_mul(Q->z, t1, t1)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (71:11): [True: 0, False: 41.8k]
  ------------------
   72|  41.8k|      if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)           { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (72:11): [True: 0, False: 41.8k]
  ------------------
   73|       |      /* Y = Y * T1 */
   74|  41.8k|      if ((err = mp_mul(t1, y, y)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (74:11): [True: 0, False: 41.8k]
  ------------------
   75|  41.8k|      if ((err = mp_montgomery_reduce(y, modulus, mp)) != CRYPT_OK)            { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (75:11): [True: 0, False: 41.8k]
  ------------------
   76|  41.8k|   }
   77|       |
   78|       |   /* T1 = Z*Z */
   79|  41.8k|   if ((err = mp_sqr(z, t1)) != CRYPT_OK)                                      { goto done; }
  ------------------
  |  |  549|  41.8k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (79:8): [True: 0, False: 41.8k]
  ------------------
   80|  41.8k|   if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (80:8): [True: 0, False: 41.8k]
  ------------------
   81|       |   /* T2 = X' * T1 */
   82|  41.8k|   if ((err = mp_mul(Q->x, t1, t2)) != CRYPT_OK)                               { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (82:8): [True: 0, False: 41.8k]
  ------------------
   83|  41.8k|   if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (83:8): [True: 0, False: 41.8k]
  ------------------
   84|       |   /* T1 = Z * T1 */
   85|  41.8k|   if ((err = mp_mul(z, t1, t1)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (85:8): [True: 0, False: 41.8k]
  ------------------
   86|  41.8k|   if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (86:8): [True: 0, False: 41.8k]
  ------------------
   87|       |   /* T1 = Y' * T1 */
   88|  41.8k|   if ((err = mp_mul(Q->y, t1, t1)) != CRYPT_OK)                               { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (88:8): [True: 0, False: 41.8k]
  ------------------
   89|  41.8k|   if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (89:8): [True: 0, False: 41.8k]
  ------------------
   90|       |
   91|       |   /* Y = Y - T1 */
   92|  41.8k|   if ((err = mp_sub(y, t1, y)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  545|  41.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (92:8): [True: 0, False: 41.8k]
  ------------------
   93|  41.8k|   if (mp_cmp_d(y, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  41.8k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(y, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (93:8): [True: 20.7k, False: 21.0k]
  ------------------
   94|  20.7k|      if ((err = mp_add(y, modulus, y)) != CRYPT_OK)                           { goto done; }
  ------------------
  |  |  543|  20.7k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (94:11): [True: 0, False: 20.7k]
  ------------------
   95|  20.7k|   }
   96|       |   /* T1 = 2T1 */
   97|  41.8k|   if ((err = mp_add(t1, t1, t1)) != CRYPT_OK)                                 { goto done; }
  ------------------
  |  |  543|  41.8k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (97:8): [True: 0, False: 41.8k]
  ------------------
   98|  41.8k|   if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  41.8k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (98:8): [True: 21.0k, False: 20.7k]
  ------------------
   99|  21.0k|      if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK)                         { goto done; }
  ------------------
  |  |  545|  21.0k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (99:11): [True: 0, False: 21.0k]
  ------------------
  100|  21.0k|   }
  101|       |   /* T1 = Y + T1 */
  102|  41.8k|   if ((err = mp_add(t1, y, t1)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  543|  41.8k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (102:8): [True: 0, False: 41.8k]
  ------------------
  103|  41.8k|   if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  41.8k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (103:8): [True: 20.5k, False: 21.2k]
  ------------------
  104|  20.5k|      if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK)                         { goto done; }
  ------------------
  |  |  545|  20.5k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (104:11): [True: 0, False: 20.5k]
  ------------------
  105|  20.5k|   }
  106|       |   /* X = X - T2 */
  107|  41.8k|   if ((err = mp_sub(x, t2, x)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  545|  41.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (107:8): [True: 0, False: 41.8k]
  ------------------
  108|  41.8k|   if (mp_cmp_d(x, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  41.8k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(x, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (108:8): [True: 21.2k, False: 20.6k]
  ------------------
  109|  21.2k|      if ((err = mp_add(x, modulus, x)) != CRYPT_OK)                           { goto done; }
  ------------------
  |  |  543|  21.2k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (109:11): [True: 0, False: 21.2k]
  ------------------
  110|  21.2k|   }
  111|       |   /* T2 = 2T2 */
  112|  41.8k|   if ((err = mp_add(t2, t2, t2)) != CRYPT_OK)                                 { goto done; }
  ------------------
  |  |  543|  41.8k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (112:8): [True: 0, False: 41.8k]
  ------------------
  113|  41.8k|   if (mp_cmp(t2, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  41.8k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(t2, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (113:8): [True: 20.9k, False: 20.9k]
  ------------------
  114|  20.9k|      if ((err = mp_sub(t2, modulus, t2)) != CRYPT_OK)                         { goto done; }
  ------------------
  |  |  545|  20.9k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (114:11): [True: 0, False: 20.9k]
  ------------------
  115|  20.9k|   }
  116|       |   /* T2 = X + T2 */
  117|  41.8k|   if ((err = mp_add(t2, x, t2)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  543|  41.8k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (117:8): [True: 0, False: 41.8k]
  ------------------
  118|  41.8k|   if (mp_cmp(t2, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  41.8k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(t2, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (118:8): [True: 20.8k, False: 20.9k]
  ------------------
  119|  20.8k|      if ((err = mp_sub(t2, modulus, t2)) != CRYPT_OK)                         { goto done; }
  ------------------
  |  |  545|  20.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (119:11): [True: 0, False: 20.8k]
  ------------------
  120|  20.8k|   }
  121|       |
  122|       |   /* if Z' != 1 */
  123|  41.8k|   if (Q->z != NULL) {
  ------------------
  |  Branch (123:8): [True: 41.8k, False: 0]
  ------------------
  124|       |      /* Z = Z * Z' */
  125|  41.8k|      if ((err = mp_mul(z, Q->z, z)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (125:11): [True: 0, False: 41.8k]
  ------------------
  126|  41.8k|      if ((err = mp_montgomery_reduce(z, modulus, mp)) != CRYPT_OK)            { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (126:11): [True: 0, False: 41.8k]
  ------------------
  127|  41.8k|   }
  128|       |
  129|       |   /* Z = Z * X */
  130|  41.8k|   if ((err = mp_mul(z, x, z)) != CRYPT_OK)                                    { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (130:8): [True: 0, False: 41.8k]
  ------------------
  131|  41.8k|   if ((err = mp_montgomery_reduce(z, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (131:8): [True: 0, False: 41.8k]
  ------------------
  132|       |
  133|       |   /* T1 = T1 * X  */
  134|  41.8k|   if ((err = mp_mul(t1, x, t1)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (134:8): [True: 0, False: 41.8k]
  ------------------
  135|  41.8k|   if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (135:8): [True: 0, False: 41.8k]
  ------------------
  136|       |   /* X = X * X */
  137|  41.8k|   if ((err = mp_sqr(x, x)) != CRYPT_OK)                                       { goto done; }
  ------------------
  |  |  549|  41.8k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (137:8): [True: 0, False: 41.8k]
  ------------------
  138|  41.8k|   if ((err = mp_montgomery_reduce(x, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (138:8): [True: 0, False: 41.8k]
  ------------------
  139|       |   /* T2 = T2 * x */
  140|  41.8k|   if ((err = mp_mul(t2, x, t2)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (140:8): [True: 0, False: 41.8k]
  ------------------
  141|  41.8k|   if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (141:8): [True: 0, False: 41.8k]
  ------------------
  142|       |   /* T1 = T1 * X  */
  143|  41.8k|   if ((err = mp_mul(t1, x, t1)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (143:8): [True: 0, False: 41.8k]
  ------------------
  144|  41.8k|   if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (144:8): [True: 0, False: 41.8k]
  ------------------
  145|       |
  146|       |   /* X = Y*Y */
  147|  41.8k|   if ((err = mp_sqr(y, x)) != CRYPT_OK)                                       { goto done; }
  ------------------
  |  |  549|  41.8k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (147:8): [True: 0, False: 41.8k]
  ------------------
  148|  41.8k|   if ((err = mp_montgomery_reduce(x, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (148:8): [True: 0, False: 41.8k]
  ------------------
  149|       |   /* X = X - T2 */
  150|  41.8k|   if ((err = mp_sub(x, t2, x)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  545|  41.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (150:8): [True: 0, False: 41.8k]
  ------------------
  151|  41.8k|   if (mp_cmp_d(x, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  41.8k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(x, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (151:8): [True: 20.5k, False: 21.2k]
  ------------------
  152|  20.5k|      if ((err = mp_add(x, modulus, x)) != CRYPT_OK)                           { goto done; }
  ------------------
  |  |  543|  20.5k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (152:11): [True: 0, False: 20.5k]
  ------------------
  153|  20.5k|   }
  154|       |
  155|       |   /* T2 = T2 - X */
  156|  41.8k|   if ((err = mp_sub(t2, x, t2)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  545|  41.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (156:8): [True: 0, False: 41.8k]
  ------------------
  157|  41.8k|   if (mp_cmp_d(t2, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  41.8k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(t2, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (157:8): [True: 20.8k, False: 20.9k]
  ------------------
  158|  20.8k|      if ((err = mp_add(t2, modulus, t2)) != CRYPT_OK)                         { goto done; }
  ------------------
  |  |  543|  20.8k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (158:11): [True: 0, False: 20.8k]
  ------------------
  159|  20.8k|   }
  160|       |   /* T2 = T2 - X */
  161|  41.8k|   if ((err = mp_sub(t2, x, t2)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  545|  41.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (161:8): [True: 0, False: 41.8k]
  ------------------
  162|  41.8k|   if (mp_cmp_d(t2, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  41.8k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(t2, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (162:8): [True: 21.1k, False: 20.7k]
  ------------------
  163|  21.1k|      if ((err = mp_add(t2, modulus, t2)) != CRYPT_OK)                         { goto done; }
  ------------------
  |  |  543|  21.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (163:11): [True: 0, False: 21.1k]
  ------------------
  164|  21.1k|   }
  165|       |   /* T2 = T2 * Y */
  166|  41.8k|   if ((err = mp_mul(t2, y, t2)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  547|  41.8k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (166:8): [True: 0, False: 41.8k]
  ------------------
  167|  41.8k|   if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK)              { goto done; }
  ------------------
  |  |  565|  41.8k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (167:8): [True: 0, False: 41.8k]
  ------------------
  168|       |   /* Y = T2 - T1 */
  169|  41.8k|   if ((err = mp_sub(t2, t1, y)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  545|  41.8k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (169:8): [True: 0, False: 41.8k]
  ------------------
  170|  41.8k|   if (mp_cmp_d(y, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  41.8k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(y, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  41.8k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (170:8): [True: 20.9k, False: 20.8k]
  ------------------
  171|  20.9k|      if ((err = mp_add(y, modulus, y)) != CRYPT_OK)                           { goto done; }
  ------------------
  |  |  543|  20.9k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (171:11): [True: 0, False: 20.9k]
  ------------------
  172|  20.9k|   }
  173|       |   /* Y = Y/2 */
  174|  41.8k|   if (mp_isodd(y)) {
  ------------------
  |  |  572|  41.8k|#define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |  530|  41.8k|#define mp_get_digit_count(a)        ltc_mp.get_digit_count(a)
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |  529|  41.8k|#define mp_get_digit(a, n)           ltc_mp.get_digit(a, n)
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |   17|  21.1k|#define LTC_MP_YES   1
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |   16|  20.6k|#define LTC_MP_NO    0
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |   16|      0|#define LTC_MP_NO    0
  |  |  ------------------
  |  |  |  Branch (572:38): [True: 21.1k, False: 20.6k]
  |  |  |  Branch (572:39): [True: 41.8k, False: 0]
  |  |  |  Branch (572:68): [True: 21.1k, False: 20.6k]
  |  |  ------------------
  ------------------
  175|  21.1k|      if ((err = mp_add(y, modulus, y)) != CRYPT_OK)                           { goto done; }
  ------------------
  |  |  543|  21.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (175:11): [True: 0, False: 21.1k]
  ------------------
  176|  21.1k|   }
  177|  41.8k|   if ((err = mp_div_2(y, y)) != CRYPT_OK)                                     { goto done; }
  ------------------
  |  |  551|  41.8k|#define mp_div_2(a, b)               ltc_mp.div_2(a, b)
  ------------------
  |  Branch (177:8): [True: 0, False: 41.8k]
  ------------------
  178|       |
  179|  41.8k|   if ((err = mp_copy(x, R->x)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  524|  41.8k|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (179:8): [True: 0, False: 41.8k]
  ------------------
  180|  41.8k|   if ((err = mp_copy(y, R->y)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  524|  41.8k|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (180:8): [True: 0, False: 41.8k]
  ------------------
  181|  41.8k|   if ((err = mp_copy(z, R->z)) != CRYPT_OK)                                   { goto done; }
  ------------------
  |  |  524|  41.8k|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (181:8): [True: 0, False: 41.8k]
  ------------------
  182|       |
  183|  41.8k|   err = CRYPT_OK;
  184|  41.8k|done:
  185|  41.8k|   mp_clear_multi(t1, t2, x, y, z, NULL);
  ------------------
  |  |  519|  41.8k|#define mp_clear_multi               ltc_deinit_multi
  ------------------
  186|  41.8k|   return err;
  187|  41.8k|}

ltc_ecc_projective_dbl_point:
   33|  86.1k|{
   34|  86.1k|   void *t1, *t2;
   35|  86.1k|   int   err;
   36|       |
   37|  86.1k|   LTC_ARGCHK(P       != NULL);
  ------------------
  |  |   32|  86.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 86.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   38|  86.1k|   LTC_ARGCHK(R       != NULL);
  ------------------
  |  |   32|  86.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 86.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   39|  86.1k|   LTC_ARGCHK(modulus != NULL);
  ------------------
  |  |   32|  86.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 86.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   40|  86.1k|   LTC_ARGCHK(mp      != NULL);
  ------------------
  |  |   32|  86.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 86.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   41|       |
   42|  86.1k|   if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
  ------------------
  |  |  517|  86.1k|#define mp_init_multi                ltc_init_multi
  ------------------
  |  Branch (42:8): [True: 0, False: 86.1k]
  ------------------
   43|      0|      return err;
   44|      0|   }
   45|       |
   46|  86.1k|   if (P != R) {
  ------------------
  |  Branch (46:8): [True: 504, False: 85.6k]
  ------------------
   47|    504|      if ((err = mp_copy(P->x, R->x)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  524|    504|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (47:11): [True: 0, False: 504]
  ------------------
   48|    504|      if ((err = mp_copy(P->y, R->y)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  524|    504|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (48:11): [True: 0, False: 504]
  ------------------
   49|    504|      if ((err = mp_copy(P->z, R->z)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  524|    504|#define mp_copy(a, b)                ltc_mp.copy(a, b)
  ------------------
  |  Branch (49:11): [True: 0, False: 504]
  ------------------
   50|    504|   }
   51|       |
   52|       |   /* t1 = Z * Z */
   53|  86.1k|   if ((err = mp_sqr(R->z, t1)) != CRYPT_OK)                                      { goto done; }
  ------------------
  |  |  549|  86.1k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (53:8): [True: 0, False: 86.1k]
  ------------------
   54|  86.1k|   if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK)                 { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (54:8): [True: 0, False: 86.1k]
  ------------------
   55|       |   /* Z = Y * Z */
   56|  86.1k|   if ((err = mp_mul(R->z, R->y, R->z)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  547|  86.1k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (56:8): [True: 0, False: 86.1k]
  ------------------
   57|  86.1k|   if ((err = mp_montgomery_reduce(R->z, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (57:8): [True: 0, False: 86.1k]
  ------------------
   58|       |   /* Z = 2Z */
   59|  86.1k|   if ((err = mp_add(R->z, R->z, R->z)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  543|  86.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (59:8): [True: 0, False: 86.1k]
  ------------------
   60|  86.1k|   if (mp_cmp(R->z, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  86.1k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(R->z, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (60:8): [True: 43.0k, False: 43.0k]
  ------------------
   61|  43.0k|      if ((err = mp_sub(R->z, modulus, R->z)) != CRYPT_OK)                        { goto done; }
  ------------------
  |  |  545|  43.0k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (61:11): [True: 0, False: 43.0k]
  ------------------
   62|  43.0k|   }
   63|       |
   64|       |   /* T2 = X - T1 */
   65|  86.1k|   if ((err = mp_sub(R->x, t1, t2)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  545|  86.1k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (65:8): [True: 0, False: 86.1k]
  ------------------
   66|  86.1k|   if (mp_cmp_d(t2, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  86.1k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(t2, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (66:8): [True: 43.1k, False: 43.0k]
  ------------------
   67|  43.1k|      if ((err = mp_add(t2, modulus, t2)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  543|  43.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (67:11): [True: 0, False: 43.1k]
  ------------------
   68|  43.1k|   }
   69|       |   /* T1 = X + T1 */
   70|  86.1k|   if ((err = mp_add(t1, R->x, t1)) != CRYPT_OK)                                  { goto done; }
  ------------------
  |  |  543|  86.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (70:8): [True: 0, False: 86.1k]
  ------------------
   71|  86.1k|   if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  86.1k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (71:8): [True: 43.0k, False: 43.0k]
  ------------------
   72|  43.0k|      if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  545|  43.0k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (72:11): [True: 0, False: 43.0k]
  ------------------
   73|  43.0k|   }
   74|       |   /* T2 = T1 * T2 */
   75|  86.1k|   if ((err = mp_mul(t1, t2, t2)) != CRYPT_OK)                                    { goto done; }
  ------------------
  |  |  547|  86.1k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (75:8): [True: 0, False: 86.1k]
  ------------------
   76|  86.1k|   if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK)                 { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (76:8): [True: 0, False: 86.1k]
  ------------------
   77|       |   /* T1 = 2T2 */
   78|  86.1k|   if ((err = mp_add(t2, t2, t1)) != CRYPT_OK)                                    { goto done; }
  ------------------
  |  |  543|  86.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (78:8): [True: 0, False: 86.1k]
  ------------------
   79|  86.1k|   if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  86.1k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (79:8): [True: 42.9k, False: 43.1k]
  ------------------
   80|  42.9k|      if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  545|  42.9k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (80:11): [True: 0, False: 42.9k]
  ------------------
   81|  42.9k|   }
   82|       |   /* T1 = T1 + T2 */
   83|  86.1k|   if ((err = mp_add(t1, t2, t1)) != CRYPT_OK)                                    { goto done; }
  ------------------
  |  |  543|  86.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (83:8): [True: 0, False: 86.1k]
  ------------------
   84|  86.1k|   if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  86.1k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(t1, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (84:8): [True: 43.0k, False: 43.0k]
  ------------------
   85|  43.0k|      if ((err = mp_sub(t1, modulus, t1)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  545|  43.0k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (85:11): [True: 0, False: 43.0k]
  ------------------
   86|  43.0k|   }
   87|       |
   88|       |   /* Y = 2Y */
   89|  86.1k|   if ((err = mp_add(R->y, R->y, R->y)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  543|  86.1k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (89:8): [True: 0, False: 86.1k]
  ------------------
   90|  86.1k|   if (mp_cmp(R->y, modulus) != LTC_MP_LT) {
  ------------------
  |  |  531|  86.1k|#define mp_cmp(a, b)                 ltc_mp.compare(a, b)
  ------------------
                 if (mp_cmp(R->y, modulus) != LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (90:8): [True: 43.1k, False: 42.9k]
  ------------------
   91|  43.1k|      if ((err = mp_sub(R->y, modulus, R->y)) != CRYPT_OK)                        { goto done; }
  ------------------
  |  |  545|  43.1k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (91:11): [True: 0, False: 43.1k]
  ------------------
   92|  43.1k|   }
   93|       |   /* Y = Y * Y */
   94|  86.1k|   if ((err = mp_sqr(R->y, R->y)) != CRYPT_OK)                                    { goto done; }
  ------------------
  |  |  549|  86.1k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (94:8): [True: 0, False: 86.1k]
  ------------------
   95|  86.1k|   if ((err = mp_montgomery_reduce(R->y, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (95:8): [True: 0, False: 86.1k]
  ------------------
   96|       |   /* T2 = Y * Y */
   97|  86.1k|   if ((err = mp_sqr(R->y, t2)) != CRYPT_OK)                                      { goto done; }
  ------------------
  |  |  549|  86.1k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (97:8): [True: 0, False: 86.1k]
  ------------------
   98|  86.1k|   if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK)                 { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (98:8): [True: 0, False: 86.1k]
  ------------------
   99|       |   /* T2 = T2/2 */
  100|  86.1k|   if (mp_isodd(t2)) {
  ------------------
  |  |  572|  86.1k|#define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |  530|  86.1k|#define mp_get_digit_count(a)        ltc_mp.get_digit_count(a)
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |  529|  86.1k|#define mp_get_digit(a, n)           ltc_mp.get_digit(a, n)
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |   17|  43.2k|#define LTC_MP_YES   1
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |   16|  42.9k|#define LTC_MP_NO    0
  |  |  ------------------
  |  |               #define mp_isodd(a)                  (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  |  |  ------------------
  |  |  |  |   16|      0|#define LTC_MP_NO    0
  |  |  ------------------
  |  |  |  Branch (572:38): [True: 43.2k, False: 42.9k]
  |  |  |  Branch (572:39): [True: 86.1k, False: 0]
  |  |  |  Branch (572:68): [True: 43.2k, False: 42.9k]
  |  |  ------------------
  ------------------
  101|  43.2k|      if ((err = mp_add(t2, modulus, t2)) != CRYPT_OK)                            { goto done; }
  ------------------
  |  |  543|  43.2k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (101:11): [True: 0, False: 43.2k]
  ------------------
  102|  43.2k|   }
  103|  86.1k|   if ((err = mp_div_2(t2, t2)) != CRYPT_OK)                                      { goto done; }
  ------------------
  |  |  551|  86.1k|#define mp_div_2(a, b)               ltc_mp.div_2(a, b)
  ------------------
  |  Branch (103:8): [True: 0, False: 86.1k]
  ------------------
  104|       |   /* Y = Y * X */
  105|  86.1k|   if ((err = mp_mul(R->y, R->x, R->y)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  547|  86.1k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (105:8): [True: 0, False: 86.1k]
  ------------------
  106|  86.1k|   if ((err = mp_montgomery_reduce(R->y, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (106:8): [True: 0, False: 86.1k]
  ------------------
  107|       |
  108|       |   /* X  = T1 * T1 */
  109|  86.1k|   if ((err = mp_sqr(t1, R->x)) != CRYPT_OK)                                      { goto done; }
  ------------------
  |  |  549|  86.1k|#define mp_sqr(a, b)                 ltc_mp.sqr(a, b)
  ------------------
  |  Branch (109:8): [True: 0, False: 86.1k]
  ------------------
  110|  86.1k|   if ((err = mp_montgomery_reduce(R->x, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (110:8): [True: 0, False: 86.1k]
  ------------------
  111|       |   /* X = X - Y */
  112|  86.1k|   if ((err = mp_sub(R->x, R->y, R->x)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  545|  86.1k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (112:8): [True: 0, False: 86.1k]
  ------------------
  113|  86.1k|   if (mp_cmp_d(R->x, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  86.1k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(R->x, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (113:8): [True: 42.8k, False: 43.2k]
  ------------------
  114|  42.8k|      if ((err = mp_add(R->x, modulus, R->x)) != CRYPT_OK)                        { goto done; }
  ------------------
  |  |  543|  42.8k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (114:11): [True: 0, False: 42.8k]
  ------------------
  115|  42.8k|   }
  116|       |   /* X = X - Y */
  117|  86.1k|   if ((err = mp_sub(R->x, R->y, R->x)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  545|  86.1k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (117:8): [True: 0, False: 86.1k]
  ------------------
  118|  86.1k|   if (mp_cmp_d(R->x, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  86.1k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(R->x, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (118:8): [True: 42.8k, False: 43.3k]
  ------------------
  119|  42.8k|      if ((err = mp_add(R->x, modulus, R->x)) != CRYPT_OK)                        { goto done; }
  ------------------
  |  |  543|  42.8k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (119:11): [True: 0, False: 42.8k]
  ------------------
  120|  42.8k|   }
  121|       |
  122|       |   /* Y = Y - X */
  123|  86.1k|   if ((err = mp_sub(R->y, R->x, R->y)) != CRYPT_OK)                              { goto done; }
  ------------------
  |  |  545|  86.1k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (123:8): [True: 0, False: 86.1k]
  ------------------
  124|  86.1k|   if (mp_cmp_d(R->y, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  86.1k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(R->y, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (124:8): [True: 43.2k, False: 42.8k]
  ------------------
  125|  43.2k|      if ((err = mp_add(R->y, modulus, R->y)) != CRYPT_OK)                        { goto done; }
  ------------------
  |  |  543|  43.2k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (125:11): [True: 0, False: 43.2k]
  ------------------
  126|  43.2k|   }
  127|       |   /* Y = Y * T1 */
  128|  86.1k|   if ((err = mp_mul(R->y, t1, R->y)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  547|  86.1k|#define mp_mul(a, b, c)              ltc_mp.mul(a, b, c)
  ------------------
  |  Branch (128:8): [True: 0, False: 86.1k]
  ------------------
  129|  86.1k|   if ((err = mp_montgomery_reduce(R->y, modulus, mp)) != CRYPT_OK)               { goto done; }
  ------------------
  |  |  565|  86.1k|#define mp_montgomery_reduce(a, b, c)   ltc_mp.montgomery_reduce(a, b, c)
  ------------------
  |  Branch (129:8): [True: 0, False: 86.1k]
  ------------------
  130|       |   /* Y = Y - T2 */
  131|  86.1k|   if ((err = mp_sub(R->y, t2, R->y)) != CRYPT_OK)                                { goto done; }
  ------------------
  |  |  545|  86.1k|#define mp_sub(a, b, c)              ltc_mp.sub(a, b, c)
  ------------------
  |  Branch (131:8): [True: 0, False: 86.1k]
  ------------------
  132|  86.1k|   if (mp_cmp_d(R->y, 0) == LTC_MP_LT) {
  ------------------
  |  |  532|  86.1k|#define mp_cmp_d(a, b)               ltc_mp.compare_d(a, b)
  ------------------
                 if (mp_cmp_d(R->y, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|  86.1k|#define LTC_MP_LT   -1
  ------------------
  |  Branch (132:8): [True: 43.4k, False: 42.6k]
  ------------------
  133|  43.4k|      if ((err = mp_add(R->y, modulus, R->y)) != CRYPT_OK)                        { goto done; }
  ------------------
  |  |  543|  43.4k|#define mp_add(a, b, c)              ltc_mp.add(a, b, c)
  ------------------
  |  Branch (133:11): [True: 0, False: 43.4k]
  ------------------
  134|  43.4k|   }
  135|       |
  136|  86.1k|   err = CRYPT_OK;
  137|  86.1k|done:
  138|  86.1k|   mp_clear_multi(t1, t2, NULL);
  ------------------
  |  |  519|  86.1k|#define mp_clear_multi               ltc_deinit_multi
  ------------------
  139|  86.1k|   return err;
  140|  86.1k|}

mp_2expt:
   12|  3.51k|{
   13|  3.51k|   mp_err    err;
   14|       |
   15|       |   /* zero a as per default */
   16|  3.51k|   mp_zero(a);
   17|       |
   18|       |   /* grow a to accomodate the single bit */
   19|  3.51k|   if ((err = mp_grow(a, (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
  ------------------
  |  |   82|  3.51k|#   define MP_DIGIT_BIT 60
  ------------------
                 if ((err = mp_grow(a, (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
  ------------------
  |  |  161|  3.51k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (19:8): [True: 0, False: 3.51k]
  ------------------
   20|      0|      return err;
   21|      0|   }
   22|       |
   23|       |   /* set the used count of where the bit will go */
   24|  3.51k|   a->used = (b / MP_DIGIT_BIT) + 1;
  ------------------
  |  |   82|  3.51k|#   define MP_DIGIT_BIT 60
  ------------------
   25|       |
   26|       |   /* put the single bit in its place */
   27|  3.51k|   a->dp[b / MP_DIGIT_BIT] = (mp_digit)1 << (mp_digit)(b % MP_DIGIT_BIT);
  ------------------
  |  |   82|  3.51k|#   define MP_DIGIT_BIT 60
  ------------------
                 a->dp[b / MP_DIGIT_BIT] = (mp_digit)1 << (mp_digit)(b % MP_DIGIT_BIT);
  ------------------
  |  |   82|  3.51k|#   define MP_DIGIT_BIT 60
  ------------------
   28|       |
   29|  3.51k|   return MP_OKAY;
  ------------------
  |  |  161|  3.51k|#define MP_OKAY       0   /* no error */
  ------------------
   30|  3.51k|}

mp_add:
    8|  1.02M|{
    9|  1.02M|   mp_sign sa, sb;
   10|  1.02M|   mp_err err;
   11|       |
   12|       |   /* get sign of both inputs */
   13|  1.02M|   sa = a->sign;
   14|  1.02M|   sb = b->sign;
   15|       |
   16|       |   /* handle two cases, not four */
   17|  1.02M|   if (sa == sb) {
  ------------------
  |  Branch (17:8): [True: 666k, False: 353k]
  ------------------
   18|       |      /* both positive or both negative */
   19|       |      /* add their magnitudes, copy the sign */
   20|   666k|      c->sign = sa;
   21|   666k|      err = s_mp_add(a, b, c);
   22|   666k|   } else {
   23|       |      /* one positive, the other negative */
   24|       |      /* subtract the one with the greater magnitude from */
   25|       |      /* the one of the lesser magnitude.  The result gets */
   26|       |      /* the sign of the one with the greater magnitude. */
   27|   353k|      if (mp_cmp_mag(a, b) == MP_LT) {
  ------------------
  |  |  154|   353k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (27:11): [True: 352k, False: 1.57k]
  ------------------
   28|   352k|         c->sign = sb;
   29|   352k|         err = s_mp_sub(b, a, c);
   30|   352k|      } else {
   31|  1.57k|         c->sign = sa;
   32|  1.57k|         err = s_mp_sub(a, b, c);
   33|  1.57k|      }
   34|   353k|   }
   35|  1.02M|   return err;
   36|  1.02M|}

mp_add_d:
    8|   163k|{
    9|   163k|   mp_err     err;
   10|   163k|   int ix, oldused;
   11|   163k|   mp_digit *tmpa, *tmpc;
   12|       |
   13|       |   /* grow c as required */
   14|   163k|   if (c->alloc < (a->used + 1)) {
  ------------------
  |  Branch (14:8): [True: 0, False: 163k]
  ------------------
   15|      0|      if ((err = mp_grow(c, a->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (15:11): [True: 0, False: 0]
  ------------------
   16|      0|         return err;
   17|      0|      }
   18|      0|   }
   19|       |
   20|       |   /* if a is negative and |a| >= b, call c = |a| - b */
   21|   163k|   if ((a->sign == MP_NEG) && ((a->used > 1) || (a->dp[0] >= b))) {
  ------------------
  |  |  152|   163k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (21:8): [True: 0, False: 163k]
  |  Branch (21:32): [True: 0, False: 0]
  |  Branch (21:49): [True: 0, False: 0]
  ------------------
   22|      0|      mp_int a_ = *a;
   23|       |      /* temporarily fix sign of a */
   24|      0|      a_.sign = MP_ZPOS;
  ------------------
  |  |  151|      0|#define MP_ZPOS       0   /* positive integer */
  ------------------
   25|       |
   26|       |      /* c = |a| - b */
   27|      0|      err = mp_sub_d(&a_, b, c);
   28|       |
   29|       |      /* fix sign  */
   30|      0|      c->sign = MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
   31|       |
   32|       |      /* clamp */
   33|      0|      mp_clamp(c);
   34|       |
   35|      0|      return err;
   36|      0|   }
   37|       |
   38|       |   /* old number of used digits in c */
   39|   163k|   oldused = c->used;
   40|       |
   41|       |   /* source alias */
   42|   163k|   tmpa    = a->dp;
   43|       |
   44|       |   /* destination alias */
   45|   163k|   tmpc    = c->dp;
   46|       |
   47|       |   /* if a is positive */
   48|   163k|   if (a->sign == MP_ZPOS) {
  ------------------
  |  |  151|   163k|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (48:8): [True: 163k, False: 0]
  ------------------
   49|       |      /* add digits, mu is carry */
   50|   163k|      mp_digit mu = b;
   51|   735k|      for (ix = 0; ix < a->used; ix++) {
  ------------------
  |  Branch (51:20): [True: 572k, False: 163k]
  ------------------
   52|   572k|         *tmpc   = *tmpa++ + mu;
   53|   572k|         mu      = *tmpc >> MP_DIGIT_BIT;
  ------------------
  |  |   82|   572k|#   define MP_DIGIT_BIT 60
  ------------------
   54|   572k|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|   572k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   572k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   55|   572k|      }
   56|       |      /* set final carry */
   57|   163k|      ix++;
   58|   163k|      *tmpc++  = mu;
   59|       |
   60|       |      /* setup size */
   61|   163k|      c->used = a->used + 1;
   62|   163k|   } else {
   63|       |      /* a was negative and |a| < b */
   64|      0|      c->used  = 1;
   65|       |
   66|       |      /* the result is a single digit */
   67|      0|      if (a->used == 1) {
  ------------------
  |  Branch (67:11): [True: 0, False: 0]
  ------------------
   68|      0|         *tmpc++  =  b - a->dp[0];
   69|      0|      } else {
   70|      0|         *tmpc++  =  b;
   71|      0|      }
   72|       |
   73|       |      /* setup count so the clearing of oldused
   74|       |       * can fall through correctly
   75|       |       */
   76|      0|      ix       = 1;
   77|      0|   }
   78|       |
   79|       |   /* sign always positive */
   80|   163k|   c->sign = MP_ZPOS;
  ------------------
  |  |  151|   163k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   81|       |
   82|       |   /* now zero to oldused */
   83|   163k|   MP_ZERO_DIGITS(tmpc, oldused - ix);
  ------------------
  |  |   89|   163k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|   163k|do {                                                    \
  |  |   91|   163k|   int zd_ = (digits);                                  \
  |  |   92|   163k|   mp_digit* zm_ = (mem);                               \
  |  |   93|   163k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 163k]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|   163k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   84|   163k|   mp_clamp(c);
   85|       |
   86|   163k|   return MP_OKAY;
  ------------------
  |  |  161|   163k|#define MP_OKAY       0   /* no error */
  ------------------
   87|   163k|}

mp_clamp:
   14|  22.5M|{
   15|       |   /* decrease used while the most significant digit is
   16|       |    * zero.
   17|       |    */
   18|  75.3M|   while ((a->used > 0) && (a->dp[a->used - 1] == 0u)) {
  ------------------
  |  Branch (18:11): [True: 75.1M, False: 163k]
  |  Branch (18:28): [True: 52.8M, False: 22.3M]
  ------------------
   19|  52.8M|      --(a->used);
   20|  52.8M|   }
   21|       |
   22|       |   /* reset the sign flag if used == 0 */
   23|  22.5M|   if (a->used == 0) {
  ------------------
  |  Branch (23:8): [True: 163k, False: 22.3M]
  ------------------
   24|   163k|      a->sign = MP_ZPOS;
  ------------------
  |  |  151|   163k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   25|   163k|   }
   26|  22.5M|}

mp_clear:
    8|  1.27M|{
    9|       |   /* only do anything if a hasn't been freed previously */
   10|  1.27M|   if (a->dp != NULL) {
  ------------------
  |  Branch (10:8): [True: 1.27M, False: 0]
  ------------------
   11|       |      /* free ram */
   12|  1.27M|      MP_FREE_DIGITS(a->dp, a->alloc);
  ------------------
  |  |   58|  1.27M|#  define MP_FREE_DIGITS(mem, digits)                   \
  |  |   59|  1.27M|do {                                                    \
  |  |   60|  1.27M|   int fd_ = (digits);                                  \
  |  |   61|  1.27M|   void* fm_ = (mem);                                   \
  |  |   62|  1.27M|   if (fm_ != NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (62:8): [True: 1.27M, False: 0]
  |  |  ------------------
  |  |   63|  1.27M|      size_t fs_ = sizeof (mp_digit) * (size_t)fd_;     \
  |  |   64|  1.27M|      MP_ZERO_BUFFER(fm_, fs_);                         \
  |  |  ------------------
  |  |  |  |   81|  1.27M|#  define MP_ZERO_BUFFER(mem, size)                     \
  |  |  |  |   82|  1.27M|do {                                                    \
  |  |  |  |   83|  1.27M|   size_t zs_ = (size);                                 \
  |  |  |  |   84|  1.27M|   char* zm_ = (char*)(mem);                            \
  |  |  |  |   85|   236M|   while (zs_-- > 0u) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (85:11): [True: 235M, False: 1.27M]
  |  |  |  |  ------------------
  |  |  |  |   86|   235M|      *zm_++ = '\0';                                    \
  |  |  |  |   87|   235M|   }                                                    \
  |  |  |  |   88|  1.27M|} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (88:10): [Folded - Ignored]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   65|  1.27M|      MP_FREE(fm_, fs_);                                \
  |  |  ------------------
  |  |  |  | 1324|  1.27M|#define MP_FREE      m_free_ltm
  |  |  ------------------
  |  |   66|  1.27M|   }                                                    \
  |  |   67|  1.27M|} while (0)
  |  |  ------------------
  |  |  |  Branch (67:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   13|       |
   14|       |      /* reset members to make debugging easier */
   15|  1.27M|      a->dp    = NULL;
   16|  1.27M|      a->alloc = a->used = 0;
   17|  1.27M|      a->sign  = MP_ZPOS;
  ------------------
  |  |  151|  1.27M|#define MP_ZPOS       0   /* positive integer */
  ------------------
   18|  1.27M|   }
   19|  1.27M|}

mp_clear_multi:
    9|  2.33k|{
   10|  2.33k|   mp_int *next_mp = mp;
   11|  2.33k|   va_list args;
   12|  2.33k|   va_start(args, mp);
   13|  12.4k|   while (next_mp != NULL) {
  ------------------
  |  Branch (13:11): [True: 10.0k, False: 2.33k]
  ------------------
   14|  10.0k|      mp_clear(next_mp);
   15|  10.0k|      next_mp = va_arg(args, mp_int *);
   16|  10.0k|   }
   17|  2.33k|   va_end(args);
   18|  2.33k|}

mp_cmp:
    8|  1.04M|{
    9|       |   /* compare based on sign */
   10|  1.04M|   if (a->sign != b->sign) {
  ------------------
  |  Branch (10:8): [True: 0, False: 1.04M]
  ------------------
   11|      0|      if (a->sign == MP_NEG) {
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (11:11): [True: 0, False: 0]
  ------------------
   12|      0|         return MP_LT;
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
   13|      0|      } else {
   14|      0|         return MP_GT;
  ------------------
  |  |  156|      0|#define MP_GT         1   /* greater than */
  ------------------
   15|      0|      }
   16|      0|   }
   17|       |
   18|       |   /* compare digits */
   19|  1.04M|   if (a->sign == MP_NEG) {
  ------------------
  |  |  152|  1.04M|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (19:8): [True: 0, False: 1.04M]
  ------------------
   20|       |      /* if negative compare opposite direction */
   21|      0|      return mp_cmp_mag(b, a);
   22|  1.04M|   } else {
   23|  1.04M|      return mp_cmp_mag(a, b);
   24|  1.04M|   }
   25|  1.04M|}

mp_cmp_d:
    8|   866k|{
    9|       |   /* compare based on sign */
   10|   866k|   if (a->sign == MP_NEG) {
  ------------------
  |  |  152|   866k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (10:8): [True: 348k, False: 517k]
  ------------------
   11|   348k|      return MP_LT;
  ------------------
  |  |  154|   348k|#define MP_LT        -1   /* less than */
  ------------------
   12|   348k|   }
   13|       |
   14|       |   /* compare based on magnitude */
   15|   517k|   if (a->used > 1) {
  ------------------
  |  Branch (15:8): [True: 502k, False: 15.8k]
  ------------------
   16|   502k|      return MP_GT;
  ------------------
  |  |  156|   502k|#define MP_GT         1   /* greater than */
  ------------------
   17|   502k|   }
   18|       |
   19|       |   /* compare the only digit of a to b */
   20|  15.8k|   if (a->dp[0] > b) {
  ------------------
  |  Branch (20:8): [True: 7.62k, False: 8.21k]
  ------------------
   21|  7.62k|      return MP_GT;
  ------------------
  |  |  156|  7.62k|#define MP_GT         1   /* greater than */
  ------------------
   22|  8.21k|   } else if (a->dp[0] < b) {
  ------------------
  |  Branch (22:15): [True: 1, False: 8.20k]
  ------------------
   23|      1|      return MP_LT;
  ------------------
  |  |  154|      1|#define MP_LT        -1   /* less than */
  ------------------
   24|  8.20k|   } else {
   25|  8.20k|      return MP_EQ;
  ------------------
  |  |  155|  8.20k|#define MP_EQ         0   /* equal to */
  ------------------
   26|  8.20k|   }
   27|  15.8k|}

mp_cmp_mag:
    8|  7.90M|{
    9|  7.90M|   int     n;
   10|  7.90M|   const mp_digit *tmpa, *tmpb;
   11|       |
   12|       |   /* compare based on # of non-zero digits */
   13|  7.90M|   if (a->used > b->used) {
  ------------------
  |  Branch (13:8): [True: 2.57M, False: 5.33M]
  ------------------
   14|  2.57M|      return MP_GT;
  ------------------
  |  |  156|  2.57M|#define MP_GT         1   /* greater than */
  ------------------
   15|  2.57M|   }
   16|       |
   17|  5.33M|   if (a->used < b->used) {
  ------------------
  |  Branch (17:8): [True: 114k, False: 5.22M]
  ------------------
   18|   114k|      return MP_LT;
  ------------------
  |  |  154|   114k|#define MP_LT        -1   /* less than */
  ------------------
   19|   114k|   }
   20|       |
   21|       |   /* alias for a */
   22|  5.22M|   tmpa = a->dp + (a->used - 1);
   23|       |
   24|       |   /* alias for b */
   25|  5.22M|   tmpb = b->dp + (a->used - 1);
   26|       |
   27|       |   /* compare based on digits  */
   28|  5.86M|   for (n = 0; n < a->used; ++n, --tmpa, --tmpb) {
  ------------------
  |  Branch (28:16): [True: 5.85M, False: 12.8k]
  ------------------
   29|  5.85M|      if (*tmpa > *tmpb) {
  ------------------
  |  Branch (29:11): [True: 1.88M, False: 3.96M]
  ------------------
   30|  1.88M|         return MP_GT;
  ------------------
  |  |  156|  1.88M|#define MP_GT         1   /* greater than */
  ------------------
   31|  1.88M|      }
   32|       |
   33|  3.96M|      if (*tmpa < *tmpb) {
  ------------------
  |  Branch (33:11): [True: 3.32M, False: 639k]
  ------------------
   34|  3.32M|         return MP_LT;
  ------------------
  |  |  154|  3.32M|#define MP_LT        -1   /* less than */
  ------------------
   35|  3.32M|      }
   36|  3.96M|   }
   37|  12.8k|   return MP_EQ;
  ------------------
  |  |  155|  12.8k|#define MP_EQ         0   /* equal to */
  ------------------
   38|  5.22M|}

mp_cnt_lsb:
   12|  2.04k|{
   13|  2.04k|   int x;
   14|  2.04k|   mp_digit q, qq;
   15|       |
   16|       |   /* easy out */
   17|  2.04k|   if (MP_IS_ZERO(a)) {
  ------------------
  |  |  163|  2.04k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 2.04k]
  |  |  ------------------
  ------------------
   18|      0|      return 0;
   19|      0|   }
   20|       |
   21|       |   /* scan lower digits until non-zero */
   22|  3.29k|   for (x = 0; (x < a->used) && (a->dp[x] == 0u); x++) {}
  ------------------
  |  Branch (22:16): [True: 3.29k, False: 0]
  |  Branch (22:33): [True: 1.25k, False: 2.04k]
  ------------------
   23|  2.04k|   q = a->dp[x];
   24|  2.04k|   x *= MP_DIGIT_BIT;
  ------------------
  |  |   82|  2.04k|#   define MP_DIGIT_BIT 60
  ------------------
   25|       |
   26|       |   /* now scan this digit until a 1 is found */
   27|  2.04k|   if ((q & 1u) == 0u) {
  ------------------
  |  Branch (27:8): [True: 1.73k, False: 308]
  ------------------
   28|  7.34k|      do {
   29|  7.34k|         qq  = q & 15u;
   30|  7.34k|         x  += lnz[qq];
   31|  7.34k|         q >>= 4;
   32|  7.34k|      } while (qq == 0u);
  ------------------
  |  Branch (32:16): [True: 5.61k, False: 1.73k]
  ------------------
   33|  1.73k|   }
   34|  2.04k|   return x;
   35|  2.04k|}

mp_copy:
    8|  5.85M|{
    9|  5.85M|   int n;
   10|  5.85M|   mp_digit *tmpa, *tmpb;
   11|  5.85M|   mp_err err;
   12|       |
   13|       |   /* if dst == src do nothing */
   14|  5.85M|   if (a == b) {
  ------------------
  |  Branch (14:8): [True: 2.75M, False: 3.10M]
  ------------------
   15|  2.75M|      return MP_OKAY;
  ------------------
  |  |  161|  2.75M|#define MP_OKAY       0   /* no error */
  ------------------
   16|  2.75M|   }
   17|       |
   18|       |   /* grow dest */
   19|  3.10M|   if (b->alloc < a->used) {
  ------------------
  |  Branch (19:8): [True: 3.56k, False: 3.09M]
  ------------------
   20|  3.56k|      if ((err = mp_grow(b, a->used)) != MP_OKAY) {
  ------------------
  |  |  161|  3.56k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (20:11): [True: 0, False: 3.56k]
  ------------------
   21|      0|         return err;
   22|      0|      }
   23|  3.56k|   }
   24|       |
   25|       |   /* zero b and copy the parameters over */
   26|       |   /* pointer aliases */
   27|       |
   28|       |   /* source */
   29|  3.10M|   tmpa = a->dp;
   30|       |
   31|       |   /* destination */
   32|  3.10M|   tmpb = b->dp;
   33|       |
   34|       |   /* copy all the digits */
   35|   132M|   for (n = 0; n < a->used; n++) {
  ------------------
  |  Branch (35:16): [True: 129M, False: 3.10M]
  ------------------
   36|   129M|      *tmpb++ = *tmpa++;
   37|   129M|   }
   38|       |
   39|       |   /* clear high digits */
   40|  3.10M|   MP_ZERO_DIGITS(tmpb, b->used - n);
  ------------------
  |  |   89|  3.10M|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  3.10M|do {                                                    \
  |  |   91|  3.10M|   int zd_ = (digits);                                  \
  |  |   92|  3.10M|   mp_digit* zm_ = (mem);                               \
  |  |   93|  3.10M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 6.81k, False: 3.10M]
  |  |  ------------------
  |  |   94|  6.81k|      *zm_++ = 0;                                       \
  |  |   95|  6.81k|   }                                                    \
  |  |   96|  3.10M|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   41|       |
   42|       |   /* copy used count and sign */
   43|  3.10M|   b->used = a->used;
   44|  3.10M|   b->sign = a->sign;
   45|  3.10M|   return MP_OKAY;
  ------------------
  |  |  161|  3.10M|#define MP_OKAY       0   /* no error */
  ------------------
   46|  3.10M|}

mp_count_bits:
    8|   153k|{
    9|   153k|   int     r;
   10|   153k|   mp_digit q;
   11|       |
   12|       |   /* shortcut */
   13|   153k|   if (MP_IS_ZERO(a)) {
  ------------------
  |  |  163|   153k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 894, False: 152k]
  |  |  ------------------
  ------------------
   14|    894|      return 0;
   15|    894|   }
   16|       |
   17|       |   /* get number of digits and add that */
   18|   152k|   r = (a->used - 1) * MP_DIGIT_BIT;
  ------------------
  |  |   82|   152k|#   define MP_DIGIT_BIT 60
  ------------------
   19|       |
   20|       |   /* take the last digit and count the bits in it */
   21|   152k|   q = a->dp[a->used - 1];
   22|  5.76M|   while (q > 0u) {
  ------------------
  |  Branch (22:11): [True: 5.60M, False: 152k]
  ------------------
   23|  5.60M|      ++r;
   24|  5.60M|      q >>= 1u;
   25|  5.60M|   }
   26|   152k|   return r;
   27|   153k|}

mp_div:
   87|   105k|{
   88|   105k|   mp_int  q, x, y, t1, t2;
   89|   105k|   int     n, t, i, norm;
   90|   105k|   mp_sign neg;
   91|   105k|   mp_err  err;
   92|       |
   93|       |   /* is divisor zero ? */
   94|   105k|   if (MP_IS_ZERO(b)) {
  ------------------
  |  |  163|   105k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 105k]
  |  |  ------------------
  ------------------
   95|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   96|      0|   }
   97|       |
   98|       |   /* if a < b then q=0, r = a */
   99|   105k|   if (mp_cmp_mag(a, b) == MP_LT) {
  ------------------
  |  |  154|   105k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (99:8): [True: 3.32k, False: 102k]
  ------------------
  100|  3.32k|      if (d != NULL) {
  ------------------
  |  Branch (100:11): [True: 3.32k, False: 0]
  ------------------
  101|  3.32k|         err = mp_copy(a, d);
  102|  3.32k|      } else {
  103|      0|         err = MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  104|      0|      }
  105|  3.32k|      if (c != NULL) {
  ------------------
  |  Branch (105:11): [True: 0, False: 3.32k]
  ------------------
  106|      0|         mp_zero(c);
  107|      0|      }
  108|  3.32k|      return err;
  109|  3.32k|   }
  110|       |
  111|   102k|   if ((err = mp_init_size(&q, a->used + 2)) != MP_OKAY) {
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (111:8): [True: 0, False: 102k]
  ------------------
  112|      0|      return err;
  113|      0|   }
  114|   102k|   q.used = a->used + 2;
  115|       |
  116|   102k|   if ((err = mp_init(&t1)) != MP_OKAY)                           goto LBL_Q;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (116:8): [True: 0, False: 102k]
  ------------------
  117|       |
  118|   102k|   if ((err = mp_init(&t2)) != MP_OKAY)                           goto LBL_T1;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (118:8): [True: 0, False: 102k]
  ------------------
  119|       |
  120|   102k|   if ((err = mp_init_copy(&x, a)) != MP_OKAY)                    goto LBL_T2;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (120:8): [True: 0, False: 102k]
  ------------------
  121|       |
  122|   102k|   if ((err = mp_init_copy(&y, b)) != MP_OKAY)                    goto LBL_X;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (122:8): [True: 0, False: 102k]
  ------------------
  123|       |
  124|       |   /* fix the sign */
  125|   102k|   neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  151|   101k|#define MP_ZPOS       0   /* positive integer */
  ------------------
                 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  152|   102k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (125:10): [True: 101k, False: 258]
  ------------------
  126|   102k|   x.sign = y.sign = MP_ZPOS;
  ------------------
  |  |  151|   102k|#define MP_ZPOS       0   /* positive integer */
  ------------------
  127|       |
  128|       |   /* normalize both x and y, ensure that y >= b/2, [b == 2**MP_DIGIT_BIT] */
  129|   102k|   norm = mp_count_bits(&y) % MP_DIGIT_BIT;
  ------------------
  |  |   82|   102k|#   define MP_DIGIT_BIT 60
  ------------------
  130|   102k|   if (norm < (MP_DIGIT_BIT - 1)) {
  ------------------
  |  |   82|   102k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (130:8): [True: 102k, False: 8]
  ------------------
  131|   102k|      norm = (MP_DIGIT_BIT - 1) - norm;
  ------------------
  |  |   82|   102k|#   define MP_DIGIT_BIT 60
  ------------------
  132|   102k|      if ((err = mp_mul_2d(&x, norm, &x)) != MP_OKAY)             goto LBL_Y;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (132:11): [True: 0, False: 102k]
  ------------------
  133|   102k|      if ((err = mp_mul_2d(&y, norm, &y)) != MP_OKAY)             goto LBL_Y;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (133:11): [True: 0, False: 102k]
  ------------------
  134|   102k|   } else {
  135|      8|      norm = 0;
  136|      8|   }
  137|       |
  138|       |   /* note hac does 0 based, so if used==5 then its 0,1,2,3,4, e.g. use 4 */
  139|   102k|   n = x.used - 1;
  140|   102k|   t = y.used - 1;
  141|       |
  142|       |   /* while (x >= y*b**n-t) do { q[n-t] += 1; x -= y*b**{n-t} } */
  143|       |   /* y = y*b**{n-t} */
  144|   102k|   if ((err = mp_lshd(&y, n - t)) != MP_OKAY)                     goto LBL_Y;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (144:8): [True: 0, False: 102k]
  ------------------
  145|       |
  146|   102k|   while (mp_cmp(&x, &y) != MP_LT) {
  ------------------
  |  |  154|   102k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (146:11): [True: 257, False: 102k]
  ------------------
  147|    257|      ++(q.dp[n - t]);
  148|    257|      if ((err = mp_sub(&x, &y, &x)) != MP_OKAY)                  goto LBL_Y;
  ------------------
  |  |  161|    257|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (148:11): [True: 0, False: 257]
  ------------------
  149|    257|   }
  150|       |
  151|       |   /* reset y by shifting it back down */
  152|   102k|   mp_rshd(&y, n - t);
  153|       |
  154|       |   /* step 3. for i from n down to (t + 1) */
  155|   423k|   for (i = n; i >= (t + 1); i--) {
  ------------------
  |  Branch (155:16): [True: 320k, False: 102k]
  ------------------
  156|   320k|      if (i > x.used) {
  ------------------
  |  Branch (156:11): [True: 3.98k, False: 316k]
  ------------------
  157|  3.98k|         continue;
  158|  3.98k|      }
  159|       |
  160|       |      /* step 3.1 if xi == yt then set q{i-t-1} to b-1,
  161|       |       * otherwise set q{i-t-1} to (xi*b + x{i-1})/yt */
  162|   316k|      if (x.dp[i] == y.dp[t]) {
  ------------------
  |  Branch (162:11): [True: 484, False: 316k]
  ------------------
  163|    484|         q.dp[(i - t) - 1] = ((mp_digit)1 << (mp_digit)MP_DIGIT_BIT) - (mp_digit)1;
  ------------------
  |  |   82|    484|#   define MP_DIGIT_BIT 60
  ------------------
  164|   316k|      } else {
  165|   316k|         mp_word tmp;
  166|   316k|         tmp = (mp_word)x.dp[i] << (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|   316k|#   define MP_DIGIT_BIT 60
  ------------------
  167|   316k|         tmp |= (mp_word)x.dp[i - 1];
  168|   316k|         tmp /= (mp_word)y.dp[t];
  169|   316k|         if (tmp > (mp_word)MP_MASK) {
  ------------------
  |  |  106|   316k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   316k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (169:14): [True: 0, False: 316k]
  ------------------
  170|      0|            tmp = MP_MASK;
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  171|      0|         }
  172|   316k|         q.dp[(i - t) - 1] = (mp_digit)(tmp & (mp_word)MP_MASK);
  ------------------
  |  |  106|   316k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   316k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  173|   316k|      }
  174|       |
  175|       |      /* while (q{i-t-1} * (yt * b + y{t-1})) >
  176|       |               xi * b**2 + xi-1 * b + xi-2
  177|       |
  178|       |         do q{i-t-1} -= 1;
  179|       |      */
  180|   316k|      q.dp[(i - t) - 1] = (q.dp[(i - t) - 1] + 1uL) & (mp_digit)MP_MASK;
  ------------------
  |  |  106|   316k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   316k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  181|   448k|      do {
  182|   448k|         q.dp[(i - t) - 1] = (q.dp[(i - t) - 1] - 1uL) & (mp_digit)MP_MASK;
  ------------------
  |  |  106|   448k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   448k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  183|       |
  184|       |         /* find left hand */
  185|   448k|         mp_zero(&t1);
  186|   448k|         t1.dp[0] = ((t - 1) < 0) ? 0u : y.dp[t - 1];
  ------------------
  |  Branch (186:21): [True: 329, False: 448k]
  ------------------
  187|   448k|         t1.dp[1] = y.dp[t];
  188|   448k|         t1.used = 2;
  189|   448k|         if ((err = mp_mul_d(&t1, q.dp[(i - t) - 1], &t1)) != MP_OKAY) goto LBL_Y;
  ------------------
  |  |  161|   448k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (189:14): [True: 0, False: 448k]
  ------------------
  190|       |
  191|       |         /* find right hand */
  192|   448k|         t2.dp[0] = ((i - 2) < 0) ? 0u : x.dp[i - 2];
  ------------------
  |  Branch (192:21): [True: 49, False: 448k]
  ------------------
  193|   448k|         t2.dp[1] = x.dp[i - 1]; /* i >= 1 always holds */
  194|   448k|         t2.dp[2] = x.dp[i];
  195|   448k|         t2.used = 3;
  196|   448k|      } while (mp_cmp_mag(&t1, &t2) == MP_GT);
  ------------------
  |  |  156|   448k|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (196:16): [True: 131k, False: 316k]
  ------------------
  197|       |
  198|       |      /* step 3.3 x = x - q{i-t-1} * y * b**{i-t-1} */
  199|   316k|      if ((err = mp_mul_d(&y, q.dp[(i - t) - 1], &t1)) != MP_OKAY) goto LBL_Y;
  ------------------
  |  |  161|   316k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (199:11): [True: 0, False: 316k]
  ------------------
  200|       |
  201|   316k|      if ((err = mp_lshd(&t1, (i - t) - 1)) != MP_OKAY)           goto LBL_Y;
  ------------------
  |  |  161|   316k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (201:11): [True: 0, False: 316k]
  ------------------
  202|       |
  203|   316k|      if ((err = mp_sub(&x, &t1, &x)) != MP_OKAY)                 goto LBL_Y;
  ------------------
  |  |  161|   316k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (203:11): [True: 0, False: 316k]
  ------------------
  204|       |
  205|       |      /* if x < 0 then { x = x + y*b**{i-t-1}; q{i-t-1} -= 1; } */
  206|   316k|      if (x.sign == MP_NEG) {
  ------------------
  |  |  152|   316k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (206:11): [True: 1.88k, False: 315k]
  ------------------
  207|  1.88k|         if ((err = mp_copy(&y, &t1)) != MP_OKAY)                 goto LBL_Y;
  ------------------
  |  |  161|  1.88k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (207:14): [True: 0, False: 1.88k]
  ------------------
  208|  1.88k|         if ((err = mp_lshd(&t1, (i - t) - 1)) != MP_OKAY)        goto LBL_Y;
  ------------------
  |  |  161|  1.88k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (208:14): [True: 0, False: 1.88k]
  ------------------
  209|  1.88k|         if ((err = mp_add(&x, &t1, &x)) != MP_OKAY)              goto LBL_Y;
  ------------------
  |  |  161|  1.88k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (209:14): [True: 0, False: 1.88k]
  ------------------
  210|       |
  211|  1.88k|         q.dp[(i - t) - 1] = (q.dp[(i - t) - 1] - 1uL) & MP_MASK;
  ------------------
  |  |  106|  1.88k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  1.88k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  212|  1.88k|      }
  213|   316k|   }
  214|       |
  215|       |   /* now q is the quotient and x is the remainder
  216|       |    * [which we have to normalize]
  217|       |    */
  218|       |
  219|       |   /* get sign before writing to c */
  220|   102k|   x.sign = (x.used == 0) ? MP_ZPOS : a->sign;
  ------------------
  |  |  151|     17|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (220:13): [True: 17, False: 102k]
  ------------------
  221|       |
  222|   102k|   if (c != NULL) {
  ------------------
  |  Branch (222:8): [True: 685, False: 101k]
  ------------------
  223|    685|      mp_clamp(&q);
  224|    685|      mp_exch(&q, c);
  225|    685|      c->sign = neg;
  226|    685|   }
  227|       |
  228|   102k|   if (d != NULL) {
  ------------------
  |  Branch (228:8): [True: 101k, False: 685]
  ------------------
  229|   101k|      if ((err = mp_div_2d(&x, norm, &x, NULL)) != MP_OKAY)       goto LBL_Y;
  ------------------
  |  |  161|   101k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (229:11): [True: 0, False: 101k]
  ------------------
  230|   101k|      mp_exch(&x, d);
  231|   101k|   }
  232|       |
  233|   102k|   err = MP_OKAY;
  ------------------
  |  |  161|   102k|#define MP_OKAY       0   /* no error */
  ------------------
  234|       |
  235|   102k|LBL_Y:
  236|   102k|   mp_clear(&y);
  237|   102k|LBL_X:
  238|   102k|   mp_clear(&x);
  239|   102k|LBL_T2:
  240|   102k|   mp_clear(&t2);
  241|   102k|LBL_T1:
  242|   102k|   mp_clear(&t1);
  243|   102k|LBL_Q:
  244|   102k|   mp_clear(&q);
  245|   102k|   return err;
  246|   102k|}

mp_div_2:
    8|   657k|{
    9|   657k|   int     x, oldused;
   10|   657k|   mp_digit r, rr, *tmpa, *tmpb;
   11|   657k|   mp_err err;
   12|       |
   13|       |   /* copy */
   14|   657k|   if (b->alloc < a->used) {
  ------------------
  |  Branch (14:8): [True: 0, False: 657k]
  ------------------
   15|      0|      if ((err = mp_grow(b, a->used)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (15:11): [True: 0, False: 0]
  ------------------
   16|      0|         return err;
   17|      0|      }
   18|      0|   }
   19|       |
   20|   657k|   oldused = b->used;
   21|   657k|   b->used = a->used;
   22|       |
   23|       |   /* source alias */
   24|   657k|   tmpa = a->dp + b->used - 1;
   25|       |
   26|       |   /* dest alias */
   27|   657k|   tmpb = b->dp + b->used - 1;
   28|       |
   29|       |   /* carry */
   30|   657k|   r = 0;
   31|  3.97M|   for (x = b->used - 1; x >= 0; x--) {
  ------------------
  |  Branch (31:26): [True: 3.31M, False: 657k]
  ------------------
   32|       |      /* get the carry for the next iteration */
   33|  3.31M|      rr = *tmpa & 1u;
   34|       |
   35|       |      /* shift the current digit, add in carry and store */
   36|  3.31M|      *tmpb-- = (*tmpa-- >> 1) | (r << (MP_DIGIT_BIT - 1));
  ------------------
  |  |   82|  3.31M|#   define MP_DIGIT_BIT 60
  ------------------
   37|       |
   38|       |      /* forward carry to next iteration */
   39|  3.31M|      r = rr;
   40|  3.31M|   }
   41|       |
   42|       |   /* zero excess digits */
   43|   657k|   MP_ZERO_DIGITS(b->dp + b->used, oldused - b->used);
  ------------------
  |  |   89|   657k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|   657k|do {                                                    \
  |  |   91|   657k|   int zd_ = (digits);                                  \
  |  |   92|   657k|   mp_digit* zm_ = (mem);                               \
  |  |   93|   657k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 657k]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|   657k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   44|       |
   45|   657k|   b->sign = a->sign;
   46|   657k|   mp_clamp(b);
   47|   657k|   return MP_OKAY;
  ------------------
  |  |  161|   657k|#define MP_OKAY       0   /* no error */
  ------------------
   48|   657k|}

mp_div_2d:
    8|  2.71M|{
    9|  2.71M|   mp_digit D, r, rr;
   10|  2.71M|   int     x;
   11|  2.71M|   mp_err err;
   12|       |
   13|       |   /* if the shift count is <= 0 then we do no work */
   14|  2.71M|   if (b <= 0) {
  ------------------
  |  Branch (14:8): [True: 2, False: 2.71M]
  ------------------
   15|      2|      err = mp_copy(a, c);
   16|      2|      if (d != NULL) {
  ------------------
  |  Branch (16:11): [True: 0, False: 2]
  ------------------
   17|      0|         mp_zero(d);
   18|      0|      }
   19|      2|      return err;
   20|      2|   }
   21|       |
   22|       |   /* copy */
   23|  2.71M|   if ((err = mp_copy(a, c)) != MP_OKAY) {
  ------------------
  |  |  161|  2.71M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (23:8): [True: 0, False: 2.71M]
  ------------------
   24|      0|      return err;
   25|      0|   }
   26|       |   /* 'a' should not be used after here - it might be the same as d */
   27|       |
   28|       |   /* get the remainder */
   29|  2.71M|   if (d != NULL) {
  ------------------
  |  Branch (29:8): [True: 2.58M, False: 123k]
  ------------------
   30|  2.58M|      if ((err = mp_mod_2d(a, b, d)) != MP_OKAY) {
  ------------------
  |  |  161|  2.58M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (30:11): [True: 0, False: 2.58M]
  ------------------
   31|      0|         return err;
   32|      0|      }
   33|  2.58M|   }
   34|       |
   35|       |   /* shift by as many digits in the bit count */
   36|  2.71M|   if (b >= MP_DIGIT_BIT) {
  ------------------
  |  |   82|  2.71M|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (36:8): [True: 2.58M, False: 122k]
  ------------------
   37|  2.58M|      mp_rshd(c, b / MP_DIGIT_BIT);
  ------------------
  |  |   82|  2.58M|#   define MP_DIGIT_BIT 60
  ------------------
   38|  2.58M|   }
   39|       |
   40|       |   /* shift any bit count < MP_DIGIT_BIT */
   41|  2.71M|   D = (mp_digit)(b % MP_DIGIT_BIT);
  ------------------
  |  |   82|  2.71M|#   define MP_DIGIT_BIT 60
  ------------------
   42|  2.71M|   if (D != 0u) {
  ------------------
  |  Branch (42:8): [True: 2.64M, False: 68.0k]
  ------------------
   43|  2.64M|      mp_digit *tmpc, mask, shift;
   44|       |
   45|       |      /* mask */
   46|  2.64M|      mask = ((mp_digit)1 << D) - 1uL;
   47|       |
   48|       |      /* shift for lsb */
   49|  2.64M|      shift = (mp_digit)MP_DIGIT_BIT - D;
  ------------------
  |  |   82|  2.64M|#   define MP_DIGIT_BIT 60
  ------------------
   50|       |
   51|       |      /* alias */
   52|  2.64M|      tmpc = c->dp + (c->used - 1);
   53|       |
   54|       |      /* carry */
   55|  2.64M|      r = 0;
   56|  45.4M|      for (x = c->used - 1; x >= 0; x--) {
  ------------------
  |  Branch (56:29): [True: 42.7M, False: 2.64M]
  ------------------
   57|       |         /* get the lower  bits of this word in a temp */
   58|  42.7M|         rr = *tmpc & mask;
   59|       |
   60|       |         /* shift the current word and mix in the carry bits from the previous word */
   61|  42.7M|         *tmpc = (*tmpc >> D) | (r << shift);
   62|  42.7M|         --tmpc;
   63|       |
   64|       |         /* set the carry to the carry bits of the current word found above */
   65|  42.7M|         r = rr;
   66|  42.7M|      }
   67|  2.64M|   }
   68|  2.71M|   mp_clamp(c);
   69|  2.71M|   return MP_OKAY;
  ------------------
  |  |  161|  2.71M|#define MP_OKAY       0   /* no error */
  ------------------
   70|  2.71M|}

mp_div_3:
    8|    144|{
    9|    144|   mp_int   q;
   10|    144|   mp_word  w, t;
   11|    144|   mp_digit b;
   12|    144|   mp_err   err;
   13|    144|   int      ix;
   14|       |
   15|       |   /* b = 2**MP_DIGIT_BIT / 3 */
   16|    144|   b = ((mp_word)1 << (mp_word)MP_DIGIT_BIT) / (mp_word)3;
  ------------------
  |  |   82|    144|#   define MP_DIGIT_BIT 60
  ------------------
   17|       |
   18|    144|   if ((err = mp_init_size(&q, a->used)) != MP_OKAY) {
  ------------------
  |  |  161|    144|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (18:8): [True: 0, False: 144]
  ------------------
   19|      0|      return err;
   20|      0|   }
   21|       |
   22|    144|   q.used = a->used;
   23|    144|   q.sign = a->sign;
   24|    144|   w = 0;
   25|    921|   for (ix = a->used - 1; ix >= 0; ix--) {
  ------------------
  |  Branch (25:27): [True: 777, False: 144]
  ------------------
   26|    777|      w = (w << (mp_word)MP_DIGIT_BIT) | (mp_word)a->dp[ix];
  ------------------
  |  |   82|    777|#   define MP_DIGIT_BIT 60
  ------------------
   27|       |
   28|    777|      if (w >= 3u) {
  ------------------
  |  Branch (28:11): [True: 694, False: 83]
  ------------------
   29|       |         /* multiply w by [1/3] */
   30|    694|         t = (w * (mp_word)b) >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|    694|#   define MP_DIGIT_BIT 60
  ------------------
   31|       |
   32|       |         /* now subtract 3 * [w/3] from w, to get the remainder */
   33|    694|         w -= t+t+t;
   34|       |
   35|       |         /* fixup the remainder as required since
   36|       |          * the optimization is not exact.
   37|       |          */
   38|  1.16k|         while (w >= 3u) {
  ------------------
  |  Branch (38:17): [True: 474, False: 694]
  ------------------
   39|    474|            t += 1u;
   40|    474|            w -= 3u;
   41|    474|         }
   42|    694|      } else {
   43|     83|         t = 0;
   44|     83|      }
   45|    777|      q.dp[ix] = (mp_digit)t;
   46|    777|   }
   47|       |
   48|       |   /* [optional] store the remainder */
   49|    144|   if (d != NULL) {
  ------------------
  |  Branch (49:8): [True: 144, False: 0]
  ------------------
   50|    144|      *d = (mp_digit)w;
   51|    144|   }
   52|       |
   53|       |   /* [optional] store the quotient */
   54|    144|   if (c != NULL) {
  ------------------
  |  Branch (54:8): [True: 0, False: 144]
  ------------------
   55|      0|      mp_clamp(&q);
   56|      0|      mp_exch(&q, c);
   57|      0|   }
   58|    144|   mp_clear(&q);
   59|       |
   60|    144|   return err;
   61|    144|}

mp_div_d:
    8|  25.9k|{
    9|  25.9k|   mp_int  q;
   10|  25.9k|   mp_word w;
   11|  25.9k|   mp_digit t;
   12|  25.9k|   mp_err err;
   13|  25.9k|   int ix;
   14|       |
   15|       |   /* cannot divide by zero */
   16|  25.9k|   if (b == 0u) {
  ------------------
  |  Branch (16:8): [True: 0, False: 25.9k]
  ------------------
   17|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   18|      0|   }
   19|       |
   20|       |   /* quick outs */
   21|  25.9k|   if ((b == 1u) || MP_IS_ZERO(a)) {
  ------------------
  |  |  163|  25.9k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 25.9k]
  |  |  ------------------
  ------------------
  |  Branch (21:8): [True: 0, False: 25.9k]
  ------------------
   22|      0|      if (d != NULL) {
  ------------------
  |  Branch (22:11): [True: 0, False: 0]
  ------------------
   23|      0|         *d = 0;
   24|      0|      }
   25|      0|      if (c != NULL) {
  ------------------
  |  Branch (25:11): [True: 0, False: 0]
  ------------------
   26|      0|         return mp_copy(a, c);
   27|      0|      }
   28|      0|      return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   29|      0|   }
   30|       |
   31|       |   /* power of two ? */
   32|  25.9k|   if ((b & (b - 1u)) == 0u) {
  ------------------
  |  Branch (32:8): [True: 144, False: 25.7k]
  ------------------
   33|    144|      ix = 1;
   34|    144|      while ((ix < MP_DIGIT_BIT) && (b != (((mp_digit)1)<<ix))) {
  ------------------
  |  |   82|    144|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (34:14): [True: 144, False: 0]
  |  Branch (34:37): [True: 0, False: 144]
  ------------------
   35|      0|         ix++;
   36|      0|      }
   37|    144|      if (d != NULL) {
  ------------------
  |  Branch (37:11): [True: 144, False: 0]
  ------------------
   38|    144|         *d = a->dp[0] & (((mp_digit)1<<(mp_digit)ix) - 1uL);
   39|    144|      }
   40|    144|      if (c != NULL) {
  ------------------
  |  Branch (40:11): [True: 0, False: 144]
  ------------------
   41|      0|         return mp_div_2d(a, ix, c, NULL);
   42|      0|      }
   43|    144|      return MP_OKAY;
  ------------------
  |  |  161|    144|#define MP_OKAY       0   /* no error */
  ------------------
   44|    144|   }
   45|       |
   46|       |   /* three? */
   47|  25.7k|   if (MP_HAS(MP_DIV_3) && (b == 3u)) {
  ------------------
  |  |  150|  51.5k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  25.7k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  25.7k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
  |  Branch (47:28): [True: 144, False: 25.6k]
  ------------------
   48|    144|      return mp_div_3(a, c, d);
   49|    144|   }
   50|       |
   51|       |   /* no easy answer [c'est la vie].  Just division */
   52|  25.6k|   if ((err = mp_init_size(&q, a->used)) != MP_OKAY) {
  ------------------
  |  |  161|  25.6k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (52:8): [True: 0, False: 25.6k]
  ------------------
   53|      0|      return err;
   54|      0|   }
   55|       |
   56|  25.6k|   q.used = a->used;
   57|  25.6k|   q.sign = a->sign;
   58|  25.6k|   w = 0;
   59|   105k|   for (ix = a->used - 1; ix >= 0; ix--) {
  ------------------
  |  Branch (59:27): [True: 80.3k, False: 25.6k]
  ------------------
   60|  80.3k|      w = (w << (mp_word)MP_DIGIT_BIT) | (mp_word)a->dp[ix];
  ------------------
  |  |   82|  80.3k|#   define MP_DIGIT_BIT 60
  ------------------
   61|       |
   62|  80.3k|      if (w >= b) {
  ------------------
  |  Branch (62:11): [True: 79.9k, False: 358]
  ------------------
   63|  79.9k|         t = (mp_digit)(w / b);
   64|  79.9k|         w -= (mp_word)t * (mp_word)b;
   65|  79.9k|      } else {
   66|    358|         t = 0;
   67|    358|      }
   68|  80.3k|      q.dp[ix] = t;
   69|  80.3k|   }
   70|       |
   71|  25.6k|   if (d != NULL) {
  ------------------
  |  Branch (71:8): [True: 25.6k, False: 0]
  ------------------
   72|  25.6k|      *d = (mp_digit)w;
   73|  25.6k|   }
   74|       |
   75|  25.6k|   if (c != NULL) {
  ------------------
  |  Branch (75:8): [True: 0, False: 25.6k]
  ------------------
   76|      0|      mp_clamp(&q);
   77|      0|      mp_exch(&q, c);
   78|      0|   }
   79|  25.6k|   mp_clear(&q);
   80|       |
   81|  25.6k|   return err;
   82|  25.6k|}

mp_dr_is_modulus:
    8|  2.93k|{
    9|  2.93k|   int ix;
   10|       |
   11|       |   /* must be at least two digits */
   12|  2.93k|   if (a->used < 2) {
  ------------------
  |  Branch (12:8): [True: 0, False: 2.93k]
  ------------------
   13|      0|      return MP_NO;
  ------------------
  |  |  159|      0|#define MP_NO         0
  ------------------
   14|      0|   }
   15|       |
   16|       |   /* must be of the form b**k - a [a <= b] so all
   17|       |    * but the first digit must be equal to -1 (mod b).
   18|       |    */
   19|  3.11k|   for (ix = 1; ix < a->used; ix++) {
  ------------------
  |  Branch (19:17): [True: 3.11k, False: 0]
  ------------------
   20|  3.11k|      if (a->dp[ix] != MP_MASK) {
  ------------------
  |  |  106|  3.11k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  3.11k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (20:11): [True: 2.93k, False: 175]
  ------------------
   21|  2.93k|         return MP_NO;
  ------------------
  |  |  159|  2.93k|#define MP_NO         0
  ------------------
   22|  2.93k|      }
   23|  3.11k|   }
   24|      0|   return MP_YES;
  ------------------
  |  |  158|      0|#define MP_YES        1
  ------------------
   25|  2.93k|}

mp_exch:
   10|   210k|{
   11|   210k|   mp_int  t;
   12|       |
   13|   210k|   t  = *a;
   14|   210k|   *a = *b;
   15|   210k|   *b = t;
   16|   210k|}

mp_exptmod:
   12|  3.26k|{
   13|  3.26k|   int dr;
   14|       |
   15|       |   /* modulus P must be positive */
   16|  3.26k|   if (P->sign == MP_NEG) {
  ------------------
  |  |  152|  3.26k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (16:8): [True: 0, False: 3.26k]
  ------------------
   17|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   18|      0|   }
   19|       |
   20|       |   /* if exponent X is negative we have to recurse */
   21|  3.26k|   if (X->sign == MP_NEG) {
  ------------------
  |  |  152|  3.26k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (21:8): [True: 0, False: 3.26k]
  ------------------
   22|      0|      mp_int tmpG, tmpX;
   23|      0|      mp_err err;
   24|       |
   25|      0|      if (!MP_HAS(MP_INVMOD)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (25:11): [Folded - Ignored]
  ------------------
   26|      0|         return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   27|      0|      }
   28|       |
   29|      0|      if ((err = mp_init_multi(&tmpG, &tmpX, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (29:11): [True: 0, False: 0]
  ------------------
   30|      0|         return err;
   31|      0|      }
   32|       |
   33|       |      /* first compute 1/G mod P */
   34|      0|      if ((err = mp_invmod(G, P, &tmpG)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (34:11): [True: 0, False: 0]
  ------------------
   35|      0|         goto LBL_ERR;
   36|      0|      }
   37|       |
   38|       |      /* now get |X| */
   39|      0|      if ((err = mp_abs(X, &tmpX)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (39:11): [True: 0, False: 0]
  ------------------
   40|      0|         goto LBL_ERR;
   41|      0|      }
   42|       |
   43|       |      /* and now compute (1/G)**|X| instead of G**X [X < 0] */
   44|      0|      err = mp_exptmod(&tmpG, &tmpX, P, Y);
   45|      0|LBL_ERR:
   46|      0|      mp_clear_multi(&tmpG, &tmpX, NULL);
   47|      0|      return err;
   48|      0|   }
   49|       |
   50|       |   /* modified diminished radix reduction */
   51|  3.26k|   if (MP_HAS(MP_REDUCE_IS_2K_L) && MP_HAS(MP_REDUCE_2K_L) && MP_HAS(S_MP_EXPTMOD) &&
  ------------------
  |  |  150|  6.53k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  3.26k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  3.26k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 if (MP_HAS(MP_REDUCE_IS_2K_L) && MP_HAS(MP_REDUCE_2K_L) && MP_HAS(S_MP_EXPTMOD) &&
  ------------------
  |  |  150|  3.26k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 if (MP_HAS(MP_REDUCE_IS_2K_L) && MP_HAS(MP_REDUCE_2K_L) && MP_HAS(S_MP_EXPTMOD) &&
  ------------------
  |  |  150|  3.26k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   52|  3.26k|       (mp_reduce_is_2k_l(P) == MP_YES)) {
  ------------------
  |  |  158|  3.26k|#define MP_YES        1
  ------------------
  |  Branch (52:8): [True: 327, False: 2.93k]
  ------------------
   53|    327|      return s_mp_exptmod(G, X, P, Y, 1);
   54|    327|   }
   55|       |
   56|       |   /* is it a DR modulus? default to no */
   57|  2.93k|   dr = (MP_HAS(MP_DR_IS_MODULUS) && (mp_dr_is_modulus(P) == MP_YES)) ? 1 : 0;
  ------------------
  |  |  150|  5.87k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  2.93k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  2.93k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 dr = (MP_HAS(MP_DR_IS_MODULUS) && (mp_dr_is_modulus(P) == MP_YES)) ? 1 : 0;
  ------------------
  |  |  158|  2.93k|#define MP_YES        1
  ------------------
  |  Branch (57:38): [True: 0, False: 2.93k]
  ------------------
   58|       |
   59|       |   /* if not, is it a unrestricted DR modulus? */
   60|  2.93k|   if (MP_HAS(MP_REDUCE_IS_2K) && (dr == 0)) {
  ------------------
  |  |  150|  5.87k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  2.93k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  2.93k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
  |  Branch (60:35): [True: 2.93k, False: 0]
  ------------------
   61|  2.93k|      dr = (mp_reduce_is_2k(P) == MP_YES) ? 2 : 0;
  ------------------
  |  |  158|  2.93k|#define MP_YES        1
  ------------------
  |  Branch (61:12): [True: 0, False: 2.93k]
  ------------------
   62|  2.93k|   }
   63|       |
   64|       |   /* if the modulus is odd or dr != 0 use the montgomery method */
   65|  2.93k|   if (MP_HAS(S_MP_EXPTMOD_FAST) && (MP_IS_ODD(P) || (dr != 0))) {
  ------------------
  |  |  150|  5.87k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  2.93k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  2.93k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 if (MP_HAS(S_MP_EXPTMOD_FAST) && (MP_IS_ODD(P) || (dr != 0))) {
  ------------------
  |  |  165|  5.87k|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 2.93k, False: 0]
  |  |  |  Branch (165:43): [True: 2.39k, False: 544]
  |  |  ------------------
  ------------------
  |  Branch (65:54): [True: 0, False: 544]
  ------------------
   66|  2.39k|      return s_mp_exptmod_fast(G, X, P, Y, dr);
   67|  2.39k|   } else if (MP_HAS(S_MP_EXPTMOD)) {
  ------------------
  |  |  150|    544|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|    544|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|    544|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   68|       |      /* otherwise use the generic Barrett reduction technique */
   69|    544|      return s_mp_exptmod(G, X, P, Y, 0);
   70|    544|   } else {
   71|       |      /* no exptmod for evens */
   72|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   73|      0|   }
   74|  2.93k|}

mp_from_ubin:
    8|  6.58k|{
    9|  6.58k|   mp_err err;
   10|       |
   11|       |   /* make sure there are at least two digits */
   12|  6.58k|   if (a->alloc < 2) {
  ------------------
  |  Branch (12:8): [True: 0, False: 6.58k]
  ------------------
   13|      0|      if ((err = mp_grow(a, 2)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (13:11): [True: 0, False: 0]
  ------------------
   14|      0|         return err;
   15|      0|      }
   16|      0|   }
   17|       |
   18|       |   /* zero the int */
   19|  6.58k|   mp_zero(a);
   20|       |
   21|       |   /* read the bytes in */
   22|  1.11M|   while (size-- > 0u) {
  ------------------
  |  Branch (22:11): [True: 1.10M, False: 6.58k]
  ------------------
   23|  1.10M|      if ((err = mp_mul_2d(a, 8, a)) != MP_OKAY) {
  ------------------
  |  |  161|  1.10M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (23:11): [True: 0, False: 1.10M]
  ------------------
   24|      0|         return err;
   25|      0|      }
   26|       |
   27|  1.10M|#ifndef MP_8BIT
   28|  1.10M|      a->dp[0] |= *buf++;
   29|  1.10M|      a->used += 1;
   30|       |#else
   31|       |      a->dp[0] = (*buf & MP_MASK);
   32|       |      a->dp[1] |= ((*buf++ >> 7) & 1u);
   33|       |      a->used += 2;
   34|       |#endif
   35|  1.10M|   }
   36|  6.58k|   mp_clamp(a);
   37|  6.58k|   return MP_OKAY;
  ------------------
  |  |  161|  6.58k|#define MP_OKAY       0   /* no error */
  ------------------
   38|  6.58k|}

mp_grow:
    8|   465k|{
    9|   465k|   int     i;
   10|   465k|   mp_digit *tmp;
   11|       |
   12|       |   /* if the alloc size is smaller alloc more ram */
   13|   465k|   if (a->alloc < size) {
  ------------------
  |  Branch (13:8): [True: 459k, False: 6.70k]
  ------------------
   14|       |      /* reallocate the array a->dp
   15|       |       *
   16|       |       * We store the return in a temporary variable
   17|       |       * in case the operation failed we don't want
   18|       |       * to overwrite the dp member of a.
   19|       |       */
   20|   459k|      tmp = (mp_digit *) MP_REALLOC(a->dp,
  ------------------
  |  | 1325|   459k|#define MP_REALLOC   m_realloc_ltm
  ------------------
   21|   459k|                                    (size_t)a->alloc * sizeof(mp_digit),
   22|   459k|                                    (size_t)size * sizeof(mp_digit));
   23|   459k|      if (tmp == NULL) {
  ------------------
  |  Branch (23:11): [True: 0, False: 459k]
  ------------------
   24|       |         /* reallocation failed but "a" is still valid [can be freed] */
   25|      0|         return MP_MEM;
  ------------------
  |  |  163|      0|#define MP_MEM        -2  /* out of mem */
  ------------------
   26|      0|      }
   27|       |
   28|       |      /* reallocation succeeded so set a->dp */
   29|   459k|      a->dp = tmp;
   30|       |
   31|       |      /* zero excess digits */
   32|   459k|      i        = a->alloc;
   33|   459k|      a->alloc = size;
   34|   459k|      MP_ZERO_DIGITS(a->dp + i, a->alloc - i);
  ------------------
  |  |   89|   459k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|   459k|do {                                                    \
  |  |   91|   459k|   int zd_ = (digits);                                  \
  |  |   92|   459k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  1.57M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 1.11M, False: 459k]
  |  |  ------------------
  |  |   94|  1.11M|      *zm_++ = 0;                                       \
  |  |   95|  1.11M|   }                                                    \
  |  |   96|   459k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   35|   459k|   }
   36|   465k|   return MP_OKAY;
  ------------------
  |  |  161|   465k|#define MP_OKAY       0   /* no error */
  ------------------
   37|   465k|}

mp_init:
    8|   761k|{
    9|       |   /* allocate memory required and clear it */
   10|   761k|   a->dp = (mp_digit *) MP_CALLOC((size_t)MP_PREC, sizeof(mp_digit));
  ------------------
  |  | 1326|   761k|#define MP_CALLOC    m_calloc
  ------------------
                 a->dp = (mp_digit *) MP_CALLOC((size_t)MP_PREC, sizeof(mp_digit));
  ------------------
  |  |  177|   761k|#   define MP_PREC PRIVATE_MP_PREC
  |  |  ------------------
  |  |  |  |  193|   761k|#      define PRIVATE_MP_PREC 32        /* default digits of precision */
  |  |  ------------------
  ------------------
   11|   761k|   if (a->dp == NULL) {
  ------------------
  |  Branch (11:8): [True: 0, False: 761k]
  ------------------
   12|      0|      return MP_MEM;
  ------------------
  |  |  163|      0|#define MP_MEM        -2  /* out of mem */
  ------------------
   13|      0|   }
   14|       |
   15|       |   /* set the used to zero, allocated digits to the default precision
   16|       |    * and sign to positive */
   17|   761k|   a->used  = 0;
   18|   761k|   a->alloc = MP_PREC;
  ------------------
  |  |  177|   761k|#   define MP_PREC PRIVATE_MP_PREC
  |  |  ------------------
  |  |  |  |  193|   761k|#      define PRIVATE_MP_PREC 32        /* default digits of precision */
  |  |  ------------------
  ------------------
   19|   761k|   a->sign  = MP_ZPOS;
  ------------------
  |  |  151|   761k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   20|       |
   21|   761k|   return MP_OKAY;
  ------------------
  |  |  161|   761k|#define MP_OKAY       0   /* no error */
  ------------------
   22|   761k|}

mp_init_copy:
    8|   251k|{
    9|   251k|   mp_err     err;
   10|       |
   11|   251k|   if ((err = mp_init_size(a, b->used)) != MP_OKAY) {
  ------------------
  |  |  161|   251k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (11:8): [True: 0, False: 251k]
  ------------------
   12|      0|      return err;
   13|      0|   }
   14|       |
   15|   251k|   if ((err = mp_copy(b, a)) != MP_OKAY) {
  ------------------
  |  |  161|   251k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (15:8): [True: 0, False: 251k]
  ------------------
   16|      0|      mp_clear(a);
   17|      0|   }
   18|       |
   19|   251k|   return err;
   20|   251k|}

mp_init_multi:
    9|    737|{
   10|    737|   mp_err err = MP_OKAY;      /* Assume ok until proven otherwise */
  ------------------
  |  |  161|    737|#define MP_OKAY       0   /* no error */
  ------------------
   11|    737|   int n = 0;                 /* Number of ok inits */
   12|    737|   mp_int *cur_arg = mp;
   13|    737|   va_list args;
   14|       |
   15|    737|   va_start(args, mp);        /* init args to next argument from caller */
   16|  5.28k|   while (cur_arg != NULL) {
  ------------------
  |  Branch (16:11): [True: 4.55k, False: 737]
  ------------------
   17|  4.55k|      if (mp_init(cur_arg) != MP_OKAY) {
  ------------------
  |  |  161|  4.55k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (17:11): [True: 0, False: 4.55k]
  ------------------
   18|       |         /* Oops - error! Back-track and mp_clear what we already
   19|       |            succeeded in init-ing, then return error.
   20|       |         */
   21|      0|         va_list clean_args;
   22|       |
   23|       |         /* now start cleaning up */
   24|      0|         cur_arg = mp;
   25|      0|         va_start(clean_args, mp);
   26|      0|         while (n-- != 0) {
  ------------------
  |  Branch (26:17): [True: 0, False: 0]
  ------------------
   27|      0|            mp_clear(cur_arg);
   28|      0|            cur_arg = va_arg(clean_args, mp_int *);
   29|      0|         }
   30|      0|         va_end(clean_args);
   31|      0|         err = MP_MEM;
  ------------------
  |  |  163|      0|#define MP_MEM        -2  /* out of mem */
  ------------------
   32|      0|         break;
   33|      0|      }
   34|  4.55k|      n++;
   35|  4.55k|      cur_arg = va_arg(args, mp_int *);
   36|  4.55k|   }
   37|    737|   va_end(args);
   38|    737|   return err;                /* Assumed ok, if error flagged above. */
   39|    737|}

mp_init_set:
    8|     96|{
    9|     96|   mp_err err;
   10|     96|   if ((err = mp_init(a)) != MP_OKAY) {
  ------------------
  |  |  161|     96|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (10:8): [True: 0, False: 96]
  ------------------
   11|      0|      return err;
   12|      0|   }
   13|     96|   mp_set(a, b);
   14|     96|   return err;
   15|     96|}

mp_init_size:
    8|   514k|{
    9|   514k|   size = MP_MAX(MP_MIN_PREC, size);
  ------------------
  |  |  157|   514k|#define MP_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (157:23): [True: 11.4k, False: 503k]
  |  |  ------------------
  ------------------
   10|       |
   11|       |   /* alloc mem */
   12|   514k|   a->dp = (mp_digit *) MP_CALLOC((size_t)size, sizeof(mp_digit));
  ------------------
  |  | 1326|   514k|#define MP_CALLOC    m_calloc
  ------------------
   13|   514k|   if (a->dp == NULL) {
  ------------------
  |  Branch (13:8): [True: 0, False: 514k]
  ------------------
   14|      0|      return MP_MEM;
  ------------------
  |  |  163|      0|#define MP_MEM        -2  /* out of mem */
  ------------------
   15|      0|   }
   16|       |
   17|       |   /* set the members */
   18|   514k|   a->used  = 0;
   19|   514k|   a->alloc = size;
   20|   514k|   a->sign  = MP_ZPOS;
  ------------------
  |  |  151|   514k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   21|       |
   22|   514k|   return MP_OKAY;
  ------------------
  |  |  161|   514k|#define MP_OKAY       0   /* no error */
  ------------------
   23|   514k|}

mp_invmod:
    8|    737|{
    9|       |   /* b cannot be negative and has to be >1 */
   10|    737|   if ((b->sign == MP_NEG) || (mp_cmp_d(b, 1uL) != MP_GT)) {
  ------------------
  |  |  152|    737|#define MP_NEG        1   /* negative */
  ------------------
                 if ((b->sign == MP_NEG) || (mp_cmp_d(b, 1uL) != MP_GT)) {
  ------------------
  |  |  156|    737|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (10:8): [True: 0, False: 737]
  |  Branch (10:31): [True: 0, False: 737]
  ------------------
   11|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   12|      0|   }
   13|       |
   14|       |   /* if the modulus is odd we can use a faster routine instead */
   15|    737|   if (MP_HAS(S_MP_INVMOD_FAST) && MP_IS_ODD(b)) {
  ------------------
  |  |  150|  1.47k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|    737|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|    737|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 if (MP_HAS(S_MP_INVMOD_FAST) && MP_IS_ODD(b)) {
  ------------------
  |  |  165|    737|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 737, False: 0]
  |  |  |  Branch (165:43): [True: 673, False: 64]
  |  |  ------------------
  ------------------
   16|    673|      return s_mp_invmod_fast(a, b, c);
   17|    673|   }
   18|       |
   19|     64|   return MP_HAS(S_MP_INVMOD_SLOW)
  ------------------
  |  |  150|     64|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|     64|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|     64|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   20|     64|          ? s_mp_invmod_slow(a, b, c)
   21|     64|          : MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   22|    737|}

mp_is_square:
   30|    145|{
   31|    145|   mp_err        err;
   32|    145|   mp_digit      c;
   33|    145|   mp_int        t;
   34|    145|   unsigned long r;
   35|       |
   36|       |   /* Default to Non-square :) */
   37|    145|   *ret = MP_NO;
  ------------------
  |  |  159|    145|#define MP_NO         0
  ------------------
   38|       |
   39|    145|   if (arg->sign == MP_NEG) {
  ------------------
  |  |  152|    145|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (39:8): [True: 0, False: 145]
  ------------------
   40|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   41|      0|   }
   42|       |
   43|    145|   if (MP_IS_ZERO(arg)) {
  ------------------
  |  |  163|    145|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 145]
  |  |  ------------------
  ------------------
   44|      0|      return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   45|      0|   }
   46|       |
   47|       |   /* First check mod 128 (suppose that MP_DIGIT_BIT is at least 7) */
   48|    145|   if (rem_128[127u & arg->dp[0]] == (char)1) {
  ------------------
  |  Branch (48:8): [True: 18, False: 127]
  ------------------
   49|     18|      return MP_OKAY;
  ------------------
  |  |  161|     18|#define MP_OKAY       0   /* no error */
  ------------------
   50|     18|   }
   51|       |
   52|       |   /* Next check mod 105 (3*5*7) */
   53|    127|   if ((err = mp_mod_d(arg, 105uL, &c)) != MP_OKAY) {
  ------------------
  |  |  161|    127|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (53:8): [True: 0, False: 127]
  ------------------
   54|      0|      return err;
   55|      0|   }
   56|    127|   if (rem_105[c] == (char)1) {
  ------------------
  |  Branch (56:8): [True: 78, False: 49]
  ------------------
   57|     78|      return MP_OKAY;
  ------------------
  |  |  161|     78|#define MP_OKAY       0   /* no error */
  ------------------
   58|     78|   }
   59|       |
   60|       |
   61|     49|   if ((err = mp_init_u32(&t, 11u*13u*17u*19u*23u*29u*31u)) != MP_OKAY) {
  ------------------
  |  |  161|     49|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (61:8): [True: 0, False: 49]
  ------------------
   62|      0|      return err;
   63|      0|   }
   64|     49|   if ((err = mp_mod(arg, &t, &t)) != MP_OKAY) {
  ------------------
  |  |  161|     49|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (64:8): [True: 0, False: 49]
  ------------------
   65|      0|      goto LBL_ERR;
   66|      0|   }
   67|     49|   r = mp_get_u32(&t);
  ------------------
  |  |  310|     49|#define mp_get_u32(a) ((uint32_t)mp_get_i32(a))
  ------------------
   68|       |   /* Check for other prime modules, note it's not an ERROR but we must
   69|       |    * free "t" so the easiest way is to goto LBL_ERR.  We know that err
   70|       |    * is already equal to MP_OKAY from the mp_mod call
   71|       |    */
   72|     49|   if (((1uL<<(r%11uL)) & 0x5C4uL) != 0uL)         goto LBL_ERR;
  ------------------
  |  Branch (72:8): [True: 14, False: 35]
  ------------------
   73|     35|   if (((1uL<<(r%13uL)) & 0x9E4uL) != 0uL)         goto LBL_ERR;
  ------------------
  |  Branch (73:8): [True: 5, False: 30]
  ------------------
   74|     30|   if (((1uL<<(r%17uL)) & 0x5CE8uL) != 0uL)        goto LBL_ERR;
  ------------------
  |  Branch (74:8): [True: 6, False: 24]
  ------------------
   75|     24|   if (((1uL<<(r%19uL)) & 0x4F50CuL) != 0uL)       goto LBL_ERR;
  ------------------
  |  Branch (75:8): [True: 14, False: 10]
  ------------------
   76|     10|   if (((1uL<<(r%23uL)) & 0x7ACCA0uL) != 0uL)      goto LBL_ERR;
  ------------------
  |  Branch (76:8): [True: 2, False: 8]
  ------------------
   77|      8|   if (((1uL<<(r%29uL)) & 0xC2EDD0CuL) != 0uL)     goto LBL_ERR;
  ------------------
  |  Branch (77:8): [True: 2, False: 6]
  ------------------
   78|      6|   if (((1uL<<(r%31uL)) & 0x6DE2B848uL) != 0uL)    goto LBL_ERR;
  ------------------
  |  Branch (78:8): [True: 1, False: 5]
  ------------------
   79|       |
   80|       |   /* Final check - is sqr(sqrt(arg)) == arg ? */
   81|      5|   if ((err = mp_sqrt(arg, &t)) != MP_OKAY) {
  ------------------
  |  |  161|      5|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (81:8): [True: 0, False: 5]
  ------------------
   82|      0|      goto LBL_ERR;
   83|      0|   }
   84|      5|   if ((err = mp_sqr(&t, &t)) != MP_OKAY) {
  ------------------
  |  |  161|      5|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (84:8): [True: 0, False: 5]
  ------------------
   85|      0|      goto LBL_ERR;
   86|      0|   }
   87|       |
   88|      5|   *ret = (mp_cmp_mag(&t, arg) == MP_EQ) ? MP_YES : MP_NO;
  ------------------
  |  |  155|      5|#define MP_EQ         0   /* equal to */
  ------------------
                 *ret = (mp_cmp_mag(&t, arg) == MP_EQ) ? MP_YES : MP_NO;
  ------------------
  |  |  158|      1|#define MP_YES        1
  ------------------
                 *ret = (mp_cmp_mag(&t, arg) == MP_EQ) ? MP_YES : MP_NO;
  ------------------
  |  |  159|      9|#define MP_NO         0
  ------------------
  |  Branch (88:11): [True: 1, False: 4]
  ------------------
   89|     49|LBL_ERR:
   90|     49|   mp_clear(&t);
   91|     49|   return err;
   92|      5|}

mp_lshd:
    8|   428k|{
    9|   428k|   int x;
   10|   428k|   mp_err err;
   11|   428k|   mp_digit *top, *bottom;
   12|       |
   13|       |   /* if its less than zero return */
   14|   428k|   if (b <= 0) {
  ------------------
  |  Branch (14:8): [True: 103k, False: 325k]
  ------------------
   15|   103k|      return MP_OKAY;
  ------------------
  |  |  161|   103k|#define MP_OKAY       0   /* no error */
  ------------------
   16|   103k|   }
   17|       |   /* no need to shift 0 around */
   18|   325k|   if (MP_IS_ZERO(a)) {
  ------------------
  |  |  163|   325k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 537, False: 324k]
  |  |  ------------------
  ------------------
   19|    537|      return MP_OKAY;
  ------------------
  |  |  161|    537|#define MP_OKAY       0   /* no error */
  ------------------
   20|    537|   }
   21|       |
   22|       |   /* grow to fit the new digits */
   23|   324k|   if (a->alloc < (a->used + b)) {
  ------------------
  |  Branch (23:8): [True: 100k, False: 223k]
  ------------------
   24|   100k|      if ((err = mp_grow(a, a->used + b)) != MP_OKAY) {
  ------------------
  |  |  161|   100k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (24:11): [True: 0, False: 100k]
  ------------------
   25|      0|         return err;
   26|      0|      }
   27|   100k|   }
   28|       |
   29|       |   /* increment the used by the shift amount then copy upwards */
   30|   324k|   a->used += b;
   31|       |
   32|       |   /* top */
   33|   324k|   top = a->dp + a->used - 1;
   34|       |
   35|       |   /* base */
   36|   324k|   bottom = (a->dp + a->used - 1) - b;
   37|       |
   38|       |   /* much like mp_rshd this is implemented using a sliding window
   39|       |    * except the window goes the otherway around.  Copying from
   40|       |    * the bottom to the top.  see bn_mp_rshd.c for more info.
   41|       |    */
   42|  2.03M|   for (x = a->used - 1; x >= b; x--) {
  ------------------
  |  Branch (42:26): [True: 1.71M, False: 324k]
  ------------------
   43|  1.71M|      *top-- = *bottom--;
   44|  1.71M|   }
   45|       |
   46|       |   /* zero the lower digits */
   47|   324k|   MP_ZERO_DIGITS(a->dp, b);
  ------------------
  |  |   89|   324k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|   324k|do {                                                    \
  |  |   91|   324k|   int zd_ = (digits);                                  \
  |  |   92|   324k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  1.39M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 1.06M, False: 324k]
  |  |  ------------------
  |  |   94|  1.06M|      *zm_++ = 0;                                       \
  |  |   95|  1.06M|   }                                                    \
  |  |   96|   324k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   48|       |
   49|   324k|   return MP_OKAY;
  ------------------
  |  |  161|   324k|#define MP_OKAY       0   /* no error */
  ------------------
   50|   324k|}

mp_mod:
    8|   104k|{
    9|   104k|   mp_int  t;
   10|   104k|   mp_err  err;
   11|       |
   12|   104k|   if ((err = mp_init_size(&t, b->used)) != MP_OKAY) {
  ------------------
  |  |  161|   104k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (12:8): [True: 0, False: 104k]
  ------------------
   13|      0|      return err;
   14|      0|   }
   15|       |
   16|   104k|   if ((err = mp_div(a, b, NULL, &t)) != MP_OKAY) {
  ------------------
  |  |  161|   104k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:8): [True: 0, False: 104k]
  ------------------
   17|      0|      goto LBL_ERR;
   18|      0|   }
   19|       |
   20|   104k|   if (MP_IS_ZERO(&t) || (t.sign == b->sign)) {
  ------------------
  |  |  163|   208k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 749, False: 103k]
  |  |  ------------------
  ------------------
  |  Branch (20:26): [True: 103k, False: 260]
  ------------------
   21|   103k|      err = MP_OKAY;
  ------------------
  |  |  161|   103k|#define MP_OKAY       0   /* no error */
  ------------------
   22|   103k|      mp_exch(&t, c);
   23|   103k|   } else {
   24|    260|      err = mp_add(b, &t, c);
   25|    260|   }
   26|       |
   27|   104k|LBL_ERR:
   28|   104k|   mp_clear(&t);
   29|   104k|   return err;
   30|   104k|}

mp_mod_2d:
    8|  2.62M|{
    9|  2.62M|   int x;
   10|  2.62M|   mp_err err;
   11|       |
   12|       |   /* if b is <= 0 then zero the int */
   13|  2.62M|   if (b <= 0) {
  ------------------
  |  Branch (13:8): [True: 0, False: 2.62M]
  ------------------
   14|      0|      mp_zero(c);
   15|      0|      return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   16|      0|   }
   17|       |
   18|       |   /* if the modulus is larger than the value than return */
   19|  2.62M|   if (b >= (a->used * MP_DIGIT_BIT)) {
  ------------------
  |  |   82|  2.62M|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (19:8): [True: 32.6k, False: 2.59M]
  ------------------
   20|  32.6k|      return mp_copy(a, c);
   21|  32.6k|   }
   22|       |
   23|       |   /* copy */
   24|  2.59M|   if ((err = mp_copy(a, c)) != MP_OKAY) {
  ------------------
  |  |  161|  2.59M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (24:8): [True: 0, False: 2.59M]
  ------------------
   25|      0|      return err;
   26|      0|   }
   27|       |
   28|       |   /* zero digits above the last digit of the modulus */
   29|  2.59M|   x = (b / MP_DIGIT_BIT) + (((b % MP_DIGIT_BIT) == 0) ? 0 : 1);
  ------------------
  |  |   82|  2.59M|#   define MP_DIGIT_BIT 60
  ------------------
                 x = (b / MP_DIGIT_BIT) + (((b % MP_DIGIT_BIT) == 0) ? 0 : 1);
  ------------------
  |  |   82|  2.59M|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (29:30): [True: 82.9k, False: 2.51M]
  ------------------
   30|  2.59M|   MP_ZERO_DIGITS(c->dp + x, c->used - x);
  ------------------
  |  |   89|  2.59M|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  2.59M|do {                                                    \
  |  |   91|  2.59M|   int zd_ = (digits);                                  \
  |  |   92|  2.59M|   mp_digit* zm_ = (mem);                               \
  |  |   93|  43.4M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 40.8M, False: 2.59M]
  |  |  ------------------
  |  |   94|  40.8M|      *zm_++ = 0;                                       \
  |  |   95|  40.8M|   }                                                    \
  |  |   96|  2.59M|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   31|       |
   32|       |   /* clear the digit that is not completely outside/inside the modulus */
   33|  2.59M|   c->dp[b / MP_DIGIT_BIT] &=
  ------------------
  |  |   82|  2.59M|#   define MP_DIGIT_BIT 60
  ------------------
   34|  2.59M|      ((mp_digit)1 << (mp_digit)(b % MP_DIGIT_BIT)) - (mp_digit)1;
  ------------------
  |  |   82|  2.59M|#   define MP_DIGIT_BIT 60
  ------------------
   35|  2.59M|   mp_clamp(c);
   36|  2.59M|   return MP_OKAY;
  ------------------
  |  |  161|  2.59M|#define MP_OKAY       0   /* no error */
  ------------------
   37|  2.59M|}

mp_mod_d:
    7|  25.9k|{
    8|  25.9k|   return mp_div_d(a, b, NULL, c);
    9|  25.9k|}

mp_montgomery_calc_normalization:
   13|  2.64k|{
   14|  2.64k|   int    x, bits;
   15|  2.64k|   mp_err err;
   16|       |
   17|       |   /* how many bits of last digit does b use */
   18|  2.64k|   bits = mp_count_bits(b) % MP_DIGIT_BIT;
  ------------------
  |  |   82|  2.64k|#   define MP_DIGIT_BIT 60
  ------------------
   19|       |
   20|  2.64k|   if (b->used > 1) {
  ------------------
  |  Branch (20:8): [True: 2.64k, False: 0]
  ------------------
   21|  2.64k|      if ((err = mp_2expt(a, ((b->used - 1) * MP_DIGIT_BIT) + bits - 1)) != MP_OKAY) {
  ------------------
  |  |   82|  2.64k|#   define MP_DIGIT_BIT 60
  ------------------
                    if ((err = mp_2expt(a, ((b->used - 1) * MP_DIGIT_BIT) + bits - 1)) != MP_OKAY) {
  ------------------
  |  |  161|  2.64k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (21:11): [True: 0, False: 2.64k]
  ------------------
   22|      0|         return err;
   23|      0|      }
   24|  2.64k|   } else {
   25|      0|      mp_set(a, 1uL);
   26|      0|      bits = 1;
   27|      0|   }
   28|       |
   29|       |
   30|       |   /* now compute C = A * B mod b */
   31|  78.1k|   for (x = bits - 1; x < (int)MP_DIGIT_BIT; x++) {
  ------------------
  |  |   82|  78.1k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (31:23): [True: 75.5k, False: 2.64k]
  ------------------
   32|  75.5k|      if ((err = mp_mul_2(a, a)) != MP_OKAY) {
  ------------------
  |  |  161|  75.5k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (32:11): [True: 0, False: 75.5k]
  ------------------
   33|      0|         return err;
   34|      0|      }
   35|  75.5k|      if (mp_cmp_mag(a, b) != MP_LT) {
  ------------------
  |  |  154|  75.5k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (35:11): [True: 27.2k, False: 48.3k]
  ------------------
   36|  27.2k|         if ((err = s_mp_sub(a, b, a)) != MP_OKAY) {
  ------------------
  |  |  161|  27.2k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (36:14): [True: 0, False: 27.2k]
  ------------------
   37|      0|            return err;
   38|      0|         }
   39|  27.2k|      }
   40|  75.5k|   }
   41|       |
   42|  2.64k|   return MP_OKAY;
  ------------------
  |  |  161|  2.64k|#define MP_OKAY       0   /* no error */
  ------------------
   43|  2.64k|}

mp_montgomery_reduce:
    8|  1.35M|{
    9|  1.35M|   int      ix, digs;
   10|  1.35M|   mp_err   err;
   11|  1.35M|   mp_digit mu;
   12|       |
   13|       |   /* can the fast reduction [comba] method be used?
   14|       |    *
   15|       |    * Note that unlike in mul you're safely allowed *less*
   16|       |    * than the available columns [255 per default] since carries
   17|       |    * are fixed up in the inner loop.
   18|       |    */
   19|  1.35M|   digs = (n->used * 2) + 1;
   20|  1.35M|   if ((digs < MP_WARRAY) &&
  ------------------
  |  |  172|  1.35M|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|  1.35M|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  1.35M|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (20:8): [True: 1.35M, False: 0]
  ------------------
   21|  1.35M|       (x->used <= MP_WARRAY) &&
  ------------------
  |  |  172|  1.35M|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|  1.35M|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  1.35M|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (21:8): [True: 1.35M, False: 0]
  ------------------
   22|  1.35M|       (n->used < MP_MAXFAST)) {
  ------------------
  |  |  168|  1.35M|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|  1.35M|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|  1.35M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (22:8): [True: 1.35M, False: 0]
  ------------------
   23|  1.35M|      return s_mp_montgomery_reduce_fast(x, n, rho);
   24|  1.35M|   }
   25|       |
   26|       |   /* grow the input as required */
   27|      0|   if (x->alloc < digs) {
  ------------------
  |  Branch (27:8): [True: 0, False: 0]
  ------------------
   28|      0|      if ((err = mp_grow(x, digs)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (28:11): [True: 0, False: 0]
  ------------------
   29|      0|         return err;
   30|      0|      }
   31|      0|   }
   32|      0|   x->used = digs;
   33|       |
   34|      0|   for (ix = 0; ix < n->used; ix++) {
  ------------------
  |  Branch (34:17): [True: 0, False: 0]
  ------------------
   35|       |      /* mu = ai * rho mod b
   36|       |       *
   37|       |       * The value of rho must be precalculated via
   38|       |       * montgomery_setup() such that
   39|       |       * it equals -1/n0 mod b this allows the
   40|       |       * following inner loop to reduce the
   41|       |       * input one digit at a time
   42|       |       */
   43|      0|      mu = (mp_digit)(((mp_word)x->dp[ix] * (mp_word)rho) & MP_MASK);
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   44|       |
   45|       |      /* a = a + mu * m * b**i */
   46|      0|      {
   47|      0|         int iy;
   48|      0|         mp_digit *tmpn, *tmpx, u;
   49|      0|         mp_word r;
   50|       |
   51|       |         /* alias for digits of the modulus */
   52|      0|         tmpn = n->dp;
   53|       |
   54|       |         /* alias for the digits of x [the input] */
   55|      0|         tmpx = x->dp + ix;
   56|       |
   57|       |         /* set the carry to zero */
   58|      0|         u = 0;
   59|       |
   60|       |         /* Multiply and add in place */
   61|      0|         for (iy = 0; iy < n->used; iy++) {
  ------------------
  |  Branch (61:23): [True: 0, False: 0]
  ------------------
   62|       |            /* compute product and sum */
   63|      0|            r       = ((mp_word)mu * (mp_word)*tmpn++) +
   64|      0|                      (mp_word)u + (mp_word)*tmpx;
   65|       |
   66|       |            /* get carry */
   67|      0|            u       = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
   68|       |
   69|       |            /* fix digit */
   70|      0|            *tmpx++ = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   71|      0|         }
   72|       |         /* At this point the ix'th digit of x should be zero */
   73|       |
   74|       |
   75|       |         /* propagate carries upwards as required*/
   76|      0|         while (u != 0u) {
  ------------------
  |  Branch (76:17): [True: 0, False: 0]
  ------------------
   77|      0|            *tmpx   += u;
   78|      0|            u        = *tmpx >> MP_DIGIT_BIT;
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
   79|      0|            *tmpx++ &= MP_MASK;
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   80|      0|         }
   81|      0|      }
   82|      0|   }
   83|       |
   84|       |   /* at this point the n.used'th least
   85|       |    * significant digits of x are all zero
   86|       |    * which means we can shift x to the
   87|       |    * right by n.used digits and the
   88|       |    * residue is unchanged.
   89|       |    */
   90|       |
   91|       |   /* x = x/b**n.used */
   92|      0|   mp_clamp(x);
   93|      0|   mp_rshd(x, n->used);
   94|       |
   95|       |   /* if x >= n then x = x - n */
   96|      0|   if (mp_cmp_mag(x, n) != MP_LT) {
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (96:8): [True: 0, False: 0]
  ------------------
   97|      0|      return s_mp_sub(x, n, x);
   98|      0|   }
   99|       |
  100|      0|   return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  101|      0|}

mp_montgomery_setup:
    8|  2.64k|{
    9|  2.64k|   mp_digit x, b;
   10|       |
   11|       |   /* fast inversion mod 2**k
   12|       |    *
   13|       |    * Based on the fact that
   14|       |    *
   15|       |    * XA = 1 (mod 2**n)  =>  (X(2-XA)) A = 1 (mod 2**2n)
   16|       |    *                    =>  2*X*A - X*X*A*A = 1
   17|       |    *                    =>  2*(1) - (1)     = 1
   18|       |    */
   19|  2.64k|   b = n->dp[0];
   20|       |
   21|  2.64k|   if ((b & 1u) == 0u) {
  ------------------
  |  Branch (21:8): [True: 0, False: 2.64k]
  ------------------
   22|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   23|      0|   }
   24|       |
   25|  2.64k|   x = (((b + 2u) & 4u) << 1) + b; /* here x*a==1 mod 2**4 */
   26|  2.64k|   x *= 2u - (b * x);              /* here x*a==1 mod 2**8 */
   27|  2.64k|#if !defined(MP_8BIT)
   28|  2.64k|   x *= 2u - (b * x);              /* here x*a==1 mod 2**16 */
   29|  2.64k|#endif
   30|  2.64k|#if defined(MP_64BIT) || !(defined(MP_8BIT) || defined(MP_16BIT))
   31|  2.64k|   x *= 2u - (b * x);              /* here x*a==1 mod 2**32 */
   32|  2.64k|#endif
   33|  2.64k|#ifdef MP_64BIT
   34|  2.64k|   x *= 2u - (b * x);              /* here x*a==1 mod 2**64 */
   35|  2.64k|#endif
   36|       |
   37|       |   /* rho = -1/m mod b */
   38|  2.64k|   *rho = (mp_digit)(((mp_word)1 << (mp_word)MP_DIGIT_BIT) - x) & MP_MASK;
  ------------------
  |  |   82|  2.64k|#   define MP_DIGIT_BIT 60
  ------------------
                 *rho = (mp_digit)(((mp_word)1 << (mp_word)MP_DIGIT_BIT) - x) & MP_MASK;
  ------------------
  |  |  106|  2.64k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  2.64k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   39|       |
   40|  2.64k|   return MP_OKAY;
  ------------------
  |  |  161|  2.64k|#define MP_OKAY       0   /* no error */
  ------------------
   41|  2.64k|}

mp_mul:
    8|  3.51M|{
    9|  3.51M|   mp_err err;
   10|  3.51M|   int min_len = MP_MIN(a->used, b->used),
  ------------------
  |  |  156|  3.51M|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 2.33M, False: 1.18M]
  |  |  ------------------
  ------------------
   11|  3.51M|       max_len = MP_MAX(a->used, b->used),
  ------------------
  |  |  157|  3.51M|#define MP_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (157:23): [True: 16.6k, False: 3.49M]
  |  |  ------------------
  ------------------
   12|  3.51M|       digs = a->used + b->used + 1;
   13|  3.51M|   mp_sign neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  151|  3.51M|#define MP_ZPOS       0   /* positive integer */
  ------------------
                 mp_sign neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (13:18): [True: 3.51M, False: 0]
  ------------------
   14|       |
   15|  3.51M|   if (MP_HAS(S_MP_BALANCE_MUL) &&
  ------------------
  |  |  150|  7.02M|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  3.51M|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  3.51M|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   16|       |       /* Check sizes. The smaller one needs to be larger than the Karatsuba cut-off.
   17|       |        * The bigger one needs to be at least about one MP_KARATSUBA_MUL_CUTOFF bigger
   18|       |        * to make some sense, but it depends on architecture, OS, position of the
   19|       |        * stars... so YMMV.
   20|       |        * Using it to cut the input into slices small enough for fast_s_mp_mul_digs
   21|       |        * was actually slower on the author's machine, but YMMV.
   22|       |        */
   23|  3.51M|       (min_len >= MP_KARATSUBA_MUL_CUTOFF) &&
  ------------------
  |  |  121|  3.51M|#  define MP_KARATSUBA_MUL_CUTOFF KARATSUBA_MUL_CUTOFF
  ------------------
  |  Branch (23:8): [True: 143k, False: 3.36M]
  ------------------
   24|  3.51M|       ((max_len / 2) >= MP_KARATSUBA_MUL_CUTOFF) &&
  ------------------
  |  |  121|   143k|#  define MP_KARATSUBA_MUL_CUTOFF KARATSUBA_MUL_CUTOFF
  ------------------
  |  Branch (24:8): [True: 0, False: 143k]
  ------------------
   25|       |       /* Not much effect was observed below a ratio of 1:2, but again: YMMV. */
   26|  3.51M|       (max_len >= (2 * min_len))) {
  ------------------
  |  Branch (26:8): [True: 0, False: 0]
  ------------------
   27|      0|      err = s_mp_balance_mul(a,b,c);
   28|  3.51M|   } else if (MP_HAS(S_MP_TOOM_MUL) &&
  ------------------
  |  |  150|  7.02M|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  3.51M|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  3.51M|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   29|  3.51M|              (min_len >= MP_TOOM_MUL_CUTOFF)) {
  ------------------
  |  |  123|      0|#  define MP_TOOM_MUL_CUTOFF      TOOM_MUL_CUTOFF
  ------------------
  |  Branch (29:15): [True: 0, False: 0]
  ------------------
   30|      0|      err = s_mp_toom_mul(a, b, c);
   31|  3.51M|   } else if (MP_HAS(S_MP_KARATSUBA_MUL) &&
  ------------------
  |  |  150|  7.02M|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  3.51M|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  3.51M|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   32|  3.51M|              (min_len >= MP_KARATSUBA_MUL_CUTOFF)) {
  ------------------
  |  |  121|      0|#  define MP_KARATSUBA_MUL_CUTOFF KARATSUBA_MUL_CUTOFF
  ------------------
  |  Branch (32:15): [True: 0, False: 0]
  ------------------
   33|      0|      err = s_mp_karatsuba_mul(a, b, c);
   34|  3.51M|   } else if (MP_HAS(S_MP_MUL_DIGS_FAST) &&
  ------------------
  |  |  150|  7.02M|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  3.51M|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  3.51M|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   35|       |              /* can we use the fast multiplier?
   36|       |               *
   37|       |               * The fast multiplier can be used if the output will
   38|       |               * have less than MP_WARRAY digits and the number of
   39|       |               * digits won't affect carry propagation
   40|       |               */
   41|  3.51M|              (digs < MP_WARRAY) &&
  ------------------
  |  |  172|  3.51M|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|  3.51M|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  3.51M|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (41:15): [True: 3.51M, False: 0]
  ------------------
   42|  3.51M|              (min_len <= MP_MAXFAST)) {
  ------------------
  |  |  168|  3.51M|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|  3.51M|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|  3.51M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (42:15): [True: 3.51M, False: 0]
  ------------------
   43|  3.51M|      err = s_mp_mul_digs_fast(a, b, c, digs);
   44|  3.51M|   } else if (MP_HAS(S_MP_MUL_DIGS)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   45|      0|      err = s_mp_mul_digs(a, b, c, digs);
   46|      0|   } else {
   47|      0|      err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   48|      0|   }
   49|  3.51M|   c->sign = (c->used > 0) ? neg : MP_ZPOS;
  ------------------
  |  |  151|  3.53M|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (49:14): [True: 3.48M, False: 25.6k]
  ------------------
   50|  3.51M|   return err;
   51|  3.51M|}

mp_mul_2:
    8|  75.5k|{
    9|  75.5k|   int     x, oldused;
   10|  75.5k|   mp_err err;
   11|       |
   12|       |   /* grow to accomodate result */
   13|  75.5k|   if (b->alloc < (a->used + 1)) {
  ------------------
  |  Branch (13:8): [True: 0, False: 75.5k]
  ------------------
   14|      0|      if ((err = mp_grow(b, a->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (14:11): [True: 0, False: 0]
  ------------------
   15|      0|         return err;
   16|      0|      }
   17|      0|   }
   18|       |
   19|  75.5k|   oldused = b->used;
   20|  75.5k|   b->used = a->used;
   21|       |
   22|  75.5k|   {
   23|  75.5k|      mp_digit r, rr, *tmpa, *tmpb;
   24|       |
   25|       |      /* alias for source */
   26|  75.5k|      tmpa = a->dp;
   27|       |
   28|       |      /* alias for dest */
   29|  75.5k|      tmpb = b->dp;
   30|       |
   31|       |      /* carry */
   32|  75.5k|      r = 0;
   33|   911k|      for (x = 0; x < a->used; x++) {
  ------------------
  |  Branch (33:19): [True: 835k, False: 75.5k]
  ------------------
   34|       |
   35|       |         /* get what will be the *next* carry bit from the
   36|       |          * MSB of the current digit
   37|       |          */
   38|   835k|         rr = *tmpa >> (mp_digit)(MP_DIGIT_BIT - 1);
  ------------------
  |  |   82|   835k|#   define MP_DIGIT_BIT 60
  ------------------
   39|       |
   40|       |         /* now shift up this digit, add in the carry [from the previous] */
   41|   835k|         *tmpb++ = ((*tmpa++ << 1uL) | r) & MP_MASK;
  ------------------
  |  |  106|   835k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   835k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   42|       |
   43|       |         /* copy the carry that would be from the source
   44|       |          * digit into the next iteration
   45|       |          */
   46|   835k|         r = rr;
   47|   835k|      }
   48|       |
   49|       |      /* new leading digit? */
   50|  75.5k|      if (r != 0u) {
  ------------------
  |  Branch (50:11): [True: 1.44k, False: 74.1k]
  ------------------
   51|       |         /* add a MSB which is always 1 at this point */
   52|  1.44k|         *tmpb = 1;
   53|  1.44k|         ++(b->used);
   54|  1.44k|      }
   55|       |
   56|       |      /* now zero any excess digits on the destination
   57|       |       * that we didn't write to
   58|       |       */
   59|  75.5k|      MP_ZERO_DIGITS(b->dp + b->used, oldused - b->used);
  ------------------
  |  |   89|  75.5k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  75.5k|do {                                                    \
  |  |   91|  75.5k|   int zd_ = (digits);                                  \
  |  |   92|  75.5k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  75.5k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 75.5k]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|  75.5k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   60|  75.5k|   }
   61|  75.5k|   b->sign = a->sign;
   62|  75.5k|   return MP_OKAY;
  ------------------
  |  |  161|  75.5k|#define MP_OKAY       0   /* no error */
  ------------------
   63|  75.5k|}

mp_mul_2d:
    8|  1.31M|{
    9|  1.31M|   mp_digit d;
   10|  1.31M|   mp_err   err;
   11|       |
   12|       |   /* copy */
   13|  1.31M|   if (a != c) {
  ------------------
  |  Branch (13:8): [True: 0, False: 1.31M]
  ------------------
   14|      0|      if ((err = mp_copy(a, c)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (14:11): [True: 0, False: 0]
  ------------------
   15|      0|         return err;
   16|      0|      }
   17|      0|   }
   18|       |
   19|  1.31M|   if (c->alloc < (c->used + (b / MP_DIGIT_BIT) + 1)) {
  ------------------
  |  |   82|  1.31M|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (19:8): [True: 298k, False: 1.01M]
  ------------------
   20|   298k|      if ((err = mp_grow(c, c->used + (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
  ------------------
  |  |   82|   298k|#   define MP_DIGIT_BIT 60
  ------------------
                    if ((err = mp_grow(c, c->used + (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
  ------------------
  |  |  161|   298k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (20:11): [True: 0, False: 298k]
  ------------------
   21|      0|         return err;
   22|      0|      }
   23|   298k|   }
   24|       |
   25|       |   /* shift by as many digits in the bit count */
   26|  1.31M|   if (b >= MP_DIGIT_BIT) {
  ------------------
  |  |   82|  1.31M|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (26:8): [True: 0, False: 1.31M]
  ------------------
   27|      0|      if ((err = mp_lshd(c, b / MP_DIGIT_BIT)) != MP_OKAY) {
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
                    if ((err = mp_lshd(c, b / MP_DIGIT_BIT)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (27:11): [True: 0, False: 0]
  ------------------
   28|      0|         return err;
   29|      0|      }
   30|      0|   }
   31|       |
   32|       |   /* shift any bit count < MP_DIGIT_BIT */
   33|  1.31M|   d = (mp_digit)(b % MP_DIGIT_BIT);
  ------------------
  |  |   82|  1.31M|#   define MP_DIGIT_BIT 60
  ------------------
   34|  1.31M|   if (d != 0u) {
  ------------------
  |  Branch (34:8): [True: 1.31M, False: 0]
  ------------------
   35|  1.31M|      mp_digit *tmpc, shift, mask, r, rr;
   36|  1.31M|      int x;
   37|       |
   38|       |      /* bitmask for carries */
   39|  1.31M|      mask = ((mp_digit)1 << d) - (mp_digit)1;
   40|       |
   41|       |      /* shift for msbs */
   42|  1.31M|      shift = (mp_digit)MP_DIGIT_BIT - d;
  ------------------
  |  |   82|  1.31M|#   define MP_DIGIT_BIT 60
  ------------------
   43|       |
   44|       |      /* alias */
   45|  1.31M|      tmpc = c->dp;
   46|       |
   47|       |      /* carry */
   48|  1.31M|      r    = 0;
   49|   845M|      for (x = 0; x < c->used; x++) {
  ------------------
  |  Branch (49:19): [True: 844M, False: 1.31M]
  ------------------
   50|       |         /* get the higher bits of the current word */
   51|   844M|         rr = (*tmpc >> shift) & mask;
   52|       |
   53|       |         /* shift the current word and OR in the carry */
   54|   844M|         *tmpc = ((*tmpc << d) | r) & MP_MASK;
  ------------------
  |  |  106|   844M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   844M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   55|   844M|         ++tmpc;
   56|       |
   57|       |         /* set the carry to the carry bits of the current word */
   58|   844M|         r = rr;
   59|   844M|      }
   60|       |
   61|       |      /* set final carry */
   62|  1.31M|      if (r != 0u) {
  ------------------
  |  Branch (62:11): [True: 2.63k, False: 1.30M]
  ------------------
   63|  2.63k|         c->dp[(c->used)++] = r;
   64|  2.63k|      }
   65|  1.31M|   }
   66|  1.31M|   mp_clamp(c);
   67|  1.31M|   return MP_OKAY;
  ------------------
  |  |  161|  1.31M|#define MP_OKAY       0   /* no error */
  ------------------
   68|  1.31M|}

mp_mul_d:
    8|   929k|{
    9|   929k|   mp_digit u, *tmpa, *tmpc;
   10|   929k|   mp_word  r;
   11|   929k|   mp_err   err;
   12|   929k|   int      ix, olduse;
   13|       |
   14|       |   /* make sure c is big enough to hold a*b */
   15|   929k|   if (c->alloc < (a->used + 1)) {
  ------------------
  |  Branch (15:8): [True: 67, False: 929k]
  ------------------
   16|     67|      if ((err = mp_grow(c, a->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|     67|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:11): [True: 0, False: 67]
  ------------------
   17|      0|         return err;
   18|      0|      }
   19|     67|   }
   20|       |
   21|       |   /* get the original destinations used count */
   22|   929k|   olduse = c->used;
   23|       |
   24|       |   /* set the sign */
   25|   929k|   c->sign = a->sign;
   26|       |
   27|       |   /* alias for a->dp [source] */
   28|   929k|   tmpa = a->dp;
   29|       |
   30|       |   /* alias for c->dp [dest] */
   31|   929k|   tmpc = c->dp;
   32|       |
   33|       |   /* zero carry */
   34|   929k|   u = 0;
   35|       |
   36|       |   /* compute columns */
   37|  3.88M|   for (ix = 0; ix < a->used; ix++) {
  ------------------
  |  Branch (37:17): [True: 2.95M, False: 929k]
  ------------------
   38|       |      /* compute product and carry sum for this term */
   39|  2.95M|      r       = (mp_word)u + ((mp_word)*tmpa++ * (mp_word)b);
   40|       |
   41|       |      /* mask off higher bits to get a single digit */
   42|  2.95M|      *tmpc++ = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|  2.95M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  2.95M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   43|       |
   44|       |      /* send carry into next iteration */
   45|  2.95M|      u       = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|  2.95M|#   define MP_DIGIT_BIT 60
  ------------------
   46|  2.95M|   }
   47|       |
   48|       |   /* store final carry [if any] and increment ix offset  */
   49|   929k|   *tmpc++ = u;
   50|   929k|   ++ix;
   51|       |
   52|       |   /* now zero digits above the top */
   53|   929k|   MP_ZERO_DIGITS(tmpc, olduse - ix);
  ------------------
  |  |   89|   929k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|   929k|do {                                                    \
  |  |   91|   929k|   int zd_ = (digits);                                  \
  |  |   92|   929k|   mp_digit* zm_ = (mem);                               \
  |  |   93|   929k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 329, False: 929k]
  |  |  ------------------
  |  |   94|    329|      *zm_++ = 0;                                       \
  |  |   95|    329|   }                                                    \
  |  |   96|   929k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   54|       |
   55|       |   /* set used count */
   56|   929k|   c->used = a->used + 1;
   57|   929k|   mp_clamp(c);
   58|       |
   59|   929k|   return MP_OKAY;
  ------------------
  |  |  161|   929k|#define MP_OKAY       0   /* no error */
  ------------------
   60|   929k|}

mp_mulmod:
    8|  5.08k|{
    9|  5.08k|   mp_err err;
   10|  5.08k|   mp_int t;
   11|       |
   12|  5.08k|   if ((err = mp_init_size(&t, c->used)) != MP_OKAY) {
  ------------------
  |  |  161|  5.08k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (12:8): [True: 0, False: 5.08k]
  ------------------
   13|      0|      return err;
   14|      0|   }
   15|       |
   16|  5.08k|   if ((err = mp_mul(a, b, &t)) != MP_OKAY) {
  ------------------
  |  |  161|  5.08k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:8): [True: 0, False: 5.08k]
  ------------------
   17|      0|      goto LBL_ERR;
   18|      0|   }
   19|  5.08k|   err = mp_mod(&t, c, d);
   20|       |
   21|  5.08k|LBL_ERR:
   22|  5.08k|   mp_clear(&t);
   23|  5.08k|   return err;
   24|  5.08k|}

mp_prime_is_prime:
   18|    246|{
   19|    246|   mp_int  b;
   20|    246|   int     ix, p_max = 0, size_a, len;
   21|    246|   mp_bool res;
   22|    246|   mp_err  err;
   23|    246|   unsigned int fips_rand, mask;
   24|       |
   25|       |   /* default to no */
   26|    246|   *result = MP_NO;
  ------------------
  |  |  159|    246|#define MP_NO         0
  ------------------
   27|       |
   28|       |   /* Some shortcuts */
   29|       |   /* N > 3 */
   30|    246|   if (a->used == 1) {
  ------------------
  |  Branch (30:8): [True: 0, False: 246]
  ------------------
   31|      0|      if ((a->dp[0] == 0u) || (a->dp[0] == 1u)) {
  ------------------
  |  Branch (31:11): [True: 0, False: 0]
  |  Branch (31:31): [True: 0, False: 0]
  ------------------
   32|      0|         *result = MP_NO;
  ------------------
  |  |  159|      0|#define MP_NO         0
  ------------------
   33|      0|         return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   34|      0|      }
   35|      0|      if (a->dp[0] == 2u) {
  ------------------
  |  Branch (35:11): [True: 0, False: 0]
  ------------------
   36|      0|         *result = MP_YES;
  ------------------
  |  |  158|      0|#define MP_YES        1
  ------------------
   37|      0|         return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   38|      0|      }
   39|      0|   }
   40|       |
   41|       |   /* N must be odd */
   42|    246|   if (MP_IS_EVEN(a)) {
  ------------------
  |  |  164|    246|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 246]
  |  |  |  Branch (164:44): [True: 101, False: 145]
  |  |  ------------------
  ------------------
   43|    101|      return MP_OKAY;
  ------------------
  |  |  161|    101|#define MP_OKAY       0   /* no error */
  ------------------
   44|    101|   }
   45|       |   /* N is not a perfect square: floor(sqrt(N))^2 != N */
   46|    145|   if ((err = mp_is_square(a, &res)) != MP_OKAY) {
  ------------------
  |  |  161|    145|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (46:8): [True: 0, False: 145]
  ------------------
   47|      0|      return err;
   48|      0|   }
   49|    145|   if (res != MP_NO) {
  ------------------
  |  |  159|    145|#define MP_NO         0
  ------------------
  |  Branch (49:8): [True: 1, False: 144]
  ------------------
   50|      1|      return MP_OKAY;
  ------------------
  |  |  161|      1|#define MP_OKAY       0   /* no error */
  ------------------
   51|      1|   }
   52|       |
   53|       |   /* is the input equal to one of the primes in the table? */
   54|  37.0k|   for (ix = 0; ix < PRIVATE_MP_PRIME_TAB_SIZE; ix++) {
  ------------------
  |  |  633|  37.0k|#  define PRIVATE_MP_PRIME_TAB_SIZE 256
  ------------------
  |  Branch (54:17): [True: 36.8k, False: 144]
  ------------------
   55|  36.8k|      if (mp_cmp_d(a, s_mp_prime_tab[ix]) == MP_EQ) {
  ------------------
  |  |  155|  36.8k|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (55:11): [True: 0, False: 36.8k]
  ------------------
   56|      0|         *result = MP_YES;
  ------------------
  |  |  158|      0|#define MP_YES        1
  ------------------
   57|      0|         return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   58|      0|      }
   59|  36.8k|   }
   60|       |#ifdef MP_8BIT
   61|       |   /* The search in the loop above was exhaustive in this case */
   62|       |   if ((a->used == 1) && (PRIVATE_MP_PRIME_TAB_SIZE >= 31)) {
   63|       |      return MP_OKAY;
   64|       |   }
   65|       |#endif
   66|       |
   67|       |   /* first perform trial division */
   68|    144|   if ((err = s_mp_prime_is_divisible(a, &res)) != MP_OKAY) {
  ------------------
  |  |  161|    144|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (68:8): [True: 0, False: 144]
  ------------------
   69|      0|      return err;
   70|      0|   }
   71|       |
   72|       |   /* return if it was trivially divisible */
   73|    144|   if (res == MP_YES) {
  ------------------
  |  |  158|    144|#define MP_YES        1
  ------------------
  |  Branch (73:8): [True: 48, False: 96]
  ------------------
   74|     48|      return MP_OKAY;
  ------------------
  |  |  161|     48|#define MP_OKAY       0   /* no error */
  ------------------
   75|     48|   }
   76|       |
   77|       |   /*
   78|       |       Run the Miller-Rabin test with base 2 for the BPSW test.
   79|       |    */
   80|     96|   if ((err = mp_init_set(&b, 2uL)) != MP_OKAY) {
  ------------------
  |  |  161|     96|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (80:8): [True: 0, False: 96]
  ------------------
   81|      0|      return err;
   82|      0|   }
   83|       |
   84|     96|   if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
  ------------------
  |  |  161|     96|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (84:8): [True: 0, False: 96]
  ------------------
   85|      0|      goto LBL_B;
   86|      0|   }
   87|     96|   if (res == MP_NO) {
  ------------------
  |  |  159|     96|#define MP_NO         0
  ------------------
  |  Branch (87:8): [True: 42, False: 54]
  ------------------
   88|     42|      goto LBL_B;
   89|     42|   }
   90|       |   /*
   91|       |      Rumours have it that Mathematica does a second M-R test with base 3.
   92|       |      Other rumours have it that their strong L-S test is slightly different.
   93|       |      It does not hurt, though, beside a bit of extra runtime.
   94|       |   */
   95|     54|   b.dp[0]++;
   96|     54|   if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
  ------------------
  |  |  161|     54|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (96:8): [True: 0, False: 54]
  ------------------
   97|      0|      goto LBL_B;
   98|      0|   }
   99|     54|   if (res == MP_NO) {
  ------------------
  |  |  159|     54|#define MP_NO         0
  ------------------
  |  Branch (99:8): [True: 0, False: 54]
  ------------------
  100|      0|      goto LBL_B;
  101|      0|   }
  102|       |
  103|       |   /*
  104|       |    * Both, the Frobenius-Underwood test and the the Lucas-Selfridge test are quite
  105|       |    * slow so if speed is an issue, define LTM_USE_ONLY_MR to use M-R tests with
  106|       |    * bases 2, 3 and t random bases.
  107|       |    */
  108|       |#ifndef LTM_USE_ONLY_MR
  109|       |   if (t >= 0) {
  110|       |      /*
  111|       |       * Use a Frobenius-Underwood test instead of the Lucas-Selfridge test for
  112|       |       * MP_8BIT (It is unknown if the Lucas-Selfridge test works with 16-bit
  113|       |       * integers but the necesssary analysis is on the todo-list).
  114|       |       */
  115|       |#if defined (MP_8BIT) || defined (LTM_USE_FROBENIUS_TEST)
  116|       |      err = mp_prime_frobenius_underwood(a, &res);
  117|       |      if ((err != MP_OKAY) && (err != MP_ITER)) {
  118|       |         goto LBL_B;
  119|       |      }
  120|       |      if (res == MP_NO) {
  121|       |         goto LBL_B;
  122|       |      }
  123|       |#else
  124|       |      if ((err = mp_prime_strong_lucas_selfridge(a, &res)) != MP_OKAY) {
  125|       |         goto LBL_B;
  126|       |      }
  127|       |      if (res == MP_NO) {
  128|       |         goto LBL_B;
  129|       |      }
  130|       |#endif
  131|       |   }
  132|       |#endif
  133|       |
  134|       |   /* run at least one Miller-Rabin test with a random base */
  135|     54|   if (t == 0) {
  ------------------
  |  Branch (135:8): [True: 0, False: 54]
  ------------------
  136|      0|      t = 1;
  137|      0|   }
  138|       |
  139|       |   /*
  140|       |      Only recommended if the input range is known to be < 3317044064679887385961981
  141|       |
  142|       |      It uses the bases necessary for a deterministic M-R test if the input is
  143|       |      smaller than  3317044064679887385961981
  144|       |      The caller has to check the size.
  145|       |      TODO: can be made a bit finer grained but comparing is not free.
  146|       |   */
  147|     54|   if (t < 0) {
  ------------------
  |  Branch (147:8): [True: 0, False: 54]
  ------------------
  148|       |      /*
  149|       |          Sorenson, Jonathan; Webster, Jonathan (2015).
  150|       |           "Strong Pseudoprimes to Twelve Prime Bases".
  151|       |       */
  152|       |      /* 0x437ae92817f9fc85b7e5 = 318665857834031151167461 */
  153|      0|      if ((err =   mp_read_radix(&b, "437ae92817f9fc85b7e5", 16)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (153:11): [True: 0, False: 0]
  ------------------
  154|      0|         goto LBL_B;
  155|      0|      }
  156|       |
  157|      0|      if (mp_cmp(a, &b) == MP_LT) {
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (157:11): [True: 0, False: 0]
  ------------------
  158|      0|         p_max = 12;
  159|      0|      } else {
  160|       |         /* 0x2be6951adc5b22410a5fd = 3317044064679887385961981 */
  161|      0|         if ((err = mp_read_radix(&b, "2be6951adc5b22410a5fd", 16)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (161:14): [True: 0, False: 0]
  ------------------
  162|      0|            goto LBL_B;
  163|      0|         }
  164|       |
  165|      0|         if (mp_cmp(a, &b) == MP_LT) {
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (165:14): [True: 0, False: 0]
  ------------------
  166|      0|            p_max = 13;
  167|      0|         } else {
  168|      0|            err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
  169|      0|            goto LBL_B;
  170|      0|         }
  171|      0|      }
  172|       |
  173|       |      /* we did bases 2 and 3  already, skip them */
  174|      0|      for (ix = 2; ix < p_max; ix++) {
  ------------------
  |  Branch (174:20): [True: 0, False: 0]
  ------------------
  175|      0|         mp_set(&b, s_mp_prime_tab[ix]);
  176|      0|         if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (176:14): [True: 0, False: 0]
  ------------------
  177|      0|            goto LBL_B;
  178|      0|         }
  179|      0|         if (res == MP_NO) {
  ------------------
  |  |  159|      0|#define MP_NO         0
  ------------------
  |  Branch (179:14): [True: 0, False: 0]
  ------------------
  180|      0|            goto LBL_B;
  181|      0|         }
  182|      0|      }
  183|      0|   }
  184|       |   /*
  185|       |       Do "t" M-R tests with random bases between 3 and "a".
  186|       |       See Fips 186.4 p. 126ff
  187|       |   */
  188|     54|   else if (t > 0) {
  ------------------
  |  Branch (188:13): [True: 54, False: 0]
  ------------------
  189|       |      /*
  190|       |       * The mp_digit's have a defined bit-size but the size of the
  191|       |       * array a.dp is a simple 'int' and this library can not assume full
  192|       |       * compliance to the current C-standard (ISO/IEC 9899:2011) because
  193|       |       * it gets used for small embeded processors, too. Some of those MCUs
  194|       |       * have compilers that one cannot call standard compliant by any means.
  195|       |       * Hence the ugly type-fiddling in the following code.
  196|       |       */
  197|     54|      size_a = mp_count_bits(a);
  198|     54|      mask = (1u << s_floor_ilog2(size_a)) - 1u;
  199|       |      /*
  200|       |         Assuming the General Rieman hypothesis (never thought to write that in a
  201|       |         comment) the upper bound can be lowered to  2*(log a)^2.
  202|       |         E. Bach, "Explicit bounds for primality testing and related problems,"
  203|       |         Math. Comp. 55 (1990), 355-380.
  204|       |
  205|       |            size_a = (size_a/10) * 7;
  206|       |            len = 2 * (size_a * size_a);
  207|       |
  208|       |         E.g.: a number of size 2^2048 would be reduced to the upper limit
  209|       |
  210|       |            floor(2048/10)*7 = 1428
  211|       |            2 * 1428^2       = 4078368
  212|       |
  213|       |         (would have been ~4030331.9962 with floats and natural log instead)
  214|       |         That number is smaller than 2^28, the default bit-size of mp_digit.
  215|       |      */
  216|       |
  217|       |      /*
  218|       |        How many tests, you might ask? Dana Jacobsen of Math::Prime::Util fame
  219|       |        does exactly 1. In words: one. Look at the end of _GMP_is_prime() in
  220|       |        Math-Prime-Util-GMP-0.50/primality.c if you do not believe it.
  221|       |
  222|       |        The function mp_rand() goes to some length to use a cryptographically
  223|       |        good PRNG. That also means that the chance to always get the same base
  224|       |        in the loop is non-zero, although very low.
  225|       |        If the BPSW test and/or the addtional Frobenious test have been
  226|       |        performed instead of just the Miller-Rabin test with the bases 2 and 3,
  227|       |        a single extra test should suffice, so such a very unlikely event
  228|       |        will not do much harm.
  229|       |
  230|       |        To preemptivly answer the dangling question: no, a witness does not
  231|       |        need to be prime.
  232|       |      */
  233|  1.94k|      for (ix = 0; ix < t; ix++) {
  ------------------
  |  Branch (233:20): [True: 1.89k, False: 54]
  ------------------
  234|       |         /* mp_rand() guarantees the first digit to be non-zero */
  235|  1.89k|         if ((err = mp_rand(&b, 1)) != MP_OKAY) {
  ------------------
  |  |  161|  1.89k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (235:14): [True: 0, False: 1.89k]
  ------------------
  236|      0|            goto LBL_B;
  237|      0|         }
  238|       |         /*
  239|       |          * Reduce digit before casting because mp_digit might be bigger than
  240|       |          * an unsigned int and "mask" on the other side is most probably not.
  241|       |          */
  242|  1.89k|         fips_rand = (unsigned int)(b.dp[0] & (mp_digit) mask);
  243|       |#ifdef MP_8BIT
  244|       |         /*
  245|       |          * One 8-bit digit is too small, so concatenate two if the size of
  246|       |          * unsigned int allows for it.
  247|       |          */
  248|       |         if ((MP_SIZEOF_BITS(unsigned int)/2) >= MP_SIZEOF_BITS(mp_digit)) {
  249|       |            if ((err = mp_rand(&b, 1)) != MP_OKAY) {
  250|       |               goto LBL_B;
  251|       |            }
  252|       |            fips_rand <<= MP_SIZEOF_BITS(mp_digit);
  253|       |            fips_rand |= (unsigned int) b.dp[0];
  254|       |            fips_rand &= mask;
  255|       |         }
  256|       |#endif
  257|  1.89k|         if (fips_rand > (unsigned int)(INT_MAX - MP_DIGIT_BIT)) {
  ------------------
  |  |   82|  1.89k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (257:14): [True: 0, False: 1.89k]
  ------------------
  258|      0|            len = INT_MAX / MP_DIGIT_BIT;
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
  259|  1.89k|         } else {
  260|  1.89k|            len = (((int)fips_rand + MP_DIGIT_BIT) / MP_DIGIT_BIT);
  ------------------
  |  |   82|  1.89k|#   define MP_DIGIT_BIT 60
  ------------------
                          len = (((int)fips_rand + MP_DIGIT_BIT) / MP_DIGIT_BIT);
  ------------------
  |  |   82|  1.89k|#   define MP_DIGIT_BIT 60
  ------------------
  261|  1.89k|         }
  262|       |         /*  Unlikely. */
  263|  1.89k|         if (len < 0) {
  ------------------
  |  Branch (263:14): [True: 0, False: 1.89k]
  ------------------
  264|      0|            ix--;
  265|      0|            continue;
  266|      0|         }
  267|       |         /*
  268|       |          * As mentioned above, one 8-bit digit is too small and
  269|       |          * although it can only happen in the unlikely case that
  270|       |          * an "unsigned int" is smaller than 16 bit a simple test
  271|       |          * is cheap and the correction even cheaper.
  272|       |          */
  273|       |#ifdef MP_8BIT
  274|       |         /* All "a" < 2^8 have been caught before */
  275|       |         if (len == 1) {
  276|       |            len++;
  277|       |         }
  278|       |#endif
  279|  1.89k|         if ((err = mp_rand(&b, len)) != MP_OKAY) {
  ------------------
  |  |  161|  1.89k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (279:14): [True: 0, False: 1.89k]
  ------------------
  280|      0|            goto LBL_B;
  281|      0|         }
  282|       |         /*
  283|       |          * That number might got too big and the witness has to be
  284|       |          * smaller than "a"
  285|       |          */
  286|  1.89k|         len = mp_count_bits(&b);
  287|  1.89k|         if (len >= size_a) {
  ------------------
  |  Branch (287:14): [True: 211, False: 1.67k]
  ------------------
  288|    211|            len = (len - size_a) + 1;
  289|    211|            if ((err = mp_div_2d(&b, len, &b, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|    211|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (289:17): [True: 0, False: 211]
  ------------------
  290|      0|               goto LBL_B;
  291|      0|            }
  292|    211|         }
  293|       |         /* Although the chance for b <= 3 is miniscule, try again. */
  294|  1.89k|         if (mp_cmp_d(&b, 3uL) != MP_GT) {
  ------------------
  |  |  156|  1.89k|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (294:14): [True: 0, False: 1.89k]
  ------------------
  295|      0|            ix--;
  296|      0|            continue;
  297|      0|         }
  298|  1.89k|         if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
  ------------------
  |  |  161|  1.89k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (298:14): [True: 0, False: 1.89k]
  ------------------
  299|      0|            goto LBL_B;
  300|      0|         }
  301|  1.89k|         if (res == MP_NO) {
  ------------------
  |  |  159|  1.89k|#define MP_NO         0
  ------------------
  |  Branch (301:14): [True: 0, False: 1.89k]
  ------------------
  302|      0|            goto LBL_B;
  303|      0|         }
  304|  1.89k|      }
  305|     54|   }
  306|       |
  307|       |   /* passed the test */
  308|     54|   *result = MP_YES;
  ------------------
  |  |  158|     54|#define MP_YES        1
  ------------------
  309|     96|LBL_B:
  310|     96|   mp_clear(&b);
  311|     96|   return err;
  312|     54|}
bn_mp_prime_is_prime.c:s_floor_ilog2:
    8|     54|{
    9|     54|   unsigned int r = 0;
   10|    432|   while ((value >>= 1) != 0) {
  ------------------
  |  Branch (10:11): [True: 378, False: 54]
  ------------------
   11|    378|      r++;
   12|    378|   }
   13|     54|   return r;
   14|     54|}

mp_prime_miller_rabin:
   14|  2.04k|{
   15|  2.04k|   mp_int  n1, y, r;
   16|  2.04k|   mp_err  err;
   17|  2.04k|   int     s, j;
   18|       |
   19|       |   /* default */
   20|  2.04k|   *result = MP_NO;
  ------------------
  |  |  159|  2.04k|#define MP_NO         0
  ------------------
   21|       |
   22|       |   /* ensure b > 1 */
   23|  2.04k|   if (mp_cmp_d(b, 1uL) != MP_GT) {
  ------------------
  |  |  156|  2.04k|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (23:8): [True: 0, False: 2.04k]
  ------------------
   24|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   25|      0|   }
   26|       |
   27|       |   /* get n1 = a - 1 */
   28|  2.04k|   if ((err = mp_init_copy(&n1, a)) != MP_OKAY) {
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (28:8): [True: 0, False: 2.04k]
  ------------------
   29|      0|      return err;
   30|      0|   }
   31|  2.04k|   if ((err = mp_sub_d(&n1, 1uL, &n1)) != MP_OKAY) {
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (31:8): [True: 0, False: 2.04k]
  ------------------
   32|      0|      goto LBL_N1;
   33|      0|   }
   34|       |
   35|       |   /* set 2**s * r = n1 */
   36|  2.04k|   if ((err = mp_init_copy(&r, &n1)) != MP_OKAY) {
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (36:8): [True: 0, False: 2.04k]
  ------------------
   37|      0|      goto LBL_N1;
   38|      0|   }
   39|       |
   40|       |   /* count the number of least significant bits
   41|       |    * which are zero
   42|       |    */
   43|  2.04k|   s = mp_cnt_lsb(&r);
   44|       |
   45|       |   /* now divide n - 1 by 2**s */
   46|  2.04k|   if ((err = mp_div_2d(&r, s, &r, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (46:8): [True: 0, False: 2.04k]
  ------------------
   47|      0|      goto LBL_R;
   48|      0|   }
   49|       |
   50|       |   /* compute y = b**r mod a */
   51|  2.04k|   if ((err = mp_init(&y)) != MP_OKAY) {
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (51:8): [True: 0, False: 2.04k]
  ------------------
   52|      0|      goto LBL_R;
   53|      0|   }
   54|  2.04k|   if ((err = mp_exptmod(b, &r, a, &y)) != MP_OKAY) {
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (54:8): [True: 0, False: 2.04k]
  ------------------
   55|      0|      goto LBL_Y;
   56|      0|   }
   57|       |
   58|       |   /* if y != 1 and y != n1 do */
   59|  2.04k|   if ((mp_cmp_d(&y, 1uL) != MP_EQ) && (mp_cmp(&y, &n1) != MP_EQ)) {
  ------------------
  |  |  155|  2.04k|#define MP_EQ         0   /* equal to */
  ------------------
                 if ((mp_cmp_d(&y, 1uL) != MP_EQ) && (mp_cmp(&y, &n1) != MP_EQ)) {
  ------------------
  |  |  155|  1.88k|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (59:8): [True: 1.88k, False: 153]
  |  Branch (59:40): [True: 1.77k, False: 113]
  ------------------
   60|  1.77k|      j = 1;
   61|       |      /* while j <= s-1 and y != n1 */
   62|  97.8k|      while ((j <= (s - 1)) && (mp_cmp(&y, &n1) != MP_EQ)) {
  ------------------
  |  |  155|  96.8k|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (62:14): [True: 96.8k, False: 1.00k]
  |  Branch (62:32): [True: 96.1k, False: 769]
  ------------------
   63|  96.1k|         if ((err = mp_sqrmod(&y, a, &y)) != MP_OKAY) {
  ------------------
  |  |  161|  96.1k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (63:14): [True: 0, False: 96.1k]
  ------------------
   64|      0|            goto LBL_Y;
   65|      0|         }
   66|       |
   67|       |         /* if y == 1 then composite */
   68|  96.1k|         if (mp_cmp_d(&y, 1uL) == MP_EQ) {
  ------------------
  |  |  155|  96.1k|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (68:14): [True: 0, False: 96.1k]
  ------------------
   69|      0|            goto LBL_Y;
   70|      0|         }
   71|       |
   72|  96.1k|         ++j;
   73|  96.1k|      }
   74|       |
   75|       |      /* if y != n1 then composite */
   76|  1.77k|      if (mp_cmp(&y, &n1) != MP_EQ) {
  ------------------
  |  |  155|  1.77k|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (76:11): [True: 42, False: 1.73k]
  ------------------
   77|     42|         goto LBL_Y;
   78|     42|      }
   79|  1.77k|   }
   80|       |
   81|       |   /* probably prime now */
   82|  1.99k|   *result = MP_YES;
  ------------------
  |  |  158|  1.99k|#define MP_YES        1
  ------------------
   83|  2.04k|LBL_Y:
   84|  2.04k|   mp_clear(&y);
   85|  2.04k|LBL_R:
   86|  2.04k|   mp_clear(&r);
   87|  2.04k|LBL_N1:
   88|  2.04k|   mp_clear(&n1);
   89|  2.04k|   return err;
   90|  2.04k|}

mp_prime_rabin_miller_trials:
   33|    246|{
   34|    246|   int x;
   35|       |
   36|  1.96k|   for (x = 0; x < (int)(sizeof(sizes)/(sizeof(sizes[0]))); x++) {
  ------------------
  |  Branch (36:16): [True: 1.96k, False: 0]
  ------------------
   37|  1.96k|      if (sizes[x].k == size) {
  ------------------
  |  Branch (37:11): [True: 246, False: 1.72k]
  ------------------
   38|    246|         return sizes[x].t;
   39|  1.72k|      } else if (sizes[x].k > size) {
  ------------------
  |  Branch (39:18): [True: 0, False: 1.72k]
  ------------------
   40|      0|         return (x == 0) ? sizes[0].t : sizes[x - 1].t;
  ------------------
  |  Branch (40:17): [True: 0, False: 0]
  ------------------
   41|      0|      }
   42|  1.96k|   }
   43|      0|   return sizes[x-1].t;
   44|    246|}

mp_rand_source:
   10|      1|{
   11|       |   /* Dropbear, don't reset to platform if source==NULL */
   12|      1|   s_mp_rand_source = source;
   13|      1|}
mp_rand:
   16|  3.78k|{
   17|  3.78k|   int i;
   18|  3.78k|   mp_err err;
   19|       |
   20|  3.78k|   mp_zero(a);
   21|       |
   22|  3.78k|   if (digits <= 0) {
  ------------------
  |  Branch (22:8): [True: 0, False: 3.78k]
  ------------------
   23|      0|      return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   24|      0|   }
   25|       |
   26|  3.78k|   if ((err = mp_grow(a, digits)) != MP_OKAY) {
  ------------------
  |  |  161|  3.78k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (26:8): [True: 0, False: 3.78k]
  ------------------
   27|      0|      return err;
   28|      0|   }
   29|       |
   30|  3.78k|   if ((err = s_mp_rand_source(a->dp, (size_t)digits * sizeof(mp_digit))) != MP_OKAY) {
  ------------------
  |  |  161|  3.78k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (30:8): [True: 0, False: 3.78k]
  ------------------
   31|      0|      return err;
   32|      0|   }
   33|       |
   34|       |   /* TODO: We ensure that the highest digit is nonzero. Should this be removed? */
   35|  3.78k|   while ((a->dp[digits - 1] & MP_MASK) == 0u) {
  ------------------
  |  |  106|  3.78k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  3.78k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (35:11): [True: 0, False: 3.78k]
  ------------------
   36|      0|      if ((err = s_mp_rand_source(a->dp + digits - 1, sizeof(mp_digit))) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (36:11): [True: 0, False: 0]
  ------------------
   37|      0|         return err;
   38|      0|      }
   39|      0|   }
   40|       |
   41|  3.78k|   a->used = digits;
   42|  8.64k|   for (i = 0; i < digits; ++i) {
  ------------------
  |  Branch (42:16): [True: 4.86k, False: 3.78k]
  ------------------
   43|  4.86k|      a->dp[i] &= MP_MASK;
  ------------------
  |  |  106|  4.86k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  4.86k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   44|  4.86k|   }
   45|       |
   46|  3.78k|   return MP_OKAY;
  ------------------
  |  |  161|  3.78k|#define MP_OKAY       0   /* no error */
  ------------------
   47|  3.78k|}

mp_read_radix:
   10|  2.00k|{
   11|  2.00k|   mp_err   err;
   12|  2.00k|   int      y;
   13|  2.00k|   mp_sign  neg;
   14|  2.00k|   unsigned pos;
   15|  2.00k|   char     ch;
   16|       |
   17|       |   /* zero the digit bignum */
   18|  2.00k|   mp_zero(a);
   19|       |
   20|       |   /* make sure the radix is ok */
   21|  2.00k|   if ((radix < 2) || (radix > 64)) {
  ------------------
  |  Branch (21:8): [True: 0, False: 2.00k]
  |  Branch (21:23): [True: 0, False: 2.00k]
  ------------------
   22|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   23|      0|   }
   24|       |
   25|       |   /* if the leading digit is a
   26|       |    * minus set the sign to negative.
   27|       |    */
   28|  2.00k|   if (*str == '-') {
  ------------------
  |  Branch (28:8): [True: 0, False: 2.00k]
  ------------------
   29|      0|      ++str;
   30|      0|      neg = MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
   31|  2.00k|   } else {
   32|  2.00k|      neg = MP_ZPOS;
  ------------------
  |  |  151|  2.00k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   33|  2.00k|   }
   34|       |
   35|       |   /* set the integer to the default of zero */
   36|  2.00k|   mp_zero(a);
   37|       |
   38|       |   /* process each digit of the string */
   39|   165k|   while (*str != '\0') {
  ------------------
  |  Branch (39:11): [True: 163k, False: 2.00k]
  ------------------
   40|       |      /* if the radix <= 36 the conversion is case insensitive
   41|       |       * this allows numbers like 1AB and 1ab to represent the same  value
   42|       |       * [e.g. in hex]
   43|       |       */
   44|   163k|      ch = (radix <= 36) ? (char)MP_TOUPPER((int)*str) : *str;
  ------------------
  |  |    6|   163k|#define MP_TOUPPER(c) ((((c) >= 'a') && ((c) <= 'z')) ? (((c) + 'A') - 'a') : (c))
  |  |  ------------------
  |  |  |  Branch (6:25): [True: 0, False: 163k]
  |  |  |  Branch (6:41): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (44:12): [True: 163k, False: 0]
  ------------------
   45|   163k|      pos = (unsigned)(ch - '(');
   46|   163k|      if (mp_s_rmap_reverse_sz < pos) {
  ------------------
  |  Branch (46:11): [True: 0, False: 163k]
  ------------------
   47|      0|         break;
   48|      0|      }
   49|   163k|      y = (int)mp_s_rmap_reverse[pos];
   50|       |
   51|       |      /* if the char was found in the map
   52|       |       * and is less than the given radix add it
   53|       |       * to the number, otherwise exit the loop.
   54|       |       */
   55|   163k|      if ((y == 0xff) || (y >= radix)) {
  ------------------
  |  Branch (55:11): [True: 0, False: 163k]
  |  Branch (55:26): [True: 0, False: 163k]
  ------------------
   56|      0|         break;
   57|      0|      }
   58|   163k|      if ((err = mp_mul_d(a, (mp_digit)radix, a)) != MP_OKAY) {
  ------------------
  |  |  161|   163k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (58:11): [True: 0, False: 163k]
  ------------------
   59|      0|         return err;
   60|      0|      }
   61|   163k|      if ((err = mp_add_d(a, (mp_digit)y, a)) != MP_OKAY) {
  ------------------
  |  |  161|   163k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (61:11): [True: 0, False: 163k]
  ------------------
   62|      0|         return err;
   63|      0|      }
   64|   163k|      ++str;
   65|   163k|   }
   66|       |
   67|       |   /* if an illegal character was found, fail. */
   68|  2.00k|   if (!((*str == '\0') || (*str == '\r') || (*str == '\n'))) {
  ------------------
  |  Branch (68:10): [True: 2.00k, False: 0]
  |  Branch (68:28): [True: 0, False: 0]
  |  Branch (68:46): [True: 0, False: 0]
  ------------------
   69|      0|      mp_zero(a);
   70|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   71|      0|   }
   72|       |
   73|       |   /* set the sign only if a != 0 */
   74|  2.00k|   if (!MP_IS_ZERO(a)) {
  ------------------
  |  |  163|  2.00k|#define MP_IS_ZERO(a) ((a)->used == 0)
  ------------------
  |  Branch (74:8): [True: 2.00k, False: 0]
  ------------------
   75|  2.00k|      a->sign = neg;
   76|  2.00k|   }
   77|  2.00k|   return MP_OKAY;
  ------------------
  |  |  161|  2.00k|#define MP_OKAY       0   /* no error */
  ------------------
   78|  2.00k|}

mp_reduce:
   11|  42.3k|{
   12|  42.3k|   mp_int  q;
   13|  42.3k|   mp_err  err;
   14|  42.3k|   int     um = m->used;
   15|       |
   16|       |   /* q = x */
   17|  42.3k|   if ((err = mp_init_copy(&q, x)) != MP_OKAY) {
  ------------------
  |  |  161|  42.3k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (17:8): [True: 0, False: 42.3k]
  ------------------
   18|      0|      return err;
   19|      0|   }
   20|       |
   21|       |   /* q1 = x / b**(k-1)  */
   22|  42.3k|   mp_rshd(&q, um - 1);
   23|       |
   24|       |   /* according to HAC this optimization is ok */
   25|  42.3k|   if ((mp_digit)um > ((mp_digit)1 << (MP_DIGIT_BIT - 1))) {
  ------------------
  |  |   82|  42.3k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (25:8): [True: 0, False: 42.3k]
  ------------------
   26|      0|      if ((err = mp_mul(&q, mu, &q)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (26:11): [True: 0, False: 0]
  ------------------
   27|      0|         goto CLEANUP;
   28|      0|      }
   29|  42.3k|   } else if (MP_HAS(S_MP_MUL_HIGH_DIGS)) {
  ------------------
  |  |  150|  42.3k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  42.3k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  42.3k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   30|  42.3k|      if ((err = s_mp_mul_high_digs(&q, mu, &q, um)) != MP_OKAY) {
  ------------------
  |  |  161|  42.3k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (30:11): [True: 0, False: 42.3k]
  ------------------
   31|      0|         goto CLEANUP;
   32|      0|      }
   33|  42.3k|   } else if (MP_HAS(S_MP_MUL_HIGH_DIGS_FAST)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   34|      0|      if ((err = s_mp_mul_high_digs_fast(&q, mu, &q, um)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (34:11): [True: 0, False: 0]
  ------------------
   35|      0|         goto CLEANUP;
   36|      0|      }
   37|      0|   } else {
   38|      0|      err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   39|      0|      goto CLEANUP;
   40|      0|   }
   41|       |
   42|       |   /* q3 = q2 / b**(k+1) */
   43|  42.3k|   mp_rshd(&q, um + 1);
   44|       |
   45|       |   /* x = x mod b**(k+1), quick (no division) */
   46|  42.3k|   if ((err = mp_mod_2d(x, MP_DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
  ------------------
  |  |   82|  42.3k|#   define MP_DIGIT_BIT 60
  ------------------
                 if ((err = mp_mod_2d(x, MP_DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
  ------------------
  |  |  161|  42.3k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (46:8): [True: 0, False: 42.3k]
  ------------------
   47|      0|      goto CLEANUP;
   48|      0|   }
   49|       |
   50|       |   /* q = q * m mod b**(k+1), quick (no division) */
   51|  42.3k|   if ((err = s_mp_mul_digs(&q, m, &q, um + 1)) != MP_OKAY) {
  ------------------
  |  |  161|  42.3k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (51:8): [True: 0, False: 42.3k]
  ------------------
   52|      0|      goto CLEANUP;
   53|      0|   }
   54|       |
   55|       |   /* x = x - q */
   56|  42.3k|   if ((err = mp_sub(x, &q, x)) != MP_OKAY) {
  ------------------
  |  |  161|  42.3k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (56:8): [True: 0, False: 42.3k]
  ------------------
   57|      0|      goto CLEANUP;
   58|      0|   }
   59|       |
   60|       |   /* If x < 0, add b**(k+1) to it */
   61|  42.3k|   if (mp_cmp_d(x, 0uL) == MP_LT) {
  ------------------
  |  |  154|  42.3k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (61:8): [True: 7.86k, False: 34.4k]
  ------------------
   62|  7.86k|      mp_set(&q, 1uL);
   63|  7.86k|      if ((err = mp_lshd(&q, um + 1)) != MP_OKAY) {
  ------------------
  |  |  161|  7.86k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (63:11): [True: 0, False: 7.86k]
  ------------------
   64|      0|         goto CLEANUP;
   65|      0|      }
   66|  7.86k|      if ((err = mp_add(x, &q, x)) != MP_OKAY) {
  ------------------
  |  |  161|  7.86k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (66:11): [True: 0, False: 7.86k]
  ------------------
   67|      0|         goto CLEANUP;
   68|      0|      }
   69|  7.86k|   }
   70|       |
   71|       |   /* Back off if it's too big */
   72|  74.3k|   while (mp_cmp(x, m) != MP_LT) {
  ------------------
  |  |  154|  74.3k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (72:11): [True: 32.0k, False: 42.3k]
  ------------------
   73|  32.0k|      if ((err = s_mp_sub(x, m, x)) != MP_OKAY) {
  ------------------
  |  |  161|  32.0k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (73:11): [True: 0, False: 32.0k]
  ------------------
   74|      0|         goto CLEANUP;
   75|      0|      }
   76|  32.0k|   }
   77|       |
   78|  42.3k|CLEANUP:
   79|  42.3k|   mp_clear(&q);
   80|       |
   81|  42.3k|   return err;
   82|  42.3k|}

mp_reduce_2k_l:
   11|  34.5k|{
   12|  34.5k|   mp_int q;
   13|  34.5k|   mp_err err;
   14|  34.5k|   int    p;
   15|       |
   16|  34.5k|   if ((err = mp_init(&q)) != MP_OKAY) {
  ------------------
  |  |  161|  34.5k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:8): [True: 0, False: 34.5k]
  ------------------
   17|      0|      return err;
   18|      0|   }
   19|       |
   20|  34.5k|   p = mp_count_bits(n);
   21|  2.58M|top:
   22|       |   /* q = a/2**p, a = a mod 2**p */
   23|  2.58M|   if ((err = mp_div_2d(a, p, &q, a)) != MP_OKAY) {
  ------------------
  |  |  161|  2.58M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (23:8): [True: 0, False: 2.58M]
  ------------------
   24|      0|      goto LBL_ERR;
   25|      0|   }
   26|       |
   27|       |   /* q = q * d */
   28|  2.58M|   if ((err = mp_mul(&q, d, &q)) != MP_OKAY) {
  ------------------
  |  |  161|  2.58M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (28:8): [True: 0, False: 2.58M]
  ------------------
   29|      0|      goto LBL_ERR;
   30|      0|   }
   31|       |
   32|       |   /* a = a + q */
   33|  2.58M|   if ((err = s_mp_add(a, &q, a)) != MP_OKAY) {
  ------------------
  |  |  161|  2.58M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (33:8): [True: 0, False: 2.58M]
  ------------------
   34|      0|      goto LBL_ERR;
   35|      0|   }
   36|       |
   37|  2.58M|   if (mp_cmp_mag(a, n) != MP_LT) {
  ------------------
  |  |  154|  2.58M|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (37:8): [True: 2.55M, False: 34.5k]
  ------------------
   38|  2.55M|      if ((err = s_mp_sub(a, n, a)) != MP_OKAY) {
  ------------------
  |  |  161|  2.55M|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (38:11): [True: 0, False: 2.55M]
  ------------------
   39|      0|         goto LBL_ERR;
   40|      0|      }
   41|  2.55M|      goto top;
   42|  2.55M|   }
   43|       |
   44|  34.5k|LBL_ERR:
   45|  34.5k|   mp_clear(&q);
   46|  34.5k|   return err;
   47|  2.58M|}

mp_reduce_2k_setup_l:
    8|    327|{
    9|    327|   mp_err err;
   10|    327|   mp_int tmp;
   11|       |
   12|    327|   if ((err = mp_init(&tmp)) != MP_OKAY) {
  ------------------
  |  |  161|    327|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (12:8): [True: 0, False: 327]
  ------------------
   13|      0|      return err;
   14|      0|   }
   15|       |
   16|    327|   if ((err = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) {
  ------------------
  |  |  161|    327|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:8): [True: 0, False: 327]
  ------------------
   17|      0|      goto LBL_ERR;
   18|      0|   }
   19|       |
   20|    327|   if ((err = s_mp_sub(&tmp, a, d)) != MP_OKAY) {
  ------------------
  |  |  161|    327|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (20:8): [True: 0, False: 327]
  ------------------
   21|      0|      goto LBL_ERR;
   22|      0|   }
   23|       |
   24|    327|LBL_ERR:
   25|    327|   mp_clear(&tmp);
   26|    327|   return err;
   27|    327|}

mp_reduce_is_2k:
    8|  2.93k|{
    9|  2.93k|   int ix, iy, iw;
   10|  2.93k|   mp_digit iz;
   11|       |
   12|  2.93k|   if (a->used == 0) {
  ------------------
  |  Branch (12:8): [True: 0, False: 2.93k]
  ------------------
   13|      0|      return MP_NO;
  ------------------
  |  |  159|      0|#define MP_NO         0
  ------------------
   14|  2.93k|   } else if (a->used == 1) {
  ------------------
  |  Branch (14:15): [True: 0, False: 2.93k]
  ------------------
   15|      0|      return MP_YES;
  ------------------
  |  |  158|      0|#define MP_YES        1
  ------------------
   16|  2.93k|   } else if (a->used > 1) {
  ------------------
  |  Branch (16:15): [True: 2.93k, False: 0]
  ------------------
   17|  2.93k|      iy = mp_count_bits(a);
   18|  2.93k|      iz = 1;
   19|  2.93k|      iw = 1;
   20|       |
   21|       |      /* Test every bit from the second digit up, must be 1 */
   22|  20.7k|      for (ix = MP_DIGIT_BIT; ix < iy; ix++) {
  ------------------
  |  |   82|  2.93k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (22:31): [True: 20.7k, False: 0]
  ------------------
   23|  20.7k|         if ((a->dp[iw] & iz) == 0u) {
  ------------------
  |  Branch (23:14): [True: 2.93k, False: 17.7k]
  ------------------
   24|  2.93k|            return MP_NO;
  ------------------
  |  |  159|  2.93k|#define MP_NO         0
  ------------------
   25|  2.93k|         }
   26|  17.7k|         iz <<= 1;
   27|  17.7k|         if (iz > MP_DIGIT_MAX) {
  ------------------
  |  |  107|  17.7k|#define MP_DIGIT_MAX     MP_MASK
  |  |  ------------------
  |  |  |  |  106|  17.7k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  17.7k|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (27:14): [True: 175, False: 17.5k]
  ------------------
   28|    175|            ++iw;
   29|    175|            iz = 1;
   30|    175|         }
   31|  17.7k|      }
   32|      0|      return MP_YES;
  ------------------
  |  |  158|      0|#define MP_YES        1
  ------------------
   33|  2.93k|   } else {
   34|      0|      return MP_YES;
  ------------------
  |  |  158|      0|#define MP_YES        1
  ------------------
   35|      0|   }
   36|  2.93k|}

mp_reduce_is_2k_l:
    8|  3.26k|{
    9|  3.26k|   int ix, iy;
   10|       |
   11|  3.26k|   if (a->used == 0) {
  ------------------
  |  Branch (11:8): [True: 0, False: 3.26k]
  ------------------
   12|      0|      return MP_NO;
  ------------------
  |  |  159|      0|#define MP_NO         0
  ------------------
   13|  3.26k|   } else if (a->used == 1) {
  ------------------
  |  Branch (13:15): [True: 0, False: 3.26k]
  ------------------
   14|      0|      return MP_YES;
  ------------------
  |  |  158|      0|#define MP_YES        1
  ------------------
   15|  3.26k|   } else if (a->used > 1) {
  ------------------
  |  Branch (15:15): [True: 3.26k, False: 0]
  ------------------
   16|       |      /* if more than half of the digits are -1 we're sold */
   17|  44.5k|      for (iy = ix = 0; ix < a->used; ix++) {
  ------------------
  |  Branch (17:25): [True: 41.2k, False: 3.26k]
  ------------------
   18|  41.2k|         if (a->dp[ix] == MP_DIGIT_MAX) {
  ------------------
  |  |  107|  41.2k|#define MP_DIGIT_MAX     MP_MASK
  |  |  ------------------
  |  |  |  |  106|  41.2k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  41.2k|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (18:14): [True: 6.74k, False: 34.4k]
  ------------------
   19|  6.74k|            ++iy;
   20|  6.74k|         }
   21|  41.2k|      }
   22|  3.26k|      return (iy >= (a->used/2)) ? MP_YES : MP_NO;
  ------------------
  |  |  158|    327|#define MP_YES        1
  ------------------
                    return (iy >= (a->used/2)) ? MP_YES : MP_NO;
  ------------------
  |  |  159|  2.93k|#define MP_NO         0
  ------------------
  |  Branch (22:14): [True: 327, False: 2.93k]
  ------------------
   23|  3.26k|   } else {
   24|      0|      return MP_NO;
  ------------------
  |  |  159|      0|#define MP_NO         0
  ------------------
   25|      0|   }
   26|  3.26k|}

mp_reduce_setup:
   10|    544|{
   11|    544|   mp_err err;
   12|    544|   if ((err = mp_2expt(a, b->used * 2 * MP_DIGIT_BIT)) != MP_OKAY) {
  ------------------
  |  |   82|    544|#   define MP_DIGIT_BIT 60
  ------------------
                 if ((err = mp_2expt(a, b->used * 2 * MP_DIGIT_BIT)) != MP_OKAY) {
  ------------------
  |  |  161|    544|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (12:8): [True: 0, False: 544]
  ------------------
   13|      0|      return err;
   14|      0|   }
   15|    544|   return mp_div(a, b, a, NULL);
   16|    544|}

mp_rshd:
    8|  2.77M|{
    9|  2.77M|   int     x;
   10|  2.77M|   mp_digit *bottom, *top;
   11|       |
   12|       |   /* if b <= 0 then ignore it */
   13|  2.77M|   if (b <= 0) {
  ------------------
  |  Branch (13:8): [True: 142, False: 2.77M]
  ------------------
   14|    142|      return;
   15|    142|   }
   16|       |
   17|       |   /* if b > used then simply zero it and return */
   18|  2.77M|   if (a->used <= b) {
  ------------------
  |  Branch (18:8): [True: 54.5k, False: 2.71M]
  ------------------
   19|  54.5k|      mp_zero(a);
   20|  54.5k|      return;
   21|  54.5k|   }
   22|       |
   23|       |   /* shift the digits down */
   24|       |
   25|       |   /* bottom */
   26|  2.71M|   bottom = a->dp;
   27|       |
   28|       |   /* top [offset into digits] */
   29|  2.71M|   top = a->dp + b;
   30|       |
   31|       |   /* this is implemented as a sliding window where
   32|       |    * the window is b-digits long and digits from
   33|       |    * the top of the window are copied to the bottom
   34|       |    *
   35|       |    * e.g.
   36|       |
   37|       |    b-2 | b-1 | b0 | b1 | b2 | ... | bb |   ---->
   38|       |                /\                   |      ---->
   39|       |                 \-------------------/      ---->
   40|       |    */
   41|  46.7M|   for (x = 0; x < (a->used - b); x++) {
  ------------------
  |  Branch (41:16): [True: 43.9M, False: 2.71M]
  ------------------
   42|  43.9M|      *bottom++ = *top++;
   43|  43.9M|   }
   44|       |
   45|       |   /* zero the top digits */
   46|  2.71M|   MP_ZERO_DIGITS(bottom, a->used - x);
  ------------------
  |  |   89|  2.71M|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  2.71M|do {                                                    \
  |  |   91|  2.71M|   int zd_ = (digits);                                  \
  |  |   92|  2.71M|   mp_digit* zm_ = (mem);                               \
  |  |   93|  86.3M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 83.6M, False: 2.71M]
  |  |  ------------------
  |  |   94|  83.6M|      *zm_++ = 0;                                       \
  |  |   95|  83.6M|   }                                                    \
  |  |   96|  2.71M|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   47|       |
   48|       |   /* remove excess digits */
   49|  2.71M|   a->used -= b;
   50|  2.71M|}

mp_set:
    8|  10.1k|{
    9|  10.1k|   a->dp[0] = b & MP_MASK;
  ------------------
  |  |  106|  10.1k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  10.1k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   10|  10.1k|   a->sign  = MP_ZPOS;
  ------------------
  |  |  151|  10.1k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   11|  10.1k|   a->used  = (a->dp[0] != 0u) ? 1 : 0;
  ------------------
  |  Branch (11:15): [True: 10.1k, False: 0]
  ------------------
   12|  10.1k|   MP_ZERO_DIGITS(a->dp + a->used, a->alloc - a->used);
  ------------------
  |  |   89|  10.1k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  10.1k|do {                                                    \
  |  |   91|  10.1k|   int zd_ = (digits);                                  \
  |  |   92|  10.1k|   mp_digit* zm_ = (mem);                               \
  |  |   93|   321k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 311k, False: 10.1k]
  |  |  ------------------
  |  |   94|   311k|      *zm_++ = 0;                                       \
  |  |   95|   311k|   }                                                    \
  |  |   96|  10.1k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   13|  10.1k|}

mp_sqr:
    8|   903k|{
    9|   903k|   mp_err err;
   10|   903k|   if (MP_HAS(S_MP_TOOM_SQR) && /* use Toom-Cook? */
  ------------------
  |  |  150|  1.80M|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|   903k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|   903k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   11|   903k|       (a->used >= MP_TOOM_SQR_CUTOFF)) {
  ------------------
  |  |  124|      0|#  define MP_TOOM_SQR_CUTOFF      TOOM_SQR_CUTOFF
  ------------------
  |  Branch (11:8): [True: 0, False: 0]
  ------------------
   12|      0|      err = s_mp_toom_sqr(a, b);
   13|   903k|   } else if (MP_HAS(S_MP_KARATSUBA_SQR) &&  /* Karatsuba? */
  ------------------
  |  |  150|  1.80M|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|   903k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|   903k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   14|   903k|              (a->used >= MP_KARATSUBA_SQR_CUTOFF)) {
  ------------------
  |  |  122|      0|#  define MP_KARATSUBA_SQR_CUTOFF KARATSUBA_SQR_CUTOFF
  ------------------
  |  Branch (14:15): [True: 0, False: 0]
  ------------------
   15|      0|      err = s_mp_karatsuba_sqr(a, b);
   16|   903k|   } else if (MP_HAS(S_MP_SQR_FAST) && /* can we use the fast comba multiplier? */
  ------------------
  |  |  150|  1.80M|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|   903k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|   903k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   17|   903k|              (((a->used * 2) + 1) < MP_WARRAY) &&
  ------------------
  |  |  172|   903k|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|   903k|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|   903k|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (17:15): [True: 903k, False: 0]
  ------------------
   18|   903k|              (a->used < (MP_MAXFAST / 2))) {
  ------------------
  |  |  168|   903k|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|   903k|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|   903k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (18:15): [True: 903k, False: 310]
  ------------------
   19|   903k|      err = s_mp_sqr_fast(a, b);
   20|   903k|   } else if (MP_HAS(S_MP_SQR)) {
  ------------------
  |  |  150|    310|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|    310|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|    310|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   21|    310|      err = s_mp_sqr(a, b);
   22|    310|   } else {
   23|      0|      err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   24|      0|   }
   25|   903k|   b->sign = MP_ZPOS;
  ------------------
  |  |  151|   903k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   26|   903k|   return err;
   27|   903k|}

mp_sqrmod:
    8|  96.1k|{
    9|  96.1k|   mp_err  err;
   10|  96.1k|   mp_int  t;
   11|       |
   12|  96.1k|   if ((err = mp_init(&t)) != MP_OKAY) {
  ------------------
  |  |  161|  96.1k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (12:8): [True: 0, False: 96.1k]
  ------------------
   13|      0|      return err;
   14|      0|   }
   15|       |
   16|  96.1k|   if ((err = mp_sqr(a, &t)) != MP_OKAY) {
  ------------------
  |  |  161|  96.1k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:8): [True: 0, False: 96.1k]
  ------------------
   17|      0|      goto LBL_ERR;
   18|      0|   }
   19|  96.1k|   err = mp_mod(&t, b, c);
   20|       |
   21|  96.1k|LBL_ERR:
   22|  96.1k|   mp_clear(&t);
   23|  96.1k|   return err;
   24|  96.1k|}

mp_sqrt:
    8|      5|{
    9|      5|   mp_err err;
   10|      5|   mp_int t1, t2;
   11|       |
   12|       |   /* must be positive */
   13|      5|   if (arg->sign == MP_NEG) {
  ------------------
  |  |  152|      5|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (13:8): [True: 0, False: 5]
  ------------------
   14|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   15|      0|   }
   16|       |
   17|       |   /* easy out */
   18|      5|   if (MP_IS_ZERO(arg)) {
  ------------------
  |  |  163|      5|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 5]
  |  |  ------------------
  ------------------
   19|      0|      mp_zero(ret);
   20|      0|      return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   21|      0|   }
   22|       |
   23|      5|   if ((err = mp_init_copy(&t1, arg)) != MP_OKAY) {
  ------------------
  |  |  161|      5|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (23:8): [True: 0, False: 5]
  ------------------
   24|      0|      return err;
   25|      0|   }
   26|       |
   27|      5|   if ((err = mp_init(&t2)) != MP_OKAY) {
  ------------------
  |  |  161|      5|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (27:8): [True: 0, False: 5]
  ------------------
   28|      0|      goto E2;
   29|      0|   }
   30|       |
   31|       |   /* First approx. (not very bad for large arg) */
   32|      5|   mp_rshd(&t1, t1.used/2);
   33|       |
   34|       |   /* t1 > 0  */
   35|      5|   if ((err = mp_div(arg, &t1, &t2, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|      5|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (35:8): [True: 0, False: 5]
  ------------------
   36|      0|      goto E1;
   37|      0|   }
   38|      5|   if ((err = mp_add(&t1, &t2, &t1)) != MP_OKAY) {
  ------------------
  |  |  161|      5|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (38:8): [True: 0, False: 5]
  ------------------
   39|      0|      goto E1;
   40|      0|   }
   41|      5|   if ((err = mp_div_2(&t1, &t1)) != MP_OKAY) {
  ------------------
  |  |  161|      5|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (41:8): [True: 0, False: 5]
  ------------------
   42|      0|      goto E1;
   43|      0|   }
   44|       |   /* And now t1 > sqrt(arg) */
   45|    136|   do {
   46|    136|      if ((err = mp_div(arg, &t1, &t2, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|    136|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (46:11): [True: 0, False: 136]
  ------------------
   47|      0|         goto E1;
   48|      0|      }
   49|    136|      if ((err = mp_add(&t1, &t2, &t1)) != MP_OKAY) {
  ------------------
  |  |  161|    136|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (49:11): [True: 0, False: 136]
  ------------------
   50|      0|         goto E1;
   51|      0|      }
   52|    136|      if ((err = mp_div_2(&t1, &t1)) != MP_OKAY) {
  ------------------
  |  |  161|    136|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (52:11): [True: 0, False: 136]
  ------------------
   53|      0|         goto E1;
   54|      0|      }
   55|       |      /* t1 >= sqrt(arg) >= t2 at this point */
   56|    136|   } while (mp_cmp_mag(&t1, &t2) == MP_GT);
  ------------------
  |  |  156|    136|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (56:13): [True: 131, False: 5]
  ------------------
   57|       |
   58|      5|   mp_exch(&t1, ret);
   59|       |
   60|      5|E1:
   61|      5|   mp_clear(&t2);
   62|      5|E2:
   63|      5|   mp_clear(&t1);
   64|      5|   return err;
   65|      5|}

mp_sub:
    8|  1.77M|{
    9|  1.77M|   mp_sign sa = a->sign, sb = b->sign;
   10|  1.77M|   mp_err err;
   11|       |
   12|  1.77M|   if (sa != sb) {
  ------------------
  |  Branch (12:8): [True: 137k, False: 1.63M]
  ------------------
   13|       |      /* subtract a negative from a positive, OR */
   14|       |      /* subtract a positive from a negative. */
   15|       |      /* In either case, ADD their magnitudes, */
   16|       |      /* and use the sign of the first number. */
   17|   137k|      c->sign = sa;
   18|   137k|      err = s_mp_add(a, b, c);
   19|  1.63M|   } else {
   20|       |      /* subtract a positive from a positive, OR */
   21|       |      /* subtract a negative from a negative. */
   22|       |      /* First, take the difference between their */
   23|       |      /* magnitudes, then... */
   24|  1.63M|      if (mp_cmp_mag(a, b) != MP_LT) {
  ------------------
  |  |  154|  1.63M|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (24:11): [True: 1.20M, False: 431k]
  ------------------
   25|       |         /* Copy the sign from the first */
   26|  1.20M|         c->sign = sa;
   27|       |         /* The first has a larger or equal magnitude */
   28|  1.20M|         err = s_mp_sub(a, b, c);
   29|  1.20M|      } else {
   30|       |         /* The result has the *opposite* sign from */
   31|       |         /* the first number. */
   32|   431k|         c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
  ------------------
  |  |  151|   431k|#define MP_ZPOS       0   /* positive integer */
  ------------------
                       c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
  ------------------
  |  |  152|   392k|#define MP_NEG        1   /* negative */
  ------------------
                       c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
  ------------------
  |  |  151|   470k|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (32:20): [True: 392k, False: 39.1k]
  ------------------
   33|       |         /* The second has a larger magnitude */
   34|   431k|         err = s_mp_sub(b, a, c);
   35|   431k|      }
   36|  1.63M|   }
   37|  1.77M|   return err;
   38|  1.77M|}

mp_sub_d:
    8|  2.04k|{
    9|  2.04k|   mp_digit *tmpa, *tmpc;
   10|  2.04k|   mp_err    err;
   11|  2.04k|   int       ix, oldused;
   12|       |
   13|       |   /* grow c as required */
   14|  2.04k|   if (c->alloc < (a->used + 1)) {
  ------------------
  |  Branch (14:8): [True: 2.04k, False: 0]
  ------------------
   15|  2.04k|      if ((err = mp_grow(c, a->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (15:11): [True: 0, False: 2.04k]
  ------------------
   16|      0|         return err;
   17|      0|      }
   18|  2.04k|   }
   19|       |
   20|       |   /* if a is negative just do an unsigned
   21|       |    * addition [with fudged signs]
   22|       |    */
   23|  2.04k|   if (a->sign == MP_NEG) {
  ------------------
  |  |  152|  2.04k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (23:8): [True: 0, False: 2.04k]
  ------------------
   24|      0|      mp_int a_ = *a;
   25|      0|      a_.sign = MP_ZPOS;
  ------------------
  |  |  151|      0|#define MP_ZPOS       0   /* positive integer */
  ------------------
   26|      0|      err     = mp_add_d(&a_, b, c);
   27|      0|      c->sign = MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
   28|       |
   29|       |      /* clamp */
   30|      0|      mp_clamp(c);
   31|       |
   32|      0|      return err;
   33|      0|   }
   34|       |
   35|       |   /* setup regs */
   36|  2.04k|   oldused = c->used;
   37|  2.04k|   tmpa    = a->dp;
   38|  2.04k|   tmpc    = c->dp;
   39|       |
   40|       |   /* if a <= b simply fix the single digit */
   41|  2.04k|   if (((a->used == 1) && (a->dp[0] <= b)) || (a->used == 0)) {
  ------------------
  |  Branch (41:9): [True: 0, False: 2.04k]
  |  Branch (41:27): [True: 0, False: 0]
  |  Branch (41:47): [True: 0, False: 2.04k]
  ------------------
   42|      0|      if (a->used == 1) {
  ------------------
  |  Branch (42:11): [True: 0, False: 0]
  ------------------
   43|      0|         *tmpc++ = b - *tmpa;
   44|      0|      } else {
   45|      0|         *tmpc++ = b;
   46|      0|      }
   47|      0|      ix      = 1;
   48|       |
   49|       |      /* negative/1digit */
   50|      0|      c->sign = MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
   51|      0|      c->used = 1;
   52|  2.04k|   } else {
   53|  2.04k|      mp_digit mu = b;
   54|       |
   55|       |      /* positive/size */
   56|  2.04k|      c->sign = MP_ZPOS;
  ------------------
  |  |  151|  2.04k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   57|  2.04k|      c->used = a->used;
   58|       |
   59|       |      /* subtract digits, mu is carry */
   60|  8.16k|      for (ix = 0; ix < a->used; ix++) {
  ------------------
  |  Branch (60:20): [True: 6.12k, False: 2.04k]
  ------------------
   61|  6.12k|         *tmpc    = *tmpa++ - mu;
   62|  6.12k|         mu       = *tmpc >> (MP_SIZEOF_BITS(mp_digit) - 1u);
  ------------------
  |  |  167|  6.12k|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
   63|  6.12k|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|  6.12k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  6.12k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   64|  6.12k|      }
   65|  2.04k|   }
   66|       |
   67|       |   /* zero excess digits */
   68|  2.04k|   MP_ZERO_DIGITS(tmpc, oldused - ix);
  ------------------
  |  |   89|  2.04k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  2.04k|do {                                                    \
  |  |   91|  2.04k|   int zd_ = (digits);                                  \
  |  |   92|  2.04k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  2.04k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 2.04k]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|  2.04k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   69|       |
   70|  2.04k|   mp_clamp(c);
   71|  2.04k|   return MP_OKAY;
  ------------------
  |  |  161|  2.04k|#define MP_OKAY       0   /* no error */
  ------------------
   72|  2.04k|}

mp_to_ubin:
    8|    504|{
    9|    504|   size_t  x, count;
   10|    504|   mp_err  err;
   11|    504|   mp_int  t;
   12|       |
   13|    504|   count = mp_ubin_size(a);
   14|    504|   if (count > maxlen) {
  ------------------
  |  Branch (14:8): [True: 0, False: 504]
  ------------------
   15|      0|      return MP_BUF;
  ------------------
  |  |  167|      0|#define MP_BUF        -5  /* buffer overflow, supplied buffer too small */
  ------------------
   16|      0|   }
   17|       |
   18|    504|   if ((err = mp_init_copy(&t, a)) != MP_OKAY) {
  ------------------
  |  |  161|    504|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (18:8): [True: 0, False: 504]
  ------------------
   19|      0|      return err;
   20|      0|   }
   21|       |
   22|  20.7k|   for (x = count; x --> 0u;) {
  ------------------
  |  Branch (22:20): [True: 20.2k, False: 504]
  ------------------
   23|  20.2k|#ifndef MP_8BIT
   24|  20.2k|      buf[x] = (unsigned char)(t.dp[0] & 255u);
   25|       |#else
   26|       |      buf[x] = (unsigned char)(t.dp[0] | ((t.dp[1] & 1u) << 7));
   27|       |#endif
   28|  20.2k|      if ((err = mp_div_2d(&t, 8, &t, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|  20.2k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (28:11): [True: 0, False: 20.2k]
  ------------------
   29|      0|         goto LBL_ERR;
   30|      0|      }
   31|  20.2k|   }
   32|       |
   33|    504|   if (written != NULL) {
  ------------------
  |  Branch (33:8): [True: 0, False: 504]
  ------------------
   34|      0|      *written = count;
   35|      0|   }
   36|       |
   37|    504|LBL_ERR:
   38|    504|   mp_clear(&t);
   39|    504|   return err;
   40|    504|}

mp_ubin_size:
    8|  2.65k|{
    9|  2.65k|   size_t size = (size_t)mp_count_bits(a);
   10|  2.65k|   return (size / 8u) + (((size & 7u) != 0u) ? 1u : 0u);
  ------------------
  |  Branch (10:26): [True: 1.46k, False: 1.18k]
  ------------------
   11|  2.65k|}

mp_zero:
    8|   521k|{
    9|   521k|   a->sign = MP_ZPOS;
  ------------------
  |  |  151|   521k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   10|   521k|   a->used = 0;
   11|   521k|   MP_ZERO_DIGITS(a->dp, a->alloc);
  ------------------
  |  |   89|   521k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|   521k|do {                                                    \
  |  |   91|   521k|   int zd_ = (digits);                                  \
  |  |   92|   521k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  17.4M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 16.9M, False: 521k]
  |  |  ------------------
  |  |   94|  16.9M|      *zm_++ = 0;                                       \
  |  |   95|  16.9M|   }                                                    \
  |  |   96|   521k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   12|   521k|}

s_mp_add:
    8|  3.39M|{
    9|  3.39M|   const mp_int *x;
   10|  3.39M|   mp_err err;
   11|  3.39M|   int     olduse, min, max;
   12|       |
   13|       |   /* find sizes, we let |a| <= |b| which means we have to sort
   14|       |    * them.  "x" will point to the input with the most digits
   15|       |    */
   16|  3.39M|   if (a->used > b->used) {
  ------------------
  |  Branch (16:8): [True: 37.6k, False: 3.35M]
  ------------------
   17|  37.6k|      min = b->used;
   18|  37.6k|      max = a->used;
   19|  37.6k|      x = a;
   20|  3.35M|   } else {
   21|  3.35M|      min = a->used;
   22|  3.35M|      max = b->used;
   23|  3.35M|      x = b;
   24|  3.35M|   }
   25|       |
   26|       |   /* init result */
   27|  3.39M|   if (c->alloc < (max + 1)) {
  ------------------
  |  Branch (27:8): [True: 83, False: 3.39M]
  ------------------
   28|     83|      if ((err = mp_grow(c, max + 1)) != MP_OKAY) {
  ------------------
  |  |  161|     83|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (28:11): [True: 0, False: 83]
  ------------------
   29|      0|         return err;
   30|      0|      }
   31|     83|   }
   32|       |
   33|       |   /* get old used digit count and set new one */
   34|  3.39M|   olduse = c->used;
   35|  3.39M|   c->used = max + 1;
   36|       |
   37|  3.39M|   {
   38|  3.39M|      mp_digit u, *tmpa, *tmpb, *tmpc;
   39|  3.39M|      int i;
   40|       |
   41|       |      /* alias for digit pointers */
   42|       |
   43|       |      /* first input */
   44|  3.39M|      tmpa = a->dp;
   45|       |
   46|       |      /* second input */
   47|  3.39M|      tmpb = b->dp;
   48|       |
   49|       |      /* destination */
   50|  3.39M|      tmpc = c->dp;
   51|       |
   52|       |      /* zero the carry */
   53|  3.39M|      u = 0;
   54|  93.6M|      for (i = 0; i < min; i++) {
  ------------------
  |  Branch (54:19): [True: 90.2M, False: 3.39M]
  ------------------
   55|       |         /* Compute the sum at one digit, T[i] = A[i] + B[i] + U */
   56|  90.2M|         *tmpc = *tmpa++ + *tmpb++ + u;
   57|       |
   58|       |         /* U = carry bit of T[i] */
   59|  90.2M|         u = *tmpc >> (mp_digit)MP_DIGIT_BIT;
  ------------------
  |  |   82|  90.2M|#   define MP_DIGIT_BIT 60
  ------------------
   60|       |
   61|       |         /* take away carry bit from T[i] */
   62|  90.2M|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|  90.2M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  90.2M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   63|  90.2M|      }
   64|       |
   65|       |      /* now copy higher words if any, that is in A+B
   66|       |       * if A or B has more digits add those in
   67|       |       */
   68|  3.39M|      if (min != max) {
  ------------------
  |  Branch (68:11): [True: 2.39M, False: 996k]
  ------------------
   69|  43.1M|         for (; i < max; i++) {
  ------------------
  |  Branch (69:17): [True: 40.8M, False: 2.39M]
  ------------------
   70|       |            /* T[i] = X[i] + U */
   71|  40.8M|            *tmpc = x->dp[i] + u;
   72|       |
   73|       |            /* U = carry bit of T[i] */
   74|  40.8M|            u = *tmpc >> (mp_digit)MP_DIGIT_BIT;
  ------------------
  |  |   82|  40.8M|#   define MP_DIGIT_BIT 60
  ------------------
   75|       |
   76|       |            /* take away carry bit from T[i] */
   77|  40.8M|            *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|  40.8M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  40.8M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   78|  40.8M|         }
   79|  2.39M|      }
   80|       |
   81|       |      /* add carry */
   82|  3.39M|      *tmpc++ = u;
   83|       |
   84|       |      /* clear digits above oldused */
   85|  3.39M|      MP_ZERO_DIGITS(tmpc, olduse - c->used);
  ------------------
  |  |   89|  3.39M|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  3.39M|do {                                                    \
  |  |   91|  3.39M|   int zd_ = (digits);                                  \
  |  |   92|  3.39M|   mp_digit* zm_ = (mem);                               \
  |  |   93|  3.39M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 3.39M]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|  3.39M|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   86|  3.39M|   }
   87|       |
   88|  3.39M|   mp_clamp(c);
   89|  3.39M|   return MP_OKAY;
  ------------------
  |  |  161|  3.39M|#define MP_OKAY       0   /* no error */
  ------------------
   90|  3.39M|}

s_mp_exptmod:
   15|    871|{
   16|    871|   mp_int  M[TAB_SIZE], res, mu;
   17|    871|   mp_digit buf;
   18|    871|   mp_err   err;
   19|    871|   int      bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize;
   20|    871|   mp_err(*redux)(mp_int *x, const mp_int *m, const mp_int *mu);
   21|       |
   22|       |   /* find window size */
   23|    871|   x = mp_count_bits(X);
   24|    871|   if (x <= 7) {
  ------------------
  |  Branch (24:8): [True: 199, False: 672]
  ------------------
   25|    199|      winsize = 2;
   26|    672|   } else if (x <= 36) {
  ------------------
  |  Branch (26:15): [True: 267, False: 405]
  ------------------
   27|    267|      winsize = 3;
   28|    405|   } else if (x <= 140) {
  ------------------
  |  Branch (28:15): [True: 140, False: 265]
  ------------------
   29|    140|      winsize = 4;
   30|    265|   } else if (x <= 450) {
  ------------------
  |  Branch (30:15): [True: 265, False: 0]
  ------------------
   31|    265|      winsize = 5;
   32|    265|   } else if (x <= 1303) {
  ------------------
  |  Branch (32:15): [True: 0, False: 0]
  ------------------
   33|      0|      winsize = 6;
   34|      0|   } else if (x <= 3529) {
  ------------------
  |  Branch (34:15): [True: 0, False: 0]
  ------------------
   35|      0|      winsize = 7;
   36|      0|   } else {
   37|      0|      winsize = 8;
   38|      0|   }
   39|       |
   40|    871|   winsize = MAX_WINSIZE ? MP_MIN(MAX_WINSIZE, winsize) : winsize;
  ------------------
  |  |   11|    871|#   define MAX_WINSIZE 0
  |  |  ------------------
  |  |  |  Branch (11:24): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 winsize = MAX_WINSIZE ? MP_MIN(MAX_WINSIZE, winsize) : winsize;
  ------------------
  |  |  156|      0|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   41|       |
   42|       |   /* init M array */
   43|       |   /* init first cell */
   44|    871|   if ((err = mp_init(&M[1])) != MP_OKAY) {
  ------------------
  |  |  161|    871|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (44:8): [True: 0, False: 871]
  ------------------
   45|      0|      return err;
   46|      0|   }
   47|       |
   48|       |   /* now init the second half of the array */
   49|  7.69k|   for (x = 1<<(winsize-1); x < (1 << winsize); x++) {
  ------------------
  |  Branch (49:29): [True: 6.82k, False: 871]
  ------------------
   50|  6.82k|      if ((err = mp_init(&M[x])) != MP_OKAY) {
  ------------------
  |  |  161|  6.82k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (50:11): [True: 0, False: 6.82k]
  ------------------
   51|      0|         for (y = 1<<(winsize-1); y < x; y++) {
  ------------------
  |  Branch (51:35): [True: 0, False: 0]
  ------------------
   52|      0|            mp_clear(&M[y]);
   53|      0|         }
   54|      0|         mp_clear(&M[1]);
   55|      0|         return err;
   56|      0|      }
   57|  6.82k|   }
   58|       |
   59|       |   /* create mu, used for Barrett reduction */
   60|    871|   if ((err = mp_init(&mu)) != MP_OKAY)                           goto LBL_M;
  ------------------
  |  |  161|    871|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (60:8): [True: 0, False: 871]
  ------------------
   61|       |
   62|    871|   if (redmode == 0) {
  ------------------
  |  Branch (62:8): [True: 544, False: 327]
  ------------------
   63|    544|      if ((err = mp_reduce_setup(&mu, P)) != MP_OKAY)             goto LBL_MU;
  ------------------
  |  |  161|    544|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (63:11): [True: 0, False: 544]
  ------------------
   64|    544|      redux = mp_reduce;
   65|    544|   } else {
   66|    327|      if ((err = mp_reduce_2k_setup_l(P, &mu)) != MP_OKAY)        goto LBL_MU;
  ------------------
  |  |  161|    327|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (66:11): [True: 0, False: 327]
  ------------------
   67|    327|      redux = mp_reduce_2k_l;
   68|    327|   }
   69|       |
   70|       |   /* create M table
   71|       |    *
   72|       |    * The M table contains powers of the base,
   73|       |    * e.g. M[x] = G**x mod P
   74|       |    *
   75|       |    * The first half of the table is not
   76|       |    * computed though accept for M[0] and M[1]
   77|       |    */
   78|    871|   if ((err = mp_mod(G, P, &M[1])) != MP_OKAY)                    goto LBL_MU;
  ------------------
  |  |  161|    871|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (78:8): [True: 0, False: 871]
  ------------------
   79|       |
   80|       |   /* compute the value at M[1<<(winsize-1)] by squaring
   81|       |    * M[1] (winsize-1) times
   82|       |    */
   83|    871|   if ((err = mp_copy(&M[1], &M[(size_t)1 << (winsize - 1)])) != MP_OKAY) goto LBL_MU;
  ------------------
  |  |  161|    871|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (83:8): [True: 0, False: 871]
  ------------------
   84|       |
   85|  3.08k|   for (x = 0; x < (winsize - 1); x++) {
  ------------------
  |  Branch (85:16): [True: 2.21k, False: 871]
  ------------------
   86|       |      /* square it */
   87|  2.21k|      if ((err = mp_sqr(&M[(size_t)1 << (winsize - 1)],
  ------------------
  |  Branch (87:11): [True: 0, False: 2.21k]
  ------------------
   88|  2.21k|                        &M[(size_t)1 << (winsize - 1)])) != MP_OKAY) goto LBL_MU;
  ------------------
  |  |  161|  2.21k|#define MP_OKAY       0   /* no error */
  ------------------
   89|       |
   90|       |      /* reduce modulo P */
   91|  2.21k|      if ((err = redux(&M[(size_t)1 << (winsize - 1)], P, &mu)) != MP_OKAY) goto LBL_MU;
  ------------------
  |  |  161|  2.21k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (91:11): [True: 0, False: 2.21k]
  ------------------
   92|  2.21k|   }
   93|       |
   94|       |   /* create upper table, that is M[x] = M[x-1] * M[1] (mod P)
   95|       |    * for x = (2**(winsize - 1) + 1) to (2**winsize - 1)
   96|       |    */
   97|  6.82k|   for (x = (1 << (winsize - 1)) + 1; x < (1 << winsize); x++) {
  ------------------
  |  Branch (97:39): [True: 5.95k, False: 871]
  ------------------
   98|  5.95k|      if ((err = mp_mul(&M[x - 1], &M[1], &M[x])) != MP_OKAY)     goto LBL_MU;
  ------------------
  |  |  161|  5.95k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (98:11): [True: 0, False: 5.95k]
  ------------------
   99|  5.95k|      if ((err = redux(&M[x], P, &mu)) != MP_OKAY)                goto LBL_MU;
  ------------------
  |  |  161|  5.95k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (99:11): [True: 0, False: 5.95k]
  ------------------
  100|  5.95k|   }
  101|       |
  102|       |   /* setup result */
  103|    871|   if ((err = mp_init(&res)) != MP_OKAY)                          goto LBL_MU;
  ------------------
  |  |  161|    871|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (103:8): [True: 0, False: 871]
  ------------------
  104|    871|   mp_set(&res, 1uL);
  105|       |
  106|       |   /* set initial mode and bit cnt */
  107|    871|   mode   = 0;
  108|    871|   bitcnt = 1;
  109|    871|   buf    = 0;
  110|    871|   digidx = X->used - 1;
  111|    871|   bitcpy = 0;
  112|    871|   bitbuf = 0;
  113|       |
  114|  82.3k|   for (;;) {
  115|       |      /* grab next digit as required */
  116|  82.3k|      if (--bitcnt == 0) {
  ------------------
  |  Branch (116:11): [True: 2.22k, False: 80.1k]
  ------------------
  117|       |         /* if digidx == -1 we are out of digits */
  118|  2.22k|         if (digidx == -1) {
  ------------------
  |  Branch (118:14): [True: 871, False: 1.35k]
  ------------------
  119|    871|            break;
  120|    871|         }
  121|       |         /* read next digit and reset the bitcnt */
  122|  1.35k|         buf    = X->dp[digidx--];
  123|  1.35k|         bitcnt = (int)MP_DIGIT_BIT;
  ------------------
  |  |   82|  1.35k|#   define MP_DIGIT_BIT 60
  ------------------
  124|  1.35k|      }
  125|       |
  126|       |      /* grab the next msb from the exponent */
  127|  81.4k|      y     = (buf >> (mp_digit)(MP_DIGIT_BIT - 1)) & 1uL;
  ------------------
  |  |   82|  81.4k|#   define MP_DIGIT_BIT 60
  ------------------
  128|  81.4k|      buf <<= (mp_digit)1;
  129|       |
  130|       |      /* if the bit is zero and mode == 0 then we ignore it
  131|       |       * These represent the leading zero bits before the first 1 bit
  132|       |       * in the exponent.  Technically this opt is not required but it
  133|       |       * does lower the # of trivial squaring/reductions used
  134|       |       */
  135|  81.4k|      if ((mode == 0) && (y == 0)) {
  ------------------
  |  Branch (135:11): [True: 24.1k, False: 57.3k]
  |  Branch (135:26): [True: 23.3k, False: 723]
  ------------------
  136|  23.3k|         continue;
  137|  23.3k|      }
  138|       |
  139|       |      /* if the bit is zero and mode == 1 then we square */
  140|  58.1k|      if ((mode == 1) && (y == 0)) {
  ------------------
  |  Branch (140:11): [True: 21.2k, False: 36.8k]
  |  Branch (140:26): [True: 11.6k, False: 9.56k]
  ------------------
  141|  11.6k|         if ((err = mp_sqr(&res, &res)) != MP_OKAY)               goto LBL_RES;
  ------------------
  |  |  161|  11.6k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (141:14): [True: 0, False: 11.6k]
  ------------------
  142|  11.6k|         if ((err = redux(&res, P, &mu)) != MP_OKAY)              goto LBL_RES;
  ------------------
  |  |  161|  11.6k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (142:14): [True: 0, False: 11.6k]
  ------------------
  143|  11.6k|         continue;
  144|  11.6k|      }
  145|       |
  146|       |      /* else we add it to the window */
  147|  46.4k|      bitbuf |= (y << (winsize - ++bitcpy));
  148|  46.4k|      mode    = 2;
  149|       |
  150|  46.4k|      if (bitcpy == winsize) {
  ------------------
  |  Branch (150:11): [True: 9.93k, False: 36.4k]
  ------------------
  151|       |         /* ok window is filled so square as required and multiply  */
  152|       |         /* square first */
  153|  55.4k|         for (x = 0; x < winsize; x++) {
  ------------------
  |  Branch (153:22): [True: 45.5k, False: 9.93k]
  ------------------
  154|  45.5k|            if ((err = mp_sqr(&res, &res)) != MP_OKAY)            goto LBL_RES;
  ------------------
  |  |  161|  45.5k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (154:17): [True: 0, False: 45.5k]
  ------------------
  155|  45.5k|            if ((err = redux(&res, P, &mu)) != MP_OKAY)           goto LBL_RES;
  ------------------
  |  |  161|  45.5k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (155:17): [True: 0, False: 45.5k]
  ------------------
  156|  45.5k|         }
  157|       |
  158|       |         /* then multiply */
  159|  9.93k|         if ((err = mp_mul(&res, &M[bitbuf], &res)) != MP_OKAY)  goto LBL_RES;
  ------------------
  |  |  161|  9.93k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (159:14): [True: 0, False: 9.93k]
  ------------------
  160|  9.93k|         if ((err = redux(&res, P, &mu)) != MP_OKAY)             goto LBL_RES;
  ------------------
  |  |  161|  9.93k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (160:14): [True: 0, False: 9.93k]
  ------------------
  161|       |
  162|       |         /* empty window and reset */
  163|  9.93k|         bitcpy = 0;
  164|  9.93k|         bitbuf = 0;
  165|  9.93k|         mode   = 1;
  166|  9.93k|      }
  167|  46.4k|   }
  168|       |
  169|       |   /* if bits remain then square/multiply */
  170|    871|   if ((mode == 2) && (bitcpy > 0)) {
  ------------------
  |  Branch (170:8): [True: 359, False: 512]
  |  Branch (170:23): [True: 359, False: 0]
  ------------------
  171|       |      /* square then multiply if the bit is set */
  172|  1.22k|      for (x = 0; x < bitcpy; x++) {
  ------------------
  |  Branch (172:19): [True: 866, False: 359]
  ------------------
  173|    866|         if ((err = mp_sqr(&res, &res)) != MP_OKAY)               goto LBL_RES;
  ------------------
  |  |  161|    866|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (173:14): [True: 0, False: 866]
  ------------------
  174|    866|         if ((err = redux(&res, P, &mu)) != MP_OKAY)              goto LBL_RES;
  ------------------
  |  |  161|    866|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (174:14): [True: 0, False: 866]
  ------------------
  175|       |
  176|    866|         bitbuf <<= 1;
  177|    866|         if ((bitbuf & (1 << winsize)) != 0) {
  ------------------
  |  Branch (177:14): [True: 662, False: 204]
  ------------------
  178|       |            /* then multiply */
  179|    662|            if ((err = mp_mul(&res, &M[1], &res)) != MP_OKAY)     goto LBL_RES;
  ------------------
  |  |  161|    662|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (179:17): [True: 0, False: 662]
  ------------------
  180|    662|            if ((err = redux(&res, P, &mu)) != MP_OKAY)           goto LBL_RES;
  ------------------
  |  |  161|    662|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (180:17): [True: 0, False: 662]
  ------------------
  181|    662|         }
  182|    866|      }
  183|    359|   }
  184|       |
  185|    871|   mp_exch(&res, Y);
  186|    871|   err = MP_OKAY;
  ------------------
  |  |  161|    871|#define MP_OKAY       0   /* no error */
  ------------------
  187|    871|LBL_RES:
  188|    871|   mp_clear(&res);
  189|    871|LBL_MU:
  190|    871|   mp_clear(&mu);
  191|    871|LBL_M:
  192|    871|   mp_clear(&M[1]);
  193|  7.69k|   for (x = 1<<(winsize-1); x < (1 << winsize); x++) {
  ------------------
  |  Branch (193:29): [True: 6.82k, False: 871]
  ------------------
  194|  6.82k|      mp_clear(&M[x]);
  195|  6.82k|   }
  196|    871|   return err;
  197|    871|}

s_mp_exptmod_fast:
   23|  2.39k|{
   24|  2.39k|   mp_int  M[TAB_SIZE], res;
   25|  2.39k|   mp_digit buf, mp;
   26|  2.39k|   int     bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize;
   27|  2.39k|   mp_err   err;
   28|       |
   29|       |   /* use a pointer to the reduction algorithm.  This allows us to use
   30|       |    * one of many reduction algorithms without modding the guts of
   31|       |    * the code with if statements everywhere.
   32|       |    */
   33|  2.39k|   mp_err(*redux)(mp_int *x, const mp_int *n, mp_digit rho);
   34|       |
   35|       |   /* find window size */
   36|  2.39k|   x = mp_count_bits(X);
   37|  2.39k|   if (x <= 7) {
  ------------------
  |  Branch (37:8): [True: 314, False: 2.08k]
  ------------------
   38|    314|      winsize = 2;
   39|  2.08k|   } else if (x <= 36) {
  ------------------
  |  Branch (39:15): [True: 164, False: 1.91k]
  ------------------
   40|    164|      winsize = 3;
   41|  1.91k|   } else if (x <= 140) {
  ------------------
  |  Branch (41:15): [True: 1.32k, False: 591]
  ------------------
   42|  1.32k|      winsize = 4;
   43|  1.32k|   } else if (x <= 450) {
  ------------------
  |  Branch (43:15): [True: 591, False: 0]
  ------------------
   44|    591|      winsize = 5;
   45|    591|   } else if (x <= 1303) {
  ------------------
  |  Branch (45:15): [True: 0, False: 0]
  ------------------
   46|      0|      winsize = 6;
   47|      0|   } else if (x <= 3529) {
  ------------------
  |  Branch (47:15): [True: 0, False: 0]
  ------------------
   48|      0|      winsize = 7;
   49|      0|   } else {
   50|      0|      winsize = 8;
   51|      0|   }
   52|       |
   53|  2.39k|   winsize = MAX_WINSIZE ? MP_MIN(MAX_WINSIZE, winsize) : winsize;
  ------------------
  |  |   19|  2.39k|#   define MAX_WINSIZE 0
  |  |  ------------------
  |  |  |  Branch (19:24): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 winsize = MAX_WINSIZE ? MP_MIN(MAX_WINSIZE, winsize) : winsize;
  ------------------
  |  |  156|      0|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   54|       |
   55|       |   /* init M array */
   56|       |   /* init first cell */
   57|  2.39k|   if ((err = mp_init_size(&M[1], P->alloc)) != MP_OKAY) {
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (57:8): [True: 0, False: 2.39k]
  ------------------
   58|      0|      return err;
   59|      0|   }
   60|       |
   61|       |   /* now init the second half of the array */
   62|  23.7k|   for (x = 1<<(winsize-1); x < (1 << winsize); x++) {
  ------------------
  |  Branch (62:29): [True: 21.3k, False: 2.39k]
  ------------------
   63|  21.3k|      if ((err = mp_init_size(&M[x], P->alloc)) != MP_OKAY) {
  ------------------
  |  |  161|  21.3k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (63:11): [True: 0, False: 21.3k]
  ------------------
   64|      0|         for (y = 1<<(winsize-1); y < x; y++) {
  ------------------
  |  Branch (64:35): [True: 0, False: 0]
  ------------------
   65|      0|            mp_clear(&M[y]);
   66|      0|         }
   67|      0|         mp_clear(&M[1]);
   68|      0|         return err;
   69|      0|      }
   70|  21.3k|   }
   71|       |
   72|       |   /* determine and setup reduction code */
   73|  2.39k|   if (redmode == 0) {
  ------------------
  |  Branch (73:8): [True: 2.39k, False: 0]
  ------------------
   74|  2.39k|      if (MP_HAS(MP_MONTGOMERY_SETUP)) {
  ------------------
  |  |  150|  2.39k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  2.39k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  2.39k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   75|       |         /* now setup montgomery  */
   76|  2.39k|         if ((err = mp_montgomery_setup(P, &mp)) != MP_OKAY)      goto LBL_M;
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (76:14): [True: 0, False: 2.39k]
  ------------------
   77|  2.39k|      } else {
   78|      0|         err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   79|      0|         goto LBL_M;
   80|      0|      }
   81|       |
   82|       |      /* automatically pick the comba one if available (saves quite a few calls/ifs) */
   83|  2.39k|      if (MP_HAS(S_MP_MONTGOMERY_REDUCE_FAST) &&
  ------------------
  |  |  150|  4.78k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  2.39k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  2.39k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   84|  2.39k|          (((P->used * 2) + 1) < MP_WARRAY) &&
  ------------------
  |  |  172|  2.39k|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|  2.39k|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  2.39k|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (84:11): [True: 2.39k, False: 0]
  ------------------
   85|  2.39k|          (P->used < MP_MAXFAST)) {
  ------------------
  |  |  168|  2.39k|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|  2.39k|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|  2.39k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (85:11): [True: 2.39k, False: 0]
  ------------------
   86|  2.39k|         redux = s_mp_montgomery_reduce_fast;
   87|  2.39k|      } else if (MP_HAS(MP_MONTGOMERY_REDUCE)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   88|       |         /* use slower baseline Montgomery method */
   89|      0|         redux = mp_montgomery_reduce;
   90|      0|      } else {
   91|      0|         err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   92|      0|         goto LBL_M;
   93|      0|      }
   94|  2.39k|   } else if (redmode == 1) {
  ------------------
  |  Branch (94:15): [True: 0, False: 0]
  ------------------
   95|      0|      if (MP_HAS(MP_DR_SETUP) && MP_HAS(MP_DR_REDUCE)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
                    if (MP_HAS(MP_DR_SETUP) && MP_HAS(MP_DR_REDUCE)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   96|       |         /* setup DR reduction for moduli of the form B**k - b */
   97|      0|         mp_dr_setup(P, &mp);
   98|      0|         redux = mp_dr_reduce;
   99|      0|      } else {
  100|      0|         err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
  101|      0|         goto LBL_M;
  102|      0|      }
  103|      0|   } else if (MP_HAS(MP_REDUCE_2K_SETUP) && MP_HAS(MP_REDUCE_2K)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
                 } else if (MP_HAS(MP_REDUCE_2K_SETUP) && MP_HAS(MP_REDUCE_2K)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
  104|       |      /* setup DR reduction for moduli of the form 2**k - b */
  105|      0|      if ((err = mp_reduce_2k_setup(P, &mp)) != MP_OKAY)          goto LBL_M;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (105:11): [True: 0, False: 0]
  ------------------
  106|      0|      redux = mp_reduce_2k;
  107|      0|   } else {
  108|      0|      err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
  109|      0|      goto LBL_M;
  110|      0|   }
  111|       |
  112|       |   /* setup result */
  113|  2.39k|   if ((err = mp_init_size(&res, P->alloc)) != MP_OKAY)           goto LBL_M;
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (113:8): [True: 0, False: 2.39k]
  ------------------
  114|       |
  115|       |   /* create M table
  116|       |    *
  117|       |
  118|       |    *
  119|       |    * The first half of the table is not computed though accept for M[0] and M[1]
  120|       |    */
  121|       |
  122|  2.39k|   if (redmode == 0) {
  ------------------
  |  Branch (122:8): [True: 2.39k, False: 0]
  ------------------
  123|  2.39k|      if (MP_HAS(MP_MONTGOMERY_CALC_NORMALIZATION)) {
  ------------------
  |  |  150|  2.39k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  2.39k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  2.39k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
  124|       |         /* now we need R mod m */
  125|  2.39k|         if ((err = mp_montgomery_calc_normalization(&res, P)) != MP_OKAY) goto LBL_RES;
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (125:14): [True: 0, False: 2.39k]
  ------------------
  126|       |
  127|       |         /* now set M[1] to G * R mod m */
  128|  2.39k|         if ((err = mp_mulmod(G, &res, P, &M[1])) != MP_OKAY)     goto LBL_RES;
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (128:14): [True: 0, False: 2.39k]
  ------------------
  129|  2.39k|      } else {
  130|      0|         err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
  131|      0|         goto LBL_RES;
  132|      0|      }
  133|  2.39k|   } else {
  134|      0|      mp_set(&res, 1uL);
  135|      0|      if ((err = mp_mod(G, P, &M[1])) != MP_OKAY)                 goto LBL_RES;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (135:11): [True: 0, False: 0]
  ------------------
  136|      0|   }
  137|       |
  138|       |   /* compute the value at M[1<<(winsize-1)] by squaring M[1] (winsize-1) times */
  139|  2.39k|   if ((err = mp_copy(&M[1], &M[(size_t)1 << (winsize - 1)])) != MP_OKAY) goto LBL_RES;
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (139:8): [True: 0, False: 2.39k]
  ------------------
  140|       |
  141|  9.37k|   for (x = 0; x < (winsize - 1); x++) {
  ------------------
  |  Branch (141:16): [True: 6.98k, False: 2.39k]
  ------------------
  142|  6.98k|      if ((err = mp_sqr(&M[(size_t)1 << (winsize - 1)], &M[(size_t)1 << (winsize - 1)])) != MP_OKAY) goto LBL_RES;
  ------------------
  |  |  161|  6.98k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (142:11): [True: 0, False: 6.98k]
  ------------------
  143|  6.98k|      if ((err = redux(&M[(size_t)1 << (winsize - 1)], P, mp)) != MP_OKAY) goto LBL_RES;
  ------------------
  |  |  161|  6.98k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (143:11): [True: 0, False: 6.98k]
  ------------------
  144|  6.98k|   }
  145|       |
  146|       |   /* create upper table */
  147|  21.3k|   for (x = (1 << (winsize - 1)) + 1; x < (1 << winsize); x++) {
  ------------------
  |  Branch (147:39): [True: 18.9k, False: 2.39k]
  ------------------
  148|  18.9k|      if ((err = mp_mul(&M[x - 1], &M[1], &M[x])) != MP_OKAY)     goto LBL_RES;
  ------------------
  |  |  161|  18.9k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (148:11): [True: 0, False: 18.9k]
  ------------------
  149|  18.9k|      if ((err = redux(&M[x], P, mp)) != MP_OKAY)                 goto LBL_RES;
  ------------------
  |  |  161|  18.9k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (149:11): [True: 0, False: 18.9k]
  ------------------
  150|  18.9k|   }
  151|       |
  152|       |   /* set initial mode and bit cnt */
  153|  2.39k|   mode   = 0;
  154|  2.39k|   bitcnt = 1;
  155|  2.39k|   buf    = 0;
  156|  2.39k|   digidx = X->used - 1;
  157|  2.39k|   bitcpy = 0;
  158|  2.39k|   bitbuf = 0;
  159|       |
  160|   285k|   for (;;) {
  161|       |      /* grab next digit as required */
  162|   285k|      if (--bitcnt == 0) {
  ------------------
  |  Branch (162:11): [True: 7.10k, False: 277k]
  ------------------
  163|       |         /* if digidx == -1 we are out of digits so break */
  164|  7.10k|         if (digidx == -1) {
  ------------------
  |  Branch (164:14): [True: 2.39k, False: 4.71k]
  ------------------
  165|  2.39k|            break;
  166|  2.39k|         }
  167|       |         /* read next digit and reset bitcnt */
  168|  4.71k|         buf    = X->dp[digidx--];
  169|  4.71k|         bitcnt = (int)MP_DIGIT_BIT;
  ------------------
  |  |   82|  4.71k|#   define MP_DIGIT_BIT 60
  ------------------
  170|  4.71k|      }
  171|       |
  172|       |      /* grab the next msb from the exponent */
  173|   282k|      y     = (mp_digit)(buf >> (MP_DIGIT_BIT - 1)) & 1uL;
  ------------------
  |  |   82|   282k|#   define MP_DIGIT_BIT 60
  ------------------
  174|   282k|      buf <<= (mp_digit)1;
  175|       |
  176|       |      /* if the bit is zero and mode == 0 then we ignore it
  177|       |       * These represent the leading zero bits before the first 1 bit
  178|       |       * in the exponent.  Technically this opt is not required but it
  179|       |       * does lower the # of trivial squaring/reductions used
  180|       |       */
  181|   282k|      if ((mode == 0) && (y == 0)) {
  ------------------
  |  Branch (181:11): [True: 57.8k, False: 224k]
  |  Branch (181:26): [True: 55.6k, False: 2.14k]
  ------------------
  182|  55.6k|         continue;
  183|  55.6k|      }
  184|       |
  185|       |      /* if the bit is zero and mode == 1 then we square */
  186|   226k|      if ((mode == 1) && (y == 0)) {
  ------------------
  |  Branch (186:11): [True: 109k, False: 117k]
  |  Branch (186:26): [True: 75.7k, False: 34.1k]
  ------------------
  187|  75.7k|         if ((err = mp_sqr(&res, &res)) != MP_OKAY)               goto LBL_RES;
  ------------------
  |  |  161|  75.7k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (187:14): [True: 0, False: 75.7k]
  ------------------
  188|  75.7k|         if ((err = redux(&res, P, mp)) != MP_OKAY)               goto LBL_RES;
  ------------------
  |  |  161|  75.7k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (188:14): [True: 0, False: 75.7k]
  ------------------
  189|  75.7k|         continue;
  190|  75.7k|      }
  191|       |
  192|       |      /* else we add it to the window */
  193|   151k|      bitbuf |= (y << (winsize - ++bitcpy));
  194|   151k|      mode    = 2;
  195|       |
  196|   151k|      if (bitcpy == winsize) {
  ------------------
  |  Branch (196:11): [True: 34.8k, False: 116k]
  ------------------
  197|       |         /* ok window is filled so square as required and multiply  */
  198|       |         /* square first */
  199|   182k|         for (x = 0; x < winsize; x++) {
  ------------------
  |  Branch (199:22): [True: 147k, False: 34.8k]
  ------------------
  200|   147k|            if ((err = mp_sqr(&res, &res)) != MP_OKAY)            goto LBL_RES;
  ------------------
  |  |  161|   147k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (200:17): [True: 0, False: 147k]
  ------------------
  201|   147k|            if ((err = redux(&res, P, mp)) != MP_OKAY)            goto LBL_RES;
  ------------------
  |  |  161|   147k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (201:17): [True: 0, False: 147k]
  ------------------
  202|   147k|         }
  203|       |
  204|       |         /* then multiply */
  205|  34.8k|         if ((err = mp_mul(&res, &M[bitbuf], &res)) != MP_OKAY)   goto LBL_RES;
  ------------------
  |  |  161|  34.8k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (205:14): [True: 0, False: 34.8k]
  ------------------
  206|  34.8k|         if ((err = redux(&res, P, mp)) != MP_OKAY)               goto LBL_RES;
  ------------------
  |  |  161|  34.8k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (206:14): [True: 0, False: 34.8k]
  ------------------
  207|       |
  208|       |         /* empty window and reset */
  209|  34.8k|         bitcpy = 0;
  210|  34.8k|         bitbuf = 0;
  211|  34.8k|         mode   = 1;
  212|  34.8k|      }
  213|   151k|   }
  214|       |
  215|       |   /* if bits remain then square/multiply */
  216|  2.39k|   if ((mode == 2) && (bitcpy > 0)) {
  ------------------
  |  Branch (216:8): [True: 1.49k, False: 896]
  |  Branch (216:23): [True: 1.49k, False: 0]
  ------------------
  217|       |      /* square then multiply if the bit is set */
  218|  4.81k|      for (x = 0; x < bitcpy; x++) {
  ------------------
  |  Branch (218:19): [True: 3.32k, False: 1.49k]
  ------------------
  219|  3.32k|         if ((err = mp_sqr(&res, &res)) != MP_OKAY)               goto LBL_RES;
  ------------------
  |  |  161|  3.32k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (219:14): [True: 0, False: 3.32k]
  ------------------
  220|  3.32k|         if ((err = redux(&res, P, mp)) != MP_OKAY)               goto LBL_RES;
  ------------------
  |  |  161|  3.32k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (220:14): [True: 0, False: 3.32k]
  ------------------
  221|       |
  222|       |         /* get next bit of the window */
  223|  3.32k|         bitbuf <<= 1;
  224|  3.32k|         if ((bitbuf & (1 << winsize)) != 0) {
  ------------------
  |  Branch (224:14): [True: 2.95k, False: 368]
  ------------------
  225|       |            /* then multiply */
  226|  2.95k|            if ((err = mp_mul(&res, &M[1], &res)) != MP_OKAY)     goto LBL_RES;
  ------------------
  |  |  161|  2.95k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (226:17): [True: 0, False: 2.95k]
  ------------------
  227|  2.95k|            if ((err = redux(&res, P, mp)) != MP_OKAY)            goto LBL_RES;
  ------------------
  |  |  161|  2.95k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (227:17): [True: 0, False: 2.95k]
  ------------------
  228|  2.95k|         }
  229|  3.32k|      }
  230|  1.49k|   }
  231|       |
  232|  2.39k|   if (redmode == 0) {
  ------------------
  |  Branch (232:8): [True: 2.39k, False: 0]
  ------------------
  233|       |      /* fixup result if Montgomery reduction is used
  234|       |       * recall that any value in a Montgomery system is
  235|       |       * actually multiplied by R mod n.  So we have
  236|       |       * to reduce one more time to cancel out the factor
  237|       |       * of R.
  238|       |       */
  239|  2.39k|      if ((err = redux(&res, P, mp)) != MP_OKAY)                  goto LBL_RES;
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (239:11): [True: 0, False: 2.39k]
  ------------------
  240|  2.39k|   }
  241|       |
  242|       |   /* swap res with Y */
  243|  2.39k|   mp_exch(&res, Y);
  244|  2.39k|   err = MP_OKAY;
  ------------------
  |  |  161|  2.39k|#define MP_OKAY       0   /* no error */
  ------------------
  245|  2.39k|LBL_RES:
  246|  2.39k|   mp_clear(&res);
  247|  2.39k|LBL_M:
  248|  2.39k|   mp_clear(&M[1]);
  249|  23.7k|   for (x = 1<<(winsize-1); x < (1 << winsize); x++) {
  ------------------
  |  Branch (249:29): [True: 21.3k, False: 2.39k]
  ------------------
  250|  21.3k|      mp_clear(&M[x]);
  251|  21.3k|   }
  252|  2.39k|   return err;
  253|  2.39k|}

s_mp_invmod_fast:
   13|    673|{
   14|    673|   mp_int  x, y, u, v, B, D;
   15|    673|   mp_sign neg;
   16|    673|   mp_err  err;
   17|       |
   18|       |   /* 2. [modified] b must be odd   */
   19|    673|   if (MP_IS_EVEN(b)) {
  ------------------
  |  |  164|    673|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 673]
  |  |  |  Branch (164:44): [True: 0, False: 673]
  |  |  ------------------
  ------------------
   20|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   21|      0|   }
   22|       |
   23|       |   /* init all our temps */
   24|    673|   if ((err = mp_init_multi(&x, &y, &u, &v, &B, &D, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|    673|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (24:8): [True: 0, False: 673]
  ------------------
   25|      0|      return err;
   26|      0|   }
   27|       |
   28|       |   /* x == modulus, y == value to invert */
   29|    673|   if ((err = mp_copy(b, &x)) != MP_OKAY)                         goto LBL_ERR;
  ------------------
  |  |  161|    673|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (29:8): [True: 0, False: 673]
  ------------------
   30|       |
   31|       |   /* we need y = |a| */
   32|    673|   if ((err = mp_mod(a, b, &y)) != MP_OKAY)                       goto LBL_ERR;
  ------------------
  |  |  161|    673|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (32:8): [True: 0, False: 673]
  ------------------
   33|       |
   34|       |   /* if one of x,y is zero return an error! */
   35|    673|   if (MP_IS_ZERO(&x) || MP_IS_ZERO(&y)) {
  ------------------
  |  |  163|  1.34k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 673]
  |  |  ------------------
  ------------------
                 if (MP_IS_ZERO(&x) || MP_IS_ZERO(&y)) {
  ------------------
  |  |  163|    673|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 673]
  |  |  ------------------
  ------------------
   36|      0|      err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   37|      0|      goto LBL_ERR;
   38|      0|   }
   39|       |
   40|       |   /* 3. u=x, v=y, A=1, B=0, C=0,D=1 */
   41|    673|   if ((err = mp_copy(&x, &u)) != MP_OKAY)                        goto LBL_ERR;
  ------------------
  |  |  161|    673|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (41:8): [True: 0, False: 673]
  ------------------
   42|    673|   if ((err = mp_copy(&y, &v)) != MP_OKAY)                        goto LBL_ERR;
  ------------------
  |  |  161|    673|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (42:8): [True: 0, False: 673]
  ------------------
   43|    673|   mp_set(&D, 1uL);
   44|       |
   45|   121k|top:
   46|       |   /* 4.  while u is even do */
   47|   289k|   while (MP_IS_EVEN(&u)) {
  ------------------
  |  |  164|   289k|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 289k]
  |  |  |  Branch (164:44): [True: 168k, False: 121k]
  |  |  ------------------
  ------------------
   48|       |      /* 4.1 u = u/2 */
   49|   168k|      if ((err = mp_div_2(&u, &u)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|   168k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (49:11): [True: 0, False: 168k]
  ------------------
   50|       |
   51|       |      /* 4.2 if B is odd then */
   52|   168k|      if (MP_IS_ODD(&B)) {
  ------------------
  |  |  165|   168k|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 168k, False: 0]
  |  |  |  Branch (165:43): [True: 81.5k, False: 87.2k]
  |  |  ------------------
  ------------------
   53|  81.5k|         if ((err = mp_sub(&B, &x, &B)) != MP_OKAY)               goto LBL_ERR;
  ------------------
  |  |  161|  81.5k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (53:14): [True: 0, False: 81.5k]
  ------------------
   54|  81.5k|      }
   55|       |      /* B = B/2 */
   56|   168k|      if ((err = mp_div_2(&B, &B)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|   168k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (56:11): [True: 0, False: 168k]
  ------------------
   57|   168k|   }
   58|       |
   59|       |   /* 5.  while v is even do */
   60|   200k|   while (MP_IS_EVEN(&v)) {
  ------------------
  |  |  164|   200k|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 200k]
  |  |  |  Branch (164:44): [True: 78.9k, False: 121k]
  |  |  ------------------
  ------------------
   61|       |      /* 5.1 v = v/2 */
   62|  78.9k|      if ((err = mp_div_2(&v, &v)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  78.9k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (62:11): [True: 0, False: 78.9k]
  ------------------
   63|       |
   64|       |      /* 5.2 if D is odd then */
   65|  78.9k|      if (MP_IS_ODD(&D)) {
  ------------------
  |  |  165|  78.9k|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 78.9k, False: 0]
  |  |  |  Branch (165:43): [True: 48.8k, False: 30.0k]
  |  |  ------------------
  ------------------
   66|       |         /* D = (D-x)/2 */
   67|  48.8k|         if ((err = mp_sub(&D, &x, &D)) != MP_OKAY)               goto LBL_ERR;
  ------------------
  |  |  161|  48.8k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (67:14): [True: 0, False: 48.8k]
  ------------------
   68|  48.8k|      }
   69|       |      /* D = D/2 */
   70|  78.9k|      if ((err = mp_div_2(&D, &D)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  78.9k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (70:11): [True: 0, False: 78.9k]
  ------------------
   71|  78.9k|   }
   72|       |
   73|       |   /* 6.  if u >= v then */
   74|   121k|   if (mp_cmp(&u, &v) != MP_LT) {
  ------------------
  |  |  154|   121k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (74:8): [True: 85.9k, False: 35.2k]
  ------------------
   75|       |      /* u = u - v, B = B - D */
   76|  85.9k|      if ((err = mp_sub(&u, &v, &u)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  85.9k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (76:11): [True: 0, False: 85.9k]
  ------------------
   77|       |
   78|  85.9k|      if ((err = mp_sub(&B, &D, &B)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  85.9k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (78:11): [True: 0, False: 85.9k]
  ------------------
   79|  85.9k|   } else {
   80|       |      /* v - v - u, D = D - B */
   81|  35.2k|      if ((err = mp_sub(&v, &u, &v)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  35.2k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (81:11): [True: 0, False: 35.2k]
  ------------------
   82|       |
   83|  35.2k|      if ((err = mp_sub(&D, &B, &D)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  35.2k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (83:11): [True: 0, False: 35.2k]
  ------------------
   84|  35.2k|   }
   85|       |
   86|       |   /* if not zero goto step 4 */
   87|   121k|   if (!MP_IS_ZERO(&u)) {
  ------------------
  |  |  163|   121k|#define MP_IS_ZERO(a) ((a)->used == 0)
  ------------------
  |  Branch (87:8): [True: 120k, False: 673]
  ------------------
   88|   120k|      goto top;
   89|   120k|   }
   90|       |
   91|       |   /* now a = C, b = D, gcd == g*v */
   92|       |
   93|       |   /* if v != 1 then there is no inverse */
   94|    673|   if (mp_cmp_d(&v, 1uL) != MP_EQ) {
  ------------------
  |  |  155|    673|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (94:8): [True: 1, False: 672]
  ------------------
   95|      1|      err = MP_VAL;
  ------------------
  |  |  164|      1|#define MP_VAL        -3  /* invalid input */
  ------------------
   96|      1|      goto LBL_ERR;
   97|      1|   }
   98|       |
   99|       |   /* b is now the inverse */
  100|    672|   neg = a->sign;
  101|  1.27k|   while (D.sign == MP_NEG) {
  ------------------
  |  |  152|  1.27k|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (101:11): [True: 603, False: 672]
  ------------------
  102|    603|      if ((err = mp_add(&D, b, &D)) != MP_OKAY)                   goto LBL_ERR;
  ------------------
  |  |  161|    603|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (102:11): [True: 0, False: 603]
  ------------------
  103|    603|   }
  104|       |
  105|       |   /* too big */
  106|    713|   while (mp_cmp_mag(&D, b) != MP_LT) {
  ------------------
  |  |  154|    713|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (106:11): [True: 41, False: 672]
  ------------------
  107|     41|      if ((err = mp_sub(&D, b, &D)) != MP_OKAY)                   goto LBL_ERR;
  ------------------
  |  |  161|     41|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (107:11): [True: 0, False: 41]
  ------------------
  108|     41|   }
  109|       |
  110|    672|   mp_exch(&D, c);
  111|    672|   c->sign = neg;
  112|    672|   err = MP_OKAY;
  ------------------
  |  |  161|    672|#define MP_OKAY       0   /* no error */
  ------------------
  113|       |
  114|    673|LBL_ERR:
  115|    673|   mp_clear_multi(&x, &y, &u, &v, &B, &D, NULL);
  116|    673|   return err;
  117|    672|}

s_mp_invmod_slow:
    8|     64|{
    9|     64|   mp_int  x, y, u, v, A, B, C, D;
   10|     64|   mp_err  err;
   11|       |
   12|       |   /* b cannot be negative */
   13|     64|   if ((b->sign == MP_NEG) || MP_IS_ZERO(b)) {
  ------------------
  |  |  152|     64|#define MP_NEG        1   /* negative */
  ------------------
                 if ((b->sign == MP_NEG) || MP_IS_ZERO(b)) {
  ------------------
  |  |  163|     64|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 64]
  |  |  ------------------
  ------------------
  |  Branch (13:8): [True: 0, False: 64]
  ------------------
   14|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   15|      0|   }
   16|       |
   17|       |   /* init temps */
   18|     64|   if ((err = mp_init_multi(&x, &y, &u, &v,
  ------------------
  |  Branch (18:8): [True: 0, False: 64]
  ------------------
   19|     64|                            &A, &B, &C, &D, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|     64|#define MP_OKAY       0   /* no error */
  ------------------
   20|      0|      return err;
   21|      0|   }
   22|       |
   23|       |   /* x = a, y = b */
   24|     64|   if ((err = mp_mod(a, b, &x)) != MP_OKAY)                       goto LBL_ERR;
  ------------------
  |  |  161|     64|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (24:8): [True: 0, False: 64]
  ------------------
   25|     64|   if ((err = mp_copy(b, &y)) != MP_OKAY)                         goto LBL_ERR;
  ------------------
  |  |  161|     64|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (25:8): [True: 0, False: 64]
  ------------------
   26|       |
   27|       |   /* 2. [modified] if x,y are both even then return an error! */
   28|     64|   if (MP_IS_EVEN(&x) && MP_IS_EVEN(&y)) {
  ------------------
  |  |  164|    128|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 64]
  |  |  |  Branch (164:44): [True: 1, False: 63]
  |  |  ------------------
  ------------------
                 if (MP_IS_EVEN(&x) && MP_IS_EVEN(&y)) {
  ------------------
  |  |  164|      1|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 1]
  |  |  |  Branch (164:44): [True: 1, False: 0]
  |  |  ------------------
  ------------------
   29|      1|      err = MP_VAL;
  ------------------
  |  |  164|      1|#define MP_VAL        -3  /* invalid input */
  ------------------
   30|      1|      goto LBL_ERR;
   31|      1|   }
   32|       |
   33|       |   /* 3. u=x, v=y, A=1, B=0, C=0,D=1 */
   34|     63|   if ((err = mp_copy(&x, &u)) != MP_OKAY)                        goto LBL_ERR;
  ------------------
  |  |  161|     63|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (34:8): [True: 0, False: 63]
  ------------------
   35|     63|   if ((err = mp_copy(&y, &v)) != MP_OKAY)                        goto LBL_ERR;
  ------------------
  |  |  161|     63|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (35:8): [True: 0, False: 63]
  ------------------
   36|     63|   mp_set(&A, 1uL);
   37|     63|   mp_set(&D, 1uL);
   38|       |
   39|  5.17k|top:
   40|       |   /* 4.  while u is even do */
   41|  9.42k|   while (MP_IS_EVEN(&u)) {
  ------------------
  |  |  164|  9.42k|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 9.42k]
  |  |  |  Branch (164:44): [True: 4.24k, False: 5.17k]
  |  |  ------------------
  ------------------
   42|       |      /* 4.1 u = u/2 */
   43|  4.24k|      if ((err = mp_div_2(&u, &u)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  4.24k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (43:11): [True: 0, False: 4.24k]
  ------------------
   44|       |
   45|       |      /* 4.2 if A or B is odd then */
   46|  4.24k|      if (MP_IS_ODD(&A) || MP_IS_ODD(&B)) {
  ------------------
  |  |  165|  8.49k|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 4.24k, False: 0]
  |  |  |  Branch (165:43): [True: 0, False: 4.24k]
  |  |  ------------------
  ------------------
                    if (MP_IS_ODD(&A) || MP_IS_ODD(&B)) {
  ------------------
  |  |  165|  4.24k|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 4.24k, False: 0]
  |  |  |  Branch (165:43): [True: 1.91k, False: 2.33k]
  |  |  ------------------
  ------------------
   47|       |         /* A = (A+y)/2, B = (B-x)/2 */
   48|  1.91k|         if ((err = mp_add(&A, &y, &A)) != MP_OKAY)               goto LBL_ERR;
  ------------------
  |  |  161|  1.91k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (48:14): [True: 0, False: 1.91k]
  ------------------
   49|  1.91k|         if ((err = mp_sub(&B, &x, &B)) != MP_OKAY)               goto LBL_ERR;
  ------------------
  |  |  161|  1.91k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (49:14): [True: 0, False: 1.91k]
  ------------------
   50|  1.91k|      }
   51|       |      /* A = A/2, B = B/2 */
   52|  4.24k|      if ((err = mp_div_2(&A, &A)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  4.24k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (52:11): [True: 0, False: 4.24k]
  ------------------
   53|  4.24k|      if ((err = mp_div_2(&B, &B)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  4.24k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (53:11): [True: 0, False: 4.24k]
  ------------------
   54|  4.24k|   }
   55|       |
   56|       |   /* 5.  while v is even do */
   57|  12.3k|   while (MP_IS_EVEN(&v)) {
  ------------------
  |  |  164|  12.3k|#define MP_IS_EVEN(a) (((a)->used == 0) || (((a)->dp[0] & 1u) == 0u))
  |  |  ------------------
  |  |  |  Branch (164:24): [True: 0, False: 12.3k]
  |  |  |  Branch (164:44): [True: 7.20k, False: 5.17k]
  |  |  ------------------
  ------------------
   58|       |      /* 5.1 v = v/2 */
   59|  7.20k|      if ((err = mp_div_2(&v, &v)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  7.20k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (59:11): [True: 0, False: 7.20k]
  ------------------
   60|       |
   61|       |      /* 5.2 if C or D is odd then */
   62|  7.20k|      if (MP_IS_ODD(&C) || MP_IS_ODD(&D)) {
  ------------------
  |  |  165|  14.4k|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 7.14k, False: 63]
  |  |  |  Branch (165:43): [True: 0, False: 7.14k]
  |  |  ------------------
  ------------------
                    if (MP_IS_ODD(&C) || MP_IS_ODD(&D)) {
  ------------------
  |  |  165|  7.20k|#define MP_IS_ODD(a)  (((a)->used > 0) && (((a)->dp[0] & 1u) == 1u))
  |  |  ------------------
  |  |  |  Branch (165:24): [True: 5.15k, False: 2.05k]
  |  |  |  Branch (165:43): [True: 2.81k, False: 2.33k]
  |  |  ------------------
  ------------------
   63|       |         /* C = (C+y)/2, D = (D-x)/2 */
   64|  2.81k|         if ((err = mp_add(&C, &y, &C)) != MP_OKAY)               goto LBL_ERR;
  ------------------
  |  |  161|  2.81k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (64:14): [True: 0, False: 2.81k]
  ------------------
   65|  2.81k|         if ((err = mp_sub(&D, &x, &D)) != MP_OKAY)               goto LBL_ERR;
  ------------------
  |  |  161|  2.81k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (65:14): [True: 0, False: 2.81k]
  ------------------
   66|  2.81k|      }
   67|       |      /* C = C/2, D = D/2 */
   68|  7.20k|      if ((err = mp_div_2(&C, &C)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  7.20k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (68:11): [True: 0, False: 7.20k]
  ------------------
   69|  7.20k|      if ((err = mp_div_2(&D, &D)) != MP_OKAY)                    goto LBL_ERR;
  ------------------
  |  |  161|  7.20k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (69:11): [True: 0, False: 7.20k]
  ------------------
   70|  7.20k|   }
   71|       |
   72|       |   /* 6.  if u >= v then */
   73|  5.17k|   if (mp_cmp(&u, &v) != MP_LT) {
  ------------------
  |  |  154|  5.17k|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (73:8): [True: 2.37k, False: 2.80k]
  ------------------
   74|       |      /* u = u - v, A = A - C, B = B - D */
   75|  2.37k|      if ((err = mp_sub(&u, &v, &u)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  2.37k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (75:11): [True: 0, False: 2.37k]
  ------------------
   76|       |
   77|  2.37k|      if ((err = mp_sub(&A, &C, &A)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  2.37k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (77:11): [True: 0, False: 2.37k]
  ------------------
   78|       |
   79|  2.37k|      if ((err = mp_sub(&B, &D, &B)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  2.37k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (79:11): [True: 0, False: 2.37k]
  ------------------
   80|  2.80k|   } else {
   81|       |      /* v - v - u, C = C - A, D = D - B */
   82|  2.80k|      if ((err = mp_sub(&v, &u, &v)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  2.80k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (82:11): [True: 0, False: 2.80k]
  ------------------
   83|       |
   84|  2.80k|      if ((err = mp_sub(&C, &A, &C)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  2.80k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (84:11): [True: 0, False: 2.80k]
  ------------------
   85|       |
   86|  2.80k|      if ((err = mp_sub(&D, &B, &D)) != MP_OKAY)                  goto LBL_ERR;
  ------------------
  |  |  161|  2.80k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (86:11): [True: 0, False: 2.80k]
  ------------------
   87|  2.80k|   }
   88|       |
   89|       |   /* if not zero goto step 4 */
   90|  5.17k|   if (!MP_IS_ZERO(&u)) {
  ------------------
  |  |  163|  5.17k|#define MP_IS_ZERO(a) ((a)->used == 0)
  ------------------
  |  Branch (90:8): [True: 5.11k, False: 63]
  ------------------
   91|  5.11k|      goto top;
   92|  5.11k|   }
   93|       |
   94|       |   /* now a = C, b = D, gcd == g*v */
   95|       |
   96|       |   /* if v != 1 then there is no inverse */
   97|     63|   if (mp_cmp_d(&v, 1uL) != MP_EQ) {
  ------------------
  |  |  155|     63|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (97:8): [True: 3, False: 60]
  ------------------
   98|      3|      err = MP_VAL;
  ------------------
  |  |  164|      3|#define MP_VAL        -3  /* invalid input */
  ------------------
   99|      3|      goto LBL_ERR;
  100|      3|   }
  101|       |
  102|       |   /* if its too low */
  103|    110|   while (mp_cmp_d(&C, 0uL) == MP_LT) {
  ------------------
  |  |  154|    110|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (103:11): [True: 50, False: 60]
  ------------------
  104|     50|      if ((err = mp_add(&C, b, &C)) != MP_OKAY)                   goto LBL_ERR;
  ------------------
  |  |  161|     50|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (104:11): [True: 0, False: 50]
  ------------------
  105|     50|   }
  106|       |
  107|       |   /* too big */
  108|    107|   while (mp_cmp_mag(&C, b) != MP_LT) {
  ------------------
  |  |  154|    107|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (108:11): [True: 47, False: 60]
  ------------------
  109|     47|      if ((err = mp_sub(&C, b, &C)) != MP_OKAY)                   goto LBL_ERR;
  ------------------
  |  |  161|     47|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (109:11): [True: 0, False: 47]
  ------------------
  110|     47|   }
  111|       |
  112|       |   /* C is now the inverse */
  113|     60|   mp_exch(&C, c);
  114|     60|   err = MP_OKAY;
  ------------------
  |  |  161|     60|#define MP_OKAY       0   /* no error */
  ------------------
  115|     64|LBL_ERR:
  116|     64|   mp_clear_multi(&x, &y, &u, &v, &A, &B, &C, &D, NULL);
  117|     64|   return err;
  118|     60|}

s_mp_montgomery_reduce_fast:
   15|  1.65M|{
   16|  1.65M|   int     ix, olduse;
   17|  1.65M|   mp_err  err;
   18|  1.65M|   mp_word W[MP_WARRAY];
   19|       |
   20|  1.65M|   if (x->used > MP_WARRAY) {
  ------------------
  |  |  172|  1.65M|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|  1.65M|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  1.65M|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (20:8): [True: 0, False: 1.65M]
  ------------------
   21|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   22|      0|   }
   23|       |
   24|       |   /* get old used count */
   25|  1.65M|   olduse = x->used;
   26|       |
   27|       |   /* grow a as required */
   28|  1.65M|   if (x->alloc < (n->used + 1)) {
  ------------------
  |  Branch (28:8): [True: 0, False: 1.65M]
  ------------------
   29|      0|      if ((err = mp_grow(x, n->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (29:11): [True: 0, False: 0]
  ------------------
   30|      0|         return err;
   31|      0|      }
   32|      0|   }
   33|       |
   34|       |   /* first we have to get the digits of the input into
   35|       |    * an array of double precision words W[...]
   36|       |    */
   37|  1.65M|   {
   38|  1.65M|      mp_word *_W;
   39|  1.65M|      mp_digit *tmpx;
   40|       |
   41|       |      /* alias for the W[] array */
   42|  1.65M|      _W   = W;
   43|       |
   44|       |      /* alias for the digits of  x*/
   45|  1.65M|      tmpx = x->dp;
   46|       |
   47|       |      /* copy the digits of a into W[0..a->used-1] */
   48|  21.4M|      for (ix = 0; ix < x->used; ix++) {
  ------------------
  |  Branch (48:20): [True: 19.7M, False: 1.65M]
  ------------------
   49|  19.7M|         *_W++ = *tmpx++;
   50|  19.7M|      }
   51|       |
   52|       |      /* zero the high words of W[a->used..m->used*2] */
   53|  1.65M|      if (ix < ((n->used * 2) + 1)) {
  ------------------
  |  Branch (53:11): [True: 1.65M, False: 0]
  ------------------
   54|  1.65M|         MP_ZERO_BUFFER(_W, sizeof(mp_word) * (size_t)(((n->used * 2) + 1) - ix));
  ------------------
  |  |   81|  1.65M|#  define MP_ZERO_BUFFER(mem, size)                     \
  |  |   82|  1.65M|do {                                                    \
  |  |   83|  1.65M|   size_t zs_ = (size);                                 \
  |  |   84|  1.65M|   char* zm_ = (char*)(mem);                            \
  |  |   85|  52.6M|   while (zs_-- > 0u) {                                 \
  |  |  ------------------
  |  |  |  Branch (85:11): [True: 51.0M, False: 1.65M]
  |  |  ------------------
  |  |   86|  51.0M|      *zm_++ = '\0';                                    \
  |  |   87|  51.0M|   }                                                    \
  |  |   88|  1.65M|} while (0)
  |  |  ------------------
  |  |  |  Branch (88:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   55|  1.65M|      }
   56|  1.65M|   }
   57|       |
   58|       |   /* now we proceed to zero successive digits
   59|       |    * from the least significant upwards
   60|       |    */
   61|  12.3M|   for (ix = 0; ix < n->used; ix++) {
  ------------------
  |  Branch (61:17): [True: 10.6M, False: 1.65M]
  ------------------
   62|       |      /* mu = ai * m' mod b
   63|       |       *
   64|       |       * We avoid a double precision multiplication (which isn't required)
   65|       |       * by casting the value down to a mp_digit.  Note this requires
   66|       |       * that W[ix-1] have  the carry cleared (see after the inner loop)
   67|       |       */
   68|  10.6M|      mp_digit mu;
   69|  10.6M|      mu = ((W[ix] & MP_MASK) * rho) & MP_MASK;
  ------------------
  |  |  106|  10.6M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  10.6M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
                    mu = ((W[ix] & MP_MASK) * rho) & MP_MASK;
  ------------------
  |  |  106|  10.6M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  10.6M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   70|       |
   71|       |      /* a = a + mu * m * b**i
   72|       |       *
   73|       |       * This is computed in place and on the fly.  The multiplication
   74|       |       * by b**i is handled by offseting which columns the results
   75|       |       * are added to.
   76|       |       *
   77|       |       * Note the comba method normally doesn't handle carries in the
   78|       |       * inner loop In this case we fix the carry from the previous
   79|       |       * column since the Montgomery reduction requires digits of the
   80|       |       * result (so far) [see above] to work.  This is
   81|       |       * handled by fixing up one carry after the inner loop.  The
   82|       |       * carry fixups are done in order so after these loops the
   83|       |       * first m->used words of W[] have the carries fixed
   84|       |       */
   85|  10.6M|      {
   86|  10.6M|         int iy;
   87|  10.6M|         mp_digit *tmpn;
   88|  10.6M|         mp_word *_W;
   89|       |
   90|       |         /* alias for the digits of the modulus */
   91|  10.6M|         tmpn = n->dp;
   92|       |
   93|       |         /* Alias for the columns set by an offset of ix */
   94|  10.6M|         _W = W + ix;
   95|       |
   96|       |         /* inner loop */
   97|  98.3M|         for (iy = 0; iy < n->used; iy++) {
  ------------------
  |  Branch (97:23): [True: 87.7M, False: 10.6M]
  ------------------
   98|  87.7M|            *_W++ += (mp_word)mu * (mp_word)*tmpn++;
   99|  87.7M|         }
  100|  10.6M|      }
  101|       |
  102|       |      /* now fix carry for next digit, W[ix+1] */
  103|  10.6M|      W[ix + 1] += W[ix] >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|  10.6M|#   define MP_DIGIT_BIT 60
  ------------------
  104|  10.6M|   }
  105|       |
  106|       |   /* now we have to propagate the carries and
  107|       |    * shift the words downward [all those least
  108|       |    * significant digits we zeroed].
  109|       |    */
  110|  1.65M|   {
  111|  1.65M|      mp_digit *tmpx;
  112|  1.65M|      mp_word *_W, *_W1;
  113|       |
  114|       |      /* nox fix rest of carries */
  115|       |
  116|       |      /* alias for current word */
  117|  1.65M|      _W1 = W + ix;
  118|       |
  119|       |      /* alias for next word, where the carry goes */
  120|  1.65M|      _W = W + ++ix;
  121|       |
  122|  12.3M|      for (; ix < ((n->used * 2) + 1); ix++) {
  ------------------
  |  Branch (122:14): [True: 10.6M, False: 1.65M]
  ------------------
  123|  10.6M|         *_W++ += *_W1++ >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|  10.6M|#   define MP_DIGIT_BIT 60
  ------------------
  124|  10.6M|      }
  125|       |
  126|       |      /* copy out, A = A/b**n
  127|       |       *
  128|       |       * The result is A/b**n but instead of converting from an
  129|       |       * array of mp_word to mp_digit than calling mp_rshd
  130|       |       * we just copy them in the right order
  131|       |       */
  132|       |
  133|       |      /* alias for destination word */
  134|  1.65M|      tmpx = x->dp;
  135|       |
  136|       |      /* alias for shifted double precision result */
  137|  1.65M|      _W = W + n->used;
  138|       |
  139|  13.9M|      for (ix = 0; ix < (n->used + 1); ix++) {
  ------------------
  |  Branch (139:20): [True: 12.3M, False: 1.65M]
  ------------------
  140|  12.3M|         *tmpx++ = *_W++ & (mp_word)MP_MASK;
  ------------------
  |  |  106|  12.3M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  12.3M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  141|  12.3M|      }
  142|       |
  143|       |      /* zero oldused digits, if the input a was larger than
  144|       |       * m->used+1 we'll have to clear the digits
  145|       |       */
  146|  1.65M|      MP_ZERO_DIGITS(tmpx, olduse - ix);
  ------------------
  |  |   89|  1.65M|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  1.65M|do {                                                    \
  |  |   91|  1.65M|   int zd_ = (digits);                                  \
  |  |   92|  1.65M|   mp_digit* zm_ = (mem);                               \
  |  |   93|  9.40M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 7.75M, False: 1.65M]
  |  |  ------------------
  |  |   94|  7.75M|      *zm_++ = 0;                                       \
  |  |   95|  7.75M|   }                                                    \
  |  |   96|  1.65M|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
  147|  1.65M|   }
  148|       |
  149|       |   /* set the max used and clamp */
  150|  1.65M|   x->used = n->used + 1;
  151|  1.65M|   mp_clamp(x);
  152|       |
  153|       |   /* if A >= m then A = A - m */
  154|  1.65M|   if (mp_cmp_mag(x, n) != MP_LT) {
  ------------------
  |  |  154|  1.65M|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (154:8): [True: 871, False: 1.65M]
  ------------------
  155|    871|      return s_mp_sub(x, n, x);
  156|    871|   }
  157|  1.65M|   return MP_OKAY;
  ------------------
  |  |  161|  1.65M|#define MP_OKAY       0   /* no error */
  ------------------
  158|  1.65M|}

s_mp_mul_digs:
   11|  42.3k|{
   12|  42.3k|   mp_int  t;
   13|  42.3k|   mp_err  err;
   14|  42.3k|   int     pa, pb, ix, iy;
   15|  42.3k|   mp_digit u;
   16|  42.3k|   mp_word r;
   17|  42.3k|   mp_digit tmpx, *tmpt, *tmpy;
   18|       |
   19|       |   /* can we use the fast multiplier? */
   20|  42.3k|   if ((digs < MP_WARRAY) &&
  ------------------
  |  |  172|  42.3k|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|  42.3k|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  42.3k|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (20:8): [True: 42.3k, False: 0]
  ------------------
   21|  42.3k|       (MP_MIN(a->used, b->used) < MP_MAXFAST)) {
  ------------------
  |  |  156|  42.3k|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 36.4k, False: 5.90k]
  |  |  ------------------
  ------------------
                     (MP_MIN(a->used, b->used) < MP_MAXFAST)) {
  ------------------
  |  |  168|  42.3k|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|  42.3k|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|  42.3k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (21:8): [True: 42.3k, False: 0]
  ------------------
   22|  42.3k|      return s_mp_mul_digs_fast(a, b, c, digs);
   23|  42.3k|   }
   24|       |
   25|      0|   if ((err = mp_init_size(&t, digs)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (25:8): [True: 0, False: 0]
  ------------------
   26|      0|      return err;
   27|      0|   }
   28|      0|   t.used = digs;
   29|       |
   30|       |   /* compute the digits of the product directly */
   31|      0|   pa = a->used;
   32|      0|   for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (32:17): [True: 0, False: 0]
  ------------------
   33|       |      /* set the carry to zero */
   34|      0|      u = 0;
   35|       |
   36|       |      /* limit ourselves to making digs digits of output */
   37|      0|      pb = MP_MIN(b->used, digs - ix);
  ------------------
  |  |  156|      0|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   38|       |
   39|       |      /* setup some aliases */
   40|       |      /* copy of the digit from a used within the nested loop */
   41|      0|      tmpx = a->dp[ix];
   42|       |
   43|       |      /* an alias for the destination shifted ix places */
   44|      0|      tmpt = t.dp + ix;
   45|       |
   46|       |      /* an alias for the digits of b */
   47|      0|      tmpy = b->dp;
   48|       |
   49|       |      /* compute the columns of the output and propagate the carry */
   50|      0|      for (iy = 0; iy < pb; iy++) {
  ------------------
  |  Branch (50:20): [True: 0, False: 0]
  ------------------
   51|       |         /* compute the column as a mp_word */
   52|      0|         r       = (mp_word)*tmpt +
   53|      0|                   ((mp_word)tmpx * (mp_word)*tmpy++) +
   54|      0|                   (mp_word)u;
   55|       |
   56|       |         /* the new column is the lower part of the result */
   57|      0|         *tmpt++ = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   58|       |
   59|       |         /* get the carry word from the result */
   60|      0|         u       = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
   61|      0|      }
   62|       |      /* set carry if it is placed below digs */
   63|      0|      if ((ix + iy) < digs) {
  ------------------
  |  Branch (63:11): [True: 0, False: 0]
  ------------------
   64|      0|         *tmpt = u;
   65|      0|      }
   66|      0|   }
   67|       |
   68|      0|   mp_clamp(&t);
   69|      0|   mp_exch(&t, c);
   70|       |
   71|      0|   mp_clear(&t);
   72|      0|   return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   73|      0|}

s_mp_mul_digs_fast:
   23|  3.55M|{
   24|  3.55M|   int      olduse, pa, ix, iz;
   25|  3.55M|   mp_err   err;
   26|  3.55M|   mp_digit W[MP_WARRAY];
   27|  3.55M|   mp_word  _W;
   28|       |
   29|       |   /* grow the destination as required */
   30|  3.55M|   if (c->alloc < digs) {
  ------------------
  |  Branch (30:8): [True: 9.65k, False: 3.54M]
  ------------------
   31|  9.65k|      if ((err = mp_grow(c, digs)) != MP_OKAY) {
  ------------------
  |  |  161|  9.65k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (31:11): [True: 0, False: 9.65k]
  ------------------
   32|      0|         return err;
   33|      0|      }
   34|  9.65k|   }
   35|       |
   36|       |   /* number of output digits to produce */
   37|  3.55M|   pa = MP_MIN(digs, a->used + b->used);
  ------------------
  |  |  156|  3.55M|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 16.8k, False: 3.53M]
  |  |  ------------------
  ------------------
   38|       |
   39|       |   /* clear the carry */
   40|  3.55M|   _W = 0;
   41|   143M|   for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (41:17): [True: 140M, False: 3.55M]
  ------------------
   42|   140M|      int      tx, ty;
   43|   140M|      int      iy;
   44|   140M|      mp_digit *tmpx, *tmpy;
   45|       |
   46|       |      /* get offsets into the two bignums */
   47|   140M|      ty = MP_MIN(b->used-1, ix);
  ------------------
  |  |  156|   140M|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 48.2M, False: 91.9M]
  |  |  ------------------
  ------------------
   48|   140M|      tx = ix - ty;
   49|       |
   50|       |      /* setup temp aliases */
   51|   140M|      tmpx = a->dp + tx;
   52|   140M|      tmpy = b->dp + ty;
   53|       |
   54|       |      /* this is the number of times the loop will iterrate, essentially
   55|       |         while (tx++ < a->used && ty-- >= 0) { ... }
   56|       |       */
   57|   140M|      iy = MP_MIN(a->used-tx, ty+1);
  ------------------
  |  |  156|   140M|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 91.6M, False: 48.4M]
  |  |  ------------------
  ------------------
   58|       |
   59|       |      /* execute loop */
   60|  4.00G|      for (iz = 0; iz < iy; ++iz) {
  ------------------
  |  Branch (60:20): [True: 3.86G, False: 140M]
  ------------------
   61|  3.86G|         _W += (mp_word)*tmpx++ * (mp_word)*tmpy--;
   62|       |
   63|  3.86G|      }
   64|       |
   65|       |      /* store term */
   66|   140M|      W[ix] = (mp_digit)_W & MP_MASK;
  ------------------
  |  |  106|   140M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   140M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   67|       |
   68|       |      /* make next carry */
   69|   140M|      _W = _W >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|   140M|#   define MP_DIGIT_BIT 60
  ------------------
   70|   140M|   }
   71|       |
   72|       |   /* setup dest */
   73|  3.55M|   olduse  = c->used;
   74|  3.55M|   c->used = pa;
   75|       |
   76|  3.55M|   {
   77|  3.55M|      mp_digit *tmpc;
   78|  3.55M|      tmpc = c->dp;
   79|   143M|      for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (79:20): [True: 140M, False: 3.55M]
  ------------------
   80|       |         /* now extract the previous digit [below the carry] */
   81|   140M|         *tmpc++ = W[ix];
   82|   140M|      }
   83|       |
   84|       |      /* clear unused digits [that existed in the old copy of c] */
   85|  3.55M|      MP_ZERO_DIGITS(tmpc, olduse - ix);
  ------------------
  |  |   89|  3.55M|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  3.55M|do {                                                    \
  |  |   91|  3.55M|   int zd_ = (digits);                                  \
  |  |   92|  3.55M|   mp_digit* zm_ = (mem);                               \
  |  |   93|  3.55M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 3.55M]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|  3.55M|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   86|  3.55M|   }
   87|  3.55M|   mp_clamp(c);
   88|  3.55M|   return MP_OKAY;
  ------------------
  |  |  161|  3.55M|#define MP_OKAY       0   /* no error */
  ------------------
   89|  3.55M|}

s_mp_mul_high_digs:
   10|  42.3k|{
   11|  42.3k|   mp_int   t;
   12|  42.3k|   int      pa, pb, ix, iy;
   13|  42.3k|   mp_err   err;
   14|  42.3k|   mp_digit u;
   15|  42.3k|   mp_word  r;
   16|  42.3k|   mp_digit tmpx, *tmpt, *tmpy;
   17|       |
   18|       |   /* can we use the fast multiplier? */
   19|  42.3k|   if (MP_HAS(S_MP_MUL_HIGH_DIGS_FAST)
  ------------------
  |  |  150|  84.6k|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|  42.3k|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|  42.3k|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   20|  42.3k|       && ((a->used + b->used + 1) < MP_WARRAY)
  ------------------
  |  |  172|  42.3k|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|  42.3k|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|  42.3k|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (20:11): [True: 42.3k, False: 0]
  ------------------
   21|  42.3k|       && (MP_MIN(a->used, b->used) < MP_MAXFAST)) {
  ------------------
  |  |  156|  42.3k|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 42.1k, False: 196]
  |  |  ------------------
  ------------------
                     && (MP_MIN(a->used, b->used) < MP_MAXFAST)) {
  ------------------
  |  |  168|  42.3k|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|  42.3k|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|  42.3k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (21:11): [True: 42.3k, False: 0]
  ------------------
   22|  42.3k|      return s_mp_mul_high_digs_fast(a, b, c, digs);
   23|  42.3k|   }
   24|       |
   25|      0|   if ((err = mp_init_size(&t, a->used + b->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (25:8): [True: 0, False: 0]
  ------------------
   26|      0|      return err;
   27|      0|   }
   28|      0|   t.used = a->used + b->used + 1;
   29|       |
   30|      0|   pa = a->used;
   31|      0|   pb = b->used;
   32|      0|   for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (32:17): [True: 0, False: 0]
  ------------------
   33|       |      /* clear the carry */
   34|      0|      u = 0;
   35|       |
   36|       |      /* left hand side of A[ix] * B[iy] */
   37|      0|      tmpx = a->dp[ix];
   38|       |
   39|       |      /* alias to the address of where the digits will be stored */
   40|      0|      tmpt = &(t.dp[digs]);
   41|       |
   42|       |      /* alias for where to read the right hand side from */
   43|      0|      tmpy = b->dp + (digs - ix);
   44|       |
   45|      0|      for (iy = digs - ix; iy < pb; iy++) {
  ------------------
  |  Branch (45:28): [True: 0, False: 0]
  ------------------
   46|       |         /* calculate the double precision result */
   47|      0|         r       = (mp_word)*tmpt +
   48|      0|                   ((mp_word)tmpx * (mp_word)*tmpy++) +
   49|      0|                   (mp_word)u;
   50|       |
   51|       |         /* get the lower part */
   52|      0|         *tmpt++ = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   53|       |
   54|       |         /* carry the carry */
   55|      0|         u       = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
   56|      0|      }
   57|      0|      *tmpt = u;
   58|      0|   }
   59|      0|   mp_clamp(&t);
   60|      0|   mp_exch(&t, c);
   61|      0|   mp_clear(&t);
   62|      0|   return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   63|      0|}

s_mp_mul_high_digs_fast:
   16|  42.3k|{
   17|  42.3k|   int     olduse, pa, ix, iz;
   18|  42.3k|   mp_err   err;
   19|  42.3k|   mp_digit W[MP_WARRAY];
   20|  42.3k|   mp_word  _W;
   21|       |
   22|       |   /* grow the destination as required */
   23|  42.3k|   pa = a->used + b->used;
   24|  42.3k|   if (c->alloc < pa) {
  ------------------
  |  Branch (24:8): [True: 42.3k, False: 0]
  ------------------
   25|  42.3k|      if ((err = mp_grow(c, pa)) != MP_OKAY) {
  ------------------
  |  |  161|  42.3k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (25:11): [True: 0, False: 42.3k]
  ------------------
   26|      0|         return err;
   27|      0|      }
   28|  42.3k|   }
   29|       |
   30|       |   /* number of output digits to produce */
   31|  42.3k|   pa = a->used + b->used;
   32|  42.3k|   _W = 0;
   33|   326k|   for (ix = digs; ix < pa; ix++) {
  ------------------
  |  Branch (33:20): [True: 284k, False: 42.3k]
  ------------------
   34|   284k|      int      tx, ty, iy;
   35|   284k|      mp_digit *tmpx, *tmpy;
   36|       |
   37|       |      /* get offsets into the two bignums */
   38|   284k|      ty = MP_MIN(b->used-1, ix);
  ------------------
  |  |  156|   284k|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 241k, False: 42.4k]
  |  |  ------------------
  ------------------
   39|   284k|      tx = ix - ty;
   40|       |
   41|       |      /* setup temp aliases */
   42|   284k|      tmpx = a->dp + tx;
   43|   284k|      tmpy = b->dp + ty;
   44|       |
   45|       |      /* this is the number of times the loop will iterrate, essentially its
   46|       |         while (tx++ < a->used && ty-- >= 0) { ... }
   47|       |       */
   48|   284k|      iy = MP_MIN(a->used-tx, ty+1);
  ------------------
  |  |  156|   284k|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 284k, False: 196]
  |  |  ------------------
  ------------------
   49|       |
   50|       |      /* execute loop */
   51|  3.51M|      for (iz = 0; iz < iy; iz++) {
  ------------------
  |  Branch (51:20): [True: 3.22M, False: 284k]
  ------------------
   52|  3.22M|         _W += (mp_word)*tmpx++ * (mp_word)*tmpy--;
   53|  3.22M|      }
   54|       |
   55|       |      /* store term */
   56|   284k|      W[ix] = (mp_digit)_W & MP_MASK;
  ------------------
  |  |  106|   284k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   284k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   57|       |
   58|       |      /* make next carry */
   59|   284k|      _W = _W >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|   284k|#   define MP_DIGIT_BIT 60
  ------------------
   60|   284k|   }
   61|       |
   62|       |   /* setup dest */
   63|  42.3k|   olduse  = c->used;
   64|  42.3k|   c->used = pa;
   65|       |
   66|  42.3k|   {
   67|  42.3k|      mp_digit *tmpc;
   68|       |
   69|  42.3k|      tmpc = c->dp + digs;
   70|   326k|      for (ix = digs; ix < pa; ix++) {
  ------------------
  |  Branch (70:23): [True: 284k, False: 42.3k]
  ------------------
   71|       |         /* now extract the previous digit [below the carry] */
   72|   284k|         *tmpc++ = W[ix];
   73|   284k|      }
   74|       |
   75|       |      /* clear unused digits [that existed in the old copy of c] */
   76|  42.3k|      MP_ZERO_DIGITS(tmpc, olduse - ix);
  ------------------
  |  |   89|  42.3k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  42.3k|do {                                                    \
  |  |   91|  42.3k|   int zd_ = (digits);                                  \
  |  |   92|  42.3k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  42.3k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 42.3k]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|  42.3k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   77|  42.3k|   }
   78|  42.3k|   mp_clamp(c);
   79|  42.3k|   return MP_OKAY;
  ------------------
  |  |  161|  42.3k|#define MP_OKAY       0   /* no error */
  ------------------
   80|  42.3k|}

s_mp_prime_is_divisible:
   12|    144|{
   13|    144|   int      ix;
   14|    144|   mp_err   err;
   15|    144|   mp_digit res;
   16|       |
   17|       |   /* default to not */
   18|    144|   *result = MP_NO;
  ------------------
  |  |  159|    144|#define MP_NO         0
  ------------------
   19|       |
   20|  25.8k|   for (ix = 0; ix < PRIVATE_MP_PRIME_TAB_SIZE; ix++) {
  ------------------
  |  |  633|  25.8k|#  define PRIVATE_MP_PRIME_TAB_SIZE 256
  ------------------
  |  Branch (20:17): [True: 25.7k, False: 96]
  ------------------
   21|       |      /* what is a mod LBL_prime_tab[ix] */
   22|  25.7k|      if ((err = mp_mod_d(a, s_mp_prime_tab[ix], &res)) != MP_OKAY) {
  ------------------
  |  |  161|  25.7k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (22:11): [True: 0, False: 25.7k]
  ------------------
   23|      0|         return err;
   24|      0|      }
   25|       |
   26|       |      /* is the residue zero? */
   27|  25.7k|      if (res == 0u) {
  ------------------
  |  Branch (27:11): [True: 48, False: 25.7k]
  ------------------
   28|     48|         *result = MP_YES;
  ------------------
  |  |  158|     48|#define MP_YES        1
  ------------------
   29|     48|         return MP_OKAY;
  ------------------
  |  |  161|     48|#define MP_OKAY       0   /* no error */
  ------------------
   30|     48|      }
   31|  25.7k|   }
   32|       |
   33|     96|   return MP_OKAY;
  ------------------
  |  |  161|     96|#define MP_OKAY       0   /* no error */
  ------------------
   34|    144|}

s_mp_sqr:
    8|    310|{
    9|    310|   mp_int   t;
   10|    310|   int      ix, iy, pa;
   11|    310|   mp_err   err;
   12|    310|   mp_word  r;
   13|    310|   mp_digit u, tmpx, *tmpt;
   14|       |
   15|    310|   pa = a->used;
   16|    310|   if ((err = mp_init_size(&t, (2 * pa) + 1)) != MP_OKAY) {
  ------------------
  |  |  161|    310|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:8): [True: 0, False: 310]
  ------------------
   17|      0|      return err;
   18|      0|   }
   19|       |
   20|       |   /* default used is maximum possible size */
   21|    310|   t.used = (2 * pa) + 1;
   22|       |
   23|  41.5k|   for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (23:17): [True: 41.2k, False: 310]
  ------------------
   24|       |      /* first calculate the digit at 2*ix */
   25|       |      /* calculate double precision result */
   26|  41.2k|      r = (mp_word)t.dp[2*ix] +
   27|  41.2k|          ((mp_word)a->dp[ix] * (mp_word)a->dp[ix]);
   28|       |
   29|       |      /* store lower part in result */
   30|  41.2k|      t.dp[ix+ix] = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|  41.2k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  41.2k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   31|       |
   32|       |      /* get the carry */
   33|  41.2k|      u           = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|  41.2k|#   define MP_DIGIT_BIT 60
  ------------------
   34|       |
   35|       |      /* left hand side of A[ix] * A[iy] */
   36|  41.2k|      tmpx        = a->dp[ix];
   37|       |
   38|       |      /* alias for where to store the results */
   39|  41.2k|      tmpt        = t.dp + ((2 * ix) + 1);
   40|       |
   41|  2.76M|      for (iy = ix + 1; iy < pa; iy++) {
  ------------------
  |  Branch (41:25): [True: 2.72M, False: 41.2k]
  ------------------
   42|       |         /* first calculate the product */
   43|  2.72M|         r       = (mp_word)tmpx * (mp_word)a->dp[iy];
   44|       |
   45|       |         /* now calculate the double precision result, note we use
   46|       |          * addition instead of *2 since it's easier to optimize
   47|       |          */
   48|  2.72M|         r       = (mp_word)*tmpt + r + r + (mp_word)u;
   49|       |
   50|       |         /* store lower part */
   51|  2.72M|         *tmpt++ = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|  2.72M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  2.72M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   52|       |
   53|       |         /* get carry */
   54|  2.72M|         u       = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|  2.72M|#   define MP_DIGIT_BIT 60
  ------------------
   55|  2.72M|      }
   56|       |      /* propagate upwards */
   57|  70.3k|      while (u != 0uL) {
  ------------------
  |  Branch (57:14): [True: 29.1k, False: 41.2k]
  ------------------
   58|  29.1k|         r       = (mp_word)*tmpt + (mp_word)u;
   59|  29.1k|         *tmpt++ = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|  29.1k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  29.1k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   60|  29.1k|         u       = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|  29.1k|#   define MP_DIGIT_BIT 60
  ------------------
   61|  29.1k|      }
   62|  41.2k|   }
   63|       |
   64|    310|   mp_clamp(&t);
   65|    310|   mp_exch(&t, b);
   66|    310|   mp_clear(&t);
   67|    310|   return MP_OKAY;
  ------------------
  |  |  161|    310|#define MP_OKAY       0   /* no error */
  ------------------
   68|    310|}

s_mp_sqr_fast:
   17|   903k|{
   18|   903k|   int       olduse, pa, ix, iz;
   19|   903k|   mp_digit  W[MP_WARRAY], *tmpx;
   20|   903k|   mp_word   W1;
   21|   903k|   mp_err    err;
   22|       |
   23|       |   /* grow the destination as required */
   24|   903k|   pa = a->used + a->used;
   25|   903k|   if (b->alloc < pa) {
  ------------------
  |  Branch (25:8): [True: 1.03k, False: 902k]
  ------------------
   26|  1.03k|      if ((err = mp_grow(b, pa)) != MP_OKAY) {
  ------------------
  |  |  161|  1.03k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (26:11): [True: 0, False: 1.03k]
  ------------------
   27|      0|         return err;
   28|      0|      }
   29|  1.03k|   }
   30|       |
   31|       |   /* number of output digits to produce */
   32|   903k|   W1 = 0;
   33|  11.0M|   for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (33:17): [True: 10.1M, False: 903k]
  ------------------
   34|  10.1M|      int      tx, ty, iy;
   35|  10.1M|      mp_word  _W;
   36|  10.1M|      mp_digit *tmpy;
   37|       |
   38|       |      /* clear counter */
   39|  10.1M|      _W = 0;
   40|       |
   41|       |      /* get offsets into the two bignums */
   42|  10.1M|      ty = MP_MIN(a->used-1, ix);
  ------------------
  |  |  156|  10.1M|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 5.09M, False: 5.09M]
  |  |  ------------------
  ------------------
   43|  10.1M|      tx = ix - ty;
   44|       |
   45|       |      /* setup temp aliases */
   46|  10.1M|      tmpx = a->dp + tx;
   47|  10.1M|      tmpy = a->dp + ty;
   48|       |
   49|       |      /* this is the number of times the loop will iterrate, essentially
   50|       |         while (tx++ < a->used && ty-- >= 0) { ... }
   51|       |       */
   52|  10.1M|      iy = MP_MIN(a->used-tx, ty+1);
  ------------------
  |  |  156|  10.1M|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 5.09M, False: 5.09M]
  |  |  ------------------
  ------------------
   53|       |
   54|       |      /* now for squaring tx can never equal ty
   55|       |       * we halve the distance since they approach at a rate of 2x
   56|       |       * and we have to round because odd cases need to be executed
   57|       |       */
   58|  10.1M|      iy = MP_MIN(iy, ((ty-tx)+1)>>1);
  ------------------
  |  |  156|  10.1M|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 10.1M]
  |  |  ------------------
  ------------------
   59|       |
   60|       |      /* execute loop */
   61|  28.2M|      for (iz = 0; iz < iy; iz++) {
  ------------------
  |  Branch (61:20): [True: 18.0M, False: 10.1M]
  ------------------
   62|  18.0M|         _W += (mp_word)*tmpx++ * (mp_word)*tmpy--;
   63|  18.0M|      }
   64|       |
   65|       |      /* double the inner product and add carry */
   66|  10.1M|      _W = _W + _W + W1;
   67|       |
   68|       |      /* even columns have the square term in them */
   69|  10.1M|      if (((unsigned)ix & 1u) == 0u) {
  ------------------
  |  Branch (69:11): [True: 5.09M, False: 5.09M]
  ------------------
   70|  5.09M|         _W += (mp_word)a->dp[ix>>1] * (mp_word)a->dp[ix>>1];
   71|  5.09M|      }
   72|       |
   73|       |      /* store it */
   74|  10.1M|      W[ix] = (mp_digit)_W & MP_MASK;
  ------------------
  |  |  106|  10.1M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  10.1M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   75|       |
   76|       |      /* make next carry */
   77|  10.1M|      W1 = _W >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|  10.1M|#   define MP_DIGIT_BIT 60
  ------------------
   78|  10.1M|   }
   79|       |
   80|       |   /* setup dest */
   81|   903k|   olduse  = b->used;
   82|   903k|   b->used = a->used+a->used;
   83|       |
   84|   903k|   {
   85|   903k|      mp_digit *tmpb;
   86|   903k|      tmpb = b->dp;
   87|  11.0M|      for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (87:20): [True: 10.1M, False: 903k]
  ------------------
   88|  10.1M|         *tmpb++ = W[ix] & MP_MASK;
  ------------------
  |  |  106|  10.1M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  10.1M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   89|  10.1M|      }
   90|       |
   91|       |      /* clear unused digits [that existed in the old copy of c] */
   92|   903k|      MP_ZERO_DIGITS(tmpb, olduse - ix);
  ------------------
  |  |   89|   903k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|   903k|do {                                                    \
  |  |   91|   903k|   int zd_ = (digits);                                  \
  |  |   92|   903k|   mp_digit* zm_ = (mem);                               \
  |  |   93|   921k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 18.4k, False: 903k]
  |  |  ------------------
  |  |   94|  18.4k|      *zm_++ = 0;                                       \
  |  |   95|  18.4k|   }                                                    \
  |  |   96|   903k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   93|   903k|   }
   94|   903k|   mp_clamp(b);
   95|   903k|   return MP_OKAY;
  ------------------
  |  |  161|   903k|#define MP_OKAY       0   /* no error */
  ------------------
   96|   903k|}

s_mp_sub:
    8|  4.60M|{
    9|  4.60M|   int    olduse, min, max;
   10|  4.60M|   mp_err err;
   11|       |
   12|       |   /* find sizes */
   13|  4.60M|   min = b->used;
   14|  4.60M|   max = a->used;
   15|       |
   16|       |   /* init result */
   17|  4.60M|   if (c->alloc < max) {
  ------------------
  |  Branch (17:8): [True: 44, False: 4.60M]
  ------------------
   18|     44|      if ((err = mp_grow(c, max)) != MP_OKAY) {
  ------------------
  |  |  161|     44|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (18:11): [True: 0, False: 44]
  ------------------
   19|      0|         return err;
   20|      0|      }
   21|     44|   }
   22|  4.60M|   olduse = c->used;
   23|  4.60M|   c->used = max;
   24|       |
   25|  4.60M|   {
   26|  4.60M|      mp_digit u, *tmpa, *tmpb, *tmpc;
   27|  4.60M|      int i;
   28|       |
   29|       |      /* alias for digit pointers */
   30|  4.60M|      tmpa = a->dp;
   31|  4.60M|      tmpb = b->dp;
   32|  4.60M|      tmpc = c->dp;
   33|       |
   34|       |      /* set carry to zero */
   35|  4.60M|      u = 0;
   36|   103M|      for (i = 0; i < min; i++) {
  ------------------
  |  Branch (36:19): [True: 99.3M, False: 4.60M]
  ------------------
   37|       |         /* T[i] = A[i] - B[i] - U */
   38|  99.3M|         *tmpc = (*tmpa++ - *tmpb++) - u;
   39|       |
   40|       |         /* U = carry bit of T[i]
   41|       |          * Note this saves performing an AND operation since
   42|       |          * if a carry does occur it will propagate all the way to the
   43|       |          * MSB.  As a result a single shift is enough to get the carry
   44|       |          */
   45|  99.3M|         u = *tmpc >> (MP_SIZEOF_BITS(mp_digit) - 1u);
  ------------------
  |  |  167|  99.3M|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
   46|       |
   47|       |         /* Clear carry from T[i] */
   48|  99.3M|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|  99.3M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  99.3M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   49|  99.3M|      }
   50|       |
   51|       |      /* now copy higher words if any, e.g. if A has more digits than B  */
   52|  45.5M|      for (; i < max; i++) {
  ------------------
  |  Branch (52:14): [True: 40.9M, False: 4.60M]
  ------------------
   53|       |         /* T[i] = A[i] - U */
   54|  40.9M|         *tmpc = *tmpa++ - u;
   55|       |
   56|       |         /* U = carry bit of T[i] */
   57|  40.9M|         u = *tmpc >> (MP_SIZEOF_BITS(mp_digit) - 1u);
  ------------------
  |  |  167|  40.9M|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
   58|       |
   59|       |         /* Clear carry from T[i] */
   60|  40.9M|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|  40.9M|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  40.9M|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   61|  40.9M|      }
   62|       |
   63|       |      /* clear digits above used (since we may not have grown result above) */
   64|  4.60M|      MP_ZERO_DIGITS(tmpc, olduse - c->used);
  ------------------
  |  |   89|  4.60M|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  4.60M|do {                                                    \
  |  |   91|  4.60M|   int zd_ = (digits);                                  \
  |  |   92|  4.60M|   mp_digit* zm_ = (mem);                               \
  |  |   93|  4.60M|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 967, False: 4.60M]
  |  |  ------------------
  |  |   94|    967|      *zm_++ = 0;                                       \
  |  |   95|    967|   }                                                    \
  |  |   96|  4.60M|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   65|  4.60M|   }
   66|       |
   67|  4.60M|   mp_clamp(c);
   68|  4.60M|   return MP_OKAY;
  ------------------
  |  |  161|  4.60M|#define MP_OKAY       0   /* no error */
  ------------------
   69|  4.60M|}

mp_set_u32:
  253|    553|    {                                                                                  \
  254|    553|        int i = 0;                                                                     \
  255|    553|        while (b != 0u) {                                                              \
  ------------------
  |  Branch (255:16): [True: 553, False: 0]
  ------------------
  256|    553|            a->dp[i++] = ((mp_digit)b & MP_MASK);                                      \
  ------------------
  |  |  106|    553|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|    553|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  257|    553|            if (MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) { break; }                       \
  ------------------
  |  |  167|    553|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
                          if (MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) { break; }                       \
  ------------------
  |  |   82|    553|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (257:17): [Folded - Ignored]
  ------------------
  258|    553|            b >>= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);         \
  ------------------
  |  |  167|      0|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
                          b >>= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);         \
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
                          b >>= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);         \
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (258:20): [Folded - Ignored]
  ------------------
  259|      0|        }                                                                              \
  260|    553|        a->used = i;                                                                   \
  261|    553|        a->sign = MP_ZPOS;                                                             \
  ------------------
  |  |  151|    553|#define MP_ZPOS       0   /* positive integer */
  ------------------
  262|    553|        MP_ZERO_DIGITS(a->dp + a->used, a->alloc - a->used);                           \
  ------------------
  |  |   89|    553|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|    553|do {                                                    \
  |  |   91|    553|   int zd_ = (digits);                                  \
  |  |   92|    553|   mp_digit* zm_ = (mem);                               \
  |  |   93|  17.6k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 17.1k, False: 553]
  |  |  ------------------
  |  |   94|  17.1k|      *zm_++ = 0;                                       \
  |  |   95|  17.1k|   }                                                    \
  |  |   96|    553|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
  263|    553|    }
mp_get_i32:
  298|     49|    {                                                         \
  299|     49|        utype res = mag(a);                                   \
  300|     49|        return (a->sign == MP_NEG) ? (type)-res : (type)res;  \
  ------------------
  |  |  152|     49|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (300:16): [True: 0, False: 49]
  ------------------
  301|     49|    }
mp_get_mag_u32:
  285|     49|    {                                                                                  \
  286|     49|        unsigned i = MP_MIN((unsigned)a->used, (unsigned)((MP_SIZEOF_BITS(type) + MP_DIGIT_BIT - 1) / MP_DIGIT_BIT)); \
  ------------------
  |  |  156|     49|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 49]
  |  |  ------------------
  ------------------
  287|     49|        type res = 0u;                                                                 \
  288|     49|        while (i --> 0u) {                                                             \
  ------------------
  |  Branch (288:16): [True: 49, False: 0]
  ------------------
  289|     49|            res <<= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);       \
  ------------------
  |  |  167|     49|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
                          res <<= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);       \
  ------------------
  |  |   82|     49|#   define MP_DIGIT_BIT 60
  ------------------
                          res <<= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);       \
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (289:22): [Folded - Ignored]
  ------------------
  290|     49|            res |= (type)a->dp[i];                                                     \
  291|     49|            if (MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) { break; }                       \
  ------------------
  |  |  167|     49|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
                          if (MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) { break; }                       \
  ------------------
  |  |   82|     49|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (291:17): [Folded - Ignored]
  ------------------
  292|     49|        }                                                                              \
  293|     49|        return res;                                                                    \
  294|     49|    }
mp_init_u32:
  274|     49|    {                                                    \
  275|     49|        mp_err err;                                      \
  276|     49|        if ((err = mp_init(a)) != MP_OKAY) {             \
  ------------------
  |  |  161|     49|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (276:13): [True: 0, False: 49]
  ------------------
  277|      0|            return err;                                  \
  278|      0|        }                                                \
  279|     49|        set(a, b);                                       \
  280|     49|        return MP_OKAY;                                  \
  ------------------
  |  |  161|     49|#define MP_OKAY       0   /* no error */
  ------------------
  281|     49|    }

m_mp_init_multi:
   41|  1.11k|{
   42|  1.11k|	mp_int* cur_arg = mp;
   43|  1.11k|	va_list args;
   44|       |
   45|  1.11k|	va_start(args, mp);        /* init args to next argument from caller */
   46|  4.68k|	while (cur_arg != NULL) {
  ------------------
  |  Branch (46:9): [True: 3.57k, False: 1.11k]
  ------------------
   47|  3.57k|		if (mp_init(cur_arg) != MP_OKAY) {
  ------------------
  |  |  161|  3.57k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (47:7): [True: 0, False: 3.57k]
  ------------------
   48|      0|			dropbear_exit("Mem alloc error");
   49|      0|		}
   50|  3.57k|		cur_arg = va_arg(args, mp_int*);
   51|  3.57k|	}
   52|  1.11k|	va_end(args);
   53|  1.11k|}
m_mp_alloc_init_multi:
   56|  2.52k|{
   57|  2.52k|	mp_int** cur_arg = mp;
   58|  2.52k|	va_list args;
   59|       |
   60|  2.52k|	va_start(args, mp);        /* init args to next argument from caller */
   61|  10.2k|	while (cur_arg != NULL) {
  ------------------
  |  Branch (61:9): [True: 7.76k, False: 2.52k]
  ------------------
   62|  7.76k|		*cur_arg = m_malloc(sizeof(mp_int));
   63|  7.76k|		if (mp_init(*cur_arg) != MP_OKAY) {
  ------------------
  |  |  161|  7.76k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (63:7): [True: 0, False: 7.76k]
  ------------------
   64|      0|			dropbear_exit("Mem alloc error");
   65|      0|		}
   66|  7.76k|		cur_arg = va_arg(args, mp_int**);
   67|  7.76k|	}
   68|  2.52k|	va_end(args);
   69|  2.52k|}
m_mp_free_multi:
   72|  1.53k|{
   73|  1.53k|	mp_int** cur_arg = mp;
   74|  1.53k|	va_list args;
   75|       |
   76|  1.53k|	va_start(args, mp);        /* init args to next argument from caller */
   77|  8.73k|	while (cur_arg != NULL) {
  ------------------
  |  Branch (77:9): [True: 7.19k, False: 1.53k]
  ------------------
   78|  7.19k|		if (*cur_arg) {
  ------------------
  |  Branch (78:7): [True: 3.30k, False: 3.89k]
  ------------------
   79|  3.30k|			mp_clear(*cur_arg);
   80|  3.30k|		}
   81|  7.19k|		m_free(*cur_arg);
  ------------------
  |  |   24|  7.19k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   82|  7.19k|		cur_arg = va_arg(args, mp_int**);
   83|  7.19k|	}
   84|  1.53k|	va_end(args);
   85|  1.53k|}
bytes_to_mp:
   87|  1.47k|void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len) {
   88|       |
   89|  1.47k|	if (mp_from_ubin(mp, (unsigned char*)bytes, len) != MP_OKAY) {
  ------------------
  |  |  161|  1.47k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (89:6): [True: 0, False: 1.47k]
  ------------------
   90|      0|		dropbear_exit("Mem alloc error");
   91|      0|	}
   92|  1.47k|}

buf_new:
   41|  1.45k|buffer* buf_new(unsigned int size) {
   42|  1.45k|	buffer* buf;
   43|  1.45k|	if (size > BUF_MAX_SIZE) {
  ------------------
  |  |   35|  1.45k|#define BUF_MAX_SIZE 1000000000
  ------------------
  |  Branch (43:6): [True: 0, False: 1.45k]
  ------------------
   44|      0|		dropbear_exit("buf->size too big");
   45|      0|	}
   46|       |
   47|  1.45k|	buf = (buffer*)m_malloc(sizeof(buffer)+size);
   48|  1.45k|	buf->data = (unsigned char*)buf + sizeof(buffer);
   49|  1.45k|	buf->size = size;
   50|  1.45k|	return buf;
   51|  1.45k|}
buf_free:
   54|  1.46k|void buf_free(buffer* buf) {
   55|  1.46k|	m_free(buf);
  ------------------
  |  |   24|  1.46k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   56|  1.46k|}
buf_incrlen:
  104|   172k|void buf_incrlen(buffer* buf, unsigned int incr) {
  105|   172k|	if (incr > BUF_MAX_INCR || buf->len + incr > buf->size) {
  ------------------
  |  |   34|   344k|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (105:6): [True: 0, False: 172k]
  |  Branch (105:29): [True: 0, False: 172k]
  ------------------
  106|      0|		dropbear_exit("Bad buf_incrlen");
  107|      0|	}
  108|   172k|	buf->len += incr;
  109|   172k|}
buf_setpos:
  111|  1.93k|void buf_setpos(buffer* buf, unsigned int pos) {
  112|       |
  113|  1.93k|	if (pos > buf->len) {
  ------------------
  |  Branch (113:6): [True: 0, False: 1.93k]
  ------------------
  114|      0|		dropbear_exit("Bad buf_setpos");
  115|      0|	}
  116|  1.93k|	buf->pos = pos;
  117|  1.93k|}
buf_incrwritepos:
  120|  1.74k|void buf_incrwritepos(buffer* buf, unsigned int incr) {
  121|  1.74k|	if (incr > BUF_MAX_INCR || buf->pos + incr > buf->size) {
  ------------------
  |  |   34|  3.49k|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (121:6): [True: 0, False: 1.74k]
  |  Branch (121:29): [True: 0, False: 1.74k]
  ------------------
  122|      0|		dropbear_exit("Bad buf_incrwritepos");
  123|      0|	}
  124|  1.74k|	buf->pos += incr;
  125|  1.74k|	if (buf->pos > buf->len) {
  ------------------
  |  Branch (125:6): [True: 1.74k, False: 0]
  ------------------
  126|  1.74k|		buf->len = buf->pos;
  127|  1.74k|	}
  128|  1.74k|}
buf_incrpos:
  131|  28.2k|void buf_incrpos(buffer* buf, unsigned int incr) {
  132|  28.2k|	if (incr > BUF_MAX_INCR 
  ------------------
  |  |   34|  56.4k|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (132:6): [True: 0, False: 28.2k]
  ------------------
  133|  28.2k|		|| (buf->pos + incr) > buf->len) {
  ------------------
  |  Branch (133:6): [True: 0, False: 28.2k]
  ------------------
  134|      0|		dropbear_exit("Bad buf_incrpos");
  135|      0|	}
  136|  28.2k|	buf->pos += incr;
  137|  28.2k|}
buf_decrpos:
  140|  2.80k|void buf_decrpos(buffer* buf, unsigned int decr) {
  141|  2.80k|	if (decr > buf->pos) {
  ------------------
  |  Branch (141:6): [True: 0, False: 2.80k]
  ------------------
  142|      0|		dropbear_exit("Bad buf_decrpos");
  143|      0|	}
  144|  2.80k|	buf->pos -= decr;
  145|  2.80k|}
buf_getbyte:
  148|  1.54k|unsigned char buf_getbyte(buffer* buf) {
  149|       |
  150|       |	/* This check is really just ==, but the >= allows us to check for the
  151|       |	 * bad case of pos > len, which should _never_ happen. */
  152|  1.54k|	if (buf->pos >= buf->len) {
  ------------------
  |  Branch (152:6): [True: 28, False: 1.52k]
  ------------------
  153|     28|		dropbear_exit("Bad buf_getbyte");
  154|     28|	}
  155|  1.52k|	return buf->data[buf->pos++];
  156|  1.54k|}
buf_putbyte:
  169|   171k|void buf_putbyte(buffer* buf, unsigned char val) {
  170|       |
  171|   171k|	if (buf->pos >= buf->len) {
  ------------------
  |  Branch (171:6): [True: 171k, False: 0]
  ------------------
  172|   171k|		buf_incrlen(buf, 1);
  173|   171k|	}
  174|   171k|	buf->data[buf->pos] = val;
  175|   171k|	buf->pos++;
  176|   171k|}
buf_getptr:
  180|  31.7k|unsigned char* buf_getptr(const buffer* buf, unsigned int len) {
  181|       |
  182|  31.7k|	if (len > BUF_MAX_INCR || buf->pos + len > buf->len) {
  ------------------
  |  |   34|  63.4k|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (182:6): [True: 0, False: 31.7k]
  |  Branch (182:28): [True: 361, False: 31.3k]
  ------------------
  183|    361|		dropbear_exit("Bad buf_getptr");
  184|    361|	}
  185|  31.3k|	return &buf->data[buf->pos];
  186|  31.7k|}
buf_getwriteptr:
  190|  2.35k|unsigned char* buf_getwriteptr(const buffer* buf, unsigned int len) {
  191|       |
  192|  2.35k|	if (len > BUF_MAX_INCR || buf->pos + len > buf->size) {
  ------------------
  |  |   34|  4.71k|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (192:6): [True: 0, False: 2.35k]
  |  Branch (192:28): [True: 0, False: 2.35k]
  ------------------
  193|      0|		dropbear_exit("Bad buf_getwriteptr");
  194|      0|	}
  195|  2.35k|	return &buf->data[buf->pos];
  196|  2.35k|}
buf_getstring:
  201|  6.90k|char* buf_getstring(buffer* buf, unsigned int *retlen) {
  202|       |
  203|  6.90k|	unsigned int len;
  204|  6.90k|	char* ret;
  205|  6.90k|	void* src = NULL;
  206|  6.90k|	len = buf_getint(buf);
  207|  6.90k|	if (len > MAX_STRING_LEN) {
  ------------------
  |  |  228|  6.90k|#define MAX_STRING_LEN (MAX(MAX_CMD_LEN, 2400)) /* Sun SSH needs 2400 for algos,
  ------------------
  |  Branch (207:6): [True: 37, False: 6.87k]
  ------------------
  208|     37|		dropbear_exit("String too long");
  209|     37|	}
  210|       |
  211|  6.87k|	if (retlen != NULL) {
  ------------------
  |  Branch (211:6): [True: 6.77k, False: 91]
  ------------------
  212|  6.77k|		*retlen = len;
  213|  6.77k|	}
  214|  6.87k|	src = buf_getptr(buf, len);
  215|  6.87k|	ret = m_malloc(len+1);
  216|  6.87k|	memcpy(ret, src, len);
  217|  6.87k|	buf_incrpos(buf, len);
  218|  6.87k|	ret[len] = '\0';
  219|       |
  220|  6.87k|	return ret;
  221|  6.90k|}
buf_getstringbuf:
  246|    646|buffer * buf_getstringbuf(buffer *buf) {
  247|    646|	return buf_getstringbuf_int(buf, 0);
  248|    646|}
buf_getint:
  263|  15.2k|unsigned int buf_getint(buffer* buf) {
  264|  15.2k|	unsigned int ret;
  265|       |
  266|  15.2k|	LOAD32H(ret, buf_getptr(buf, 4));
  ------------------
  |  |   66|  15.2k|#define LOAD32H(x, y)                           \
  |  |   67|  15.2k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  15.2k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  15.2k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  267|  15.2k|	buf_incrpos(buf, 4);
  268|  15.2k|	return ret;
  269|  15.2k|}
buf_putint:
  272|     64|void buf_putint(buffer* buf, int unsigned val) {
  273|       |
  274|     64|	STORE32H(val, buf_getwriteptr(buf, 4));
  ------------------
  |  |   62|     64|#define STORE32H(x, y)                          \
  |  |   63|     64|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|     64|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|     64|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  275|     64|	buf_incrwritepos(buf, 4);
  276|       |
  277|     64|}
buf_putstring:
  280|      1|void buf_putstring(buffer* buf, const char* str, unsigned int len) {
  281|       |	
  282|      1|	buf_putint(buf, len);
  283|      1|	buf_putbytes(buf, (const unsigned char*)str, len);
  284|       |
  285|      1|}
buf_putbytes:
  294|    906|void buf_putbytes(buffer *buf, const unsigned char *bytes, unsigned int len) {
  295|    906|	memcpy(buf_getwriteptr(buf, len), bytes, len);
  296|    906|	buf_incrwritepos(buf, len);
  297|    906|}
buf_getmpint:
  347|  4.20k|int buf_getmpint(buffer* buf, mp_int* mp) {
  348|       |
  349|  4.20k|	unsigned int len;
  350|  4.20k|	len = buf_getint(buf);
  351|       |	
  352|  4.20k|	if (len == 0) {
  ------------------
  |  Branch (352:6): [True: 911, False: 3.29k]
  ------------------
  353|    911|		mp_zero(mp);
  354|    911|		return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    911|#define DROPBEAR_SUCCESS 0
  ------------------
  355|    911|	}
  356|       |
  357|  3.29k|	if (len > BUF_MAX_MPINT) {
  ------------------
  |  |   38|  3.29k|#define BUF_MAX_MPINT (8240 / 8)
  ------------------
  |  Branch (357:6): [True: 67, False: 3.22k]
  ------------------
  358|     67|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|     67|#define DROPBEAR_FAILURE -1
  ------------------
  359|     67|	}
  360|       |
  361|       |	/* check for negative */
  362|  3.22k|	if (*buf_getptr(buf, 1) & (1 << (CHAR_BIT-1))) {
  ------------------
  |  Branch (362:6): [True: 9, False: 3.22k]
  ------------------
  363|      9|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      9|#define DROPBEAR_FAILURE -1
  ------------------
  364|      9|	}
  365|       |
  366|  3.22k|	if (mp_from_ubin(mp, buf_getptr(buf, len), len) != MP_OKAY) {
  ------------------
  |  |  161|  3.22k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (366:6): [True: 0, False: 3.22k]
  ------------------
  367|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  368|      0|	}
  369|       |
  370|  3.22k|	buf_incrpos(buf, len);
  371|  3.22k|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  3.22k|#define DROPBEAR_SUCCESS 0
  ------------------
  372|  3.22k|}
buffer.c:buf_getstringbuf_int:
  224|    646|static buffer * buf_getstringbuf_int(buffer *buf, int incllen) {
  225|    646|	buffer *ret = NULL;
  226|    646|	unsigned int len = buf_getint(buf);
  227|    646|	int extra = 0;
  228|    646|	if (len > MAX_STRING_LEN) {
  ------------------
  |  |  228|    646|#define MAX_STRING_LEN (MAX(MAX_CMD_LEN, 2400)) /* Sun SSH needs 2400 for algos,
  ------------------
  |  Branch (228:6): [True: 29, False: 617]
  ------------------
  229|     29|		dropbear_exit("String too long");
  230|     29|	}
  231|    617|	if (incllen) {
  ------------------
  |  Branch (231:6): [True: 0, False: 617]
  ------------------
  232|      0|		extra = 4;
  233|      0|	}
  234|    617|	ret = buf_new(len+extra);
  235|    617|	if (incllen) {
  ------------------
  |  Branch (235:6): [True: 0, False: 617]
  ------------------
  236|      0|		buf_putint(ret, len);
  237|      0|	}
  238|    617|	memcpy(buf_getwriteptr(ret, len), buf_getptr(buf, len), len);
  239|    617|	buf_incrpos(buf, len);
  240|    617|	buf_incrlen(ret, len);
  241|    617|	buf_setpos(ret, 0);
  242|    617|	return ret;
  243|    646|}

crypto_init:
   21|      1|void crypto_init() {
   22|       |
   23|      1|	const struct ltc_cipher_descriptor *regciphers[] = {
   24|      1|#if DROPBEAR_AES
   25|      1|		&aes_desc,
   26|      1|#endif
   27|       |#if DROPBEAR_3DES
   28|       |		&des3_desc,
   29|       |#endif
   30|      1|		NULL
   31|      1|	};
   32|       |
   33|      1|	const struct ltc_hash_descriptor *reghashes[] = {
   34|      1|#if DROPBEAR_SHA1_HMAC
   35|      1|		&sha1_desc,
   36|      1|#endif
   37|      1|#if DROPBEAR_SHA256
   38|      1|		&sha256_desc,
   39|      1|#endif
   40|      1|#if DROPBEAR_SHA384
   41|      1|		&sha384_desc,
   42|      1|#endif
   43|      1|#if DROPBEAR_SHA512
   44|      1|		&sha512_desc,
   45|      1|#endif
   46|      1|		NULL
   47|      1|	};
   48|      1|	int i;
   49|       |
   50|      2|	for (i = 0; regciphers[i] != NULL; i++) {
  ------------------
  |  Branch (50:14): [True: 1, False: 1]
  ------------------
   51|      1|		if (register_cipher(regciphers[i]) == -1) {
  ------------------
  |  Branch (51:7): [True: 0, False: 1]
  ------------------
   52|      0|			dropbear_exit("Error registering crypto");
   53|      0|		}
   54|      1|	}
   55|       |
   56|      5|	for (i = 0; reghashes[i] != NULL; i++) {
  ------------------
  |  Branch (56:14): [True: 4, False: 1]
  ------------------
   57|      4|		if (register_hash(reghashes[i]) == -1) {
  ------------------
  |  Branch (57:7): [True: 0, False: 4]
  ------------------
   58|      0|			dropbear_exit("Error registering crypto");
   59|      0|		}
   60|      4|	}
   61|       |
   62|      1|#if DROPBEAR_LTC_PRNG
   63|      1|	dropbear_ltc_prng = register_prng(&dropbear_prng_desc);
   64|      1|	if (dropbear_ltc_prng == -1) {
  ------------------
  |  Branch (64:6): [True: 0, False: 1]
  ------------------
   65|      0|		dropbear_exit("Error registering crypto");
   66|      0|	}
   67|      1|#endif
   68|       |
   69|      1|	mp_rand_source(dropbear_rand_source);
   70|       |
   71|      1|#if DROPBEAR_ECC
   72|      1|	ltc_mp = ltm_desc;
   73|      1|	dropbear_ecc_fill_dp();
   74|      1|#endif
   75|      1|}
crypto_desc.c:dropbear_rand_source:
   13|  3.78k|static mp_err dropbear_rand_source(void* out, size_t size) {
   14|  3.78k|	genrandom((unsigned char*)out, (unsigned int)size);
   15|  3.78k|	return MP_OKAY;
  ------------------
  |  |  161|  3.78k|#define MP_OKAY       0   /* no error */
  ------------------
   16|  3.78k|}

dropbear_ed25519_verify:
  466|     78|{
  467|     78|  hash_state hs;
  468|     78|  u8 t[32],h[64];
  469|     78|  gf p[4],q[4];
  470|       |
  471|     78|  if (slen < 64) return -1;
  ------------------
  |  Branch (471:7): [True: 0, False: 78]
  ------------------
  472|       |
  473|     78|  if (unpackneg(q,pk)) return -1;
  ------------------
  |  Branch (473:7): [True: 19, False: 59]
  ------------------
  474|       |
  475|     59|  sha512_init(&hs);
  476|     59|  sha512_process(&hs,s,32);
  477|     59|  sha512_process(&hs,pk,32);
  478|     59|  sha512_process(&hs,m,mlen);
  479|     59|  sha512_done(&hs,h);
  480|       |
  481|     59|  reduce(h);
  482|     59|  scalarmult(p,q,h);
  483|       |
  484|     59|  scalarbase(q,s + 32);
  485|     59|  add(p,q);
  486|     59|  pack(t,p);
  487|       |
  488|     59|  if (crypto_verify_32(s, t))
  ------------------
  |  Branch (488:7): [True: 57, False: 2]
  ------------------
  489|     57|    return -1;
  490|       |
  491|      2|  return 0;
  492|     59|}
curve25519.c:unpack25519:
  150|     78|{
  151|     78|  int i;
  152|  1.24k|  FOR(i,16) o[i]=n[2*i]+((i64)n[2*i+1]<<8);
  ------------------
  |  |   34|  1.32k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 1.24k, False: 78]
  |  |  ------------------
  ------------------
  153|     78|  o[15]&=0x7fff;
  154|     78|}
curve25519.c:sel25519:
   96|   242k|{
   97|   242k|  i64 t,i,c=~(b-1);
   98|  3.88M|  FOR(i,16) {
  ------------------
  |  |   34|  4.12M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 3.88M, False: 242k]
  |  |  ------------------
  ------------------
   99|  3.88M|    t= c&(p[i]^q[i]);
  100|  3.88M|    p[i]^=t;
  101|  3.88M|    q[i]^=t;
  102|  3.88M|  }
  103|   242k|}
curve25519.c:A:
  157|   302k|{
  158|   302k|  int i;
  159|  4.83M|  FOR(i,16) o[i]=a[i]+b[i];
  ------------------
  |  |   34|  5.14M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 4.83M, False: 302k]
  |  |  ------------------
  ------------------
  160|   302k|}
curve25519.c:Z:
  163|   242k|{
  164|   242k|  int i;
  165|  3.87M|  FOR(i,16) o[i]=a[i]-b[i];
  ------------------
  |  |   34|  4.11M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 3.87M, False: 242k]
  |  |  ------------------
  ------------------
  166|   242k|}
curve25519.c:S:
  180|  34.9k|{
  181|  34.9k|  M(o,a,a);
  182|  34.9k|}
curve25519.c:M:
  169|   614k|{
  170|   614k|  i64 i,j,t[31];
  171|  19.0M|  FOR(i,31) t[i]=0;
  ------------------
  |  |   34|  19.6M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 19.0M, False: 614k]
  |  |  ------------------
  ------------------
  172|   157M|  FOR(i,16) FOR(j,16) t[i+j]+=a[i]*b[j];
  ------------------
  |  |   34|  10.4M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 9.83M, False: 614k]
  |  |  ------------------
  ------------------
                FOR(i,16) FOR(j,16) t[i+j]+=a[i]*b[j];
  ------------------
  |  |   34|   167M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 157M, False: 9.83M]
  |  |  ------------------
  ------------------
  173|  9.22M|  FOR(i,15) t[i]+=38*t[i+16];
  ------------------
  |  |   34|  9.83M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 9.22M, False: 614k]
  |  |  ------------------
  ------------------
  174|  9.83M|  FOR(i,16) o[i]=t[i];
  ------------------
  |  |   34|  10.4M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 9.83M, False: 614k]
  |  |  ------------------
  ------------------
  175|   614k|  car25519(o);
  176|   614k|  car25519(o);
  177|   614k|}
curve25519.c:car25519:
   84|  1.23M|{
   85|  1.23M|  int i;
   86|  1.23M|  i64 c;
   87|  19.6M|  FOR(i,16) {
  ------------------
  |  |   34|  20.9M|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 19.6M, False: 1.23M]
  |  |  ------------------
  ------------------
   88|  19.6M|    o[i]+=(1LL<<16);
   89|  19.6M|    c=o[i]>>16;
   90|  19.6M|    o[(i+1)*(i<15)]+=c-1+37*(c-1)*(i==15);
   91|  19.6M|    o[i]-=c<<16;
   92|  19.6M|  }
   93|  1.23M|}
curve25519.c:inv25519:
  185|     59|{
  186|     59|  gf c;
  187|     59|  int a;
  188|    944|  FOR(a,16) c[a]=i[a];
  ------------------
  |  |   34|  1.00k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 944, False: 59]
  |  |  ------------------
  ------------------
  189|  15.0k|  for(a=253;a>=0;a--) {
  ------------------
  |  Branch (189:13): [True: 14.9k, False: 59]
  ------------------
  190|  14.9k|    S(c,c);
  191|  14.9k|    if(a!=2&&a!=4) M(c,c,i);
  ------------------
  |  Branch (191:8): [True: 14.9k, False: 59]
  |  Branch (191:14): [True: 14.8k, False: 59]
  ------------------
  192|  14.9k|  }
  193|    944|  FOR(a,16) o[a]=c[a];
  ------------------
  |  |   34|  1.00k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 944, False: 59]
  |  |  ------------------
  ------------------
  194|     59|}
curve25519.c:pack25519:
  106|    489|{
  107|    489|  int i,j,b;
  108|    489|  gf m,t;
  109|  7.82k|  FOR(i,16) t[i]=n[i];
  ------------------
  |  |   34|  8.31k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 7.82k, False: 489]
  |  |  ------------------
  ------------------
  110|    489|  car25519(t);
  111|    489|  car25519(t);
  112|    489|  car25519(t);
  113|    978|  FOR(j,2) {
  ------------------
  |  |   34|  1.46k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 978, False: 489]
  |  |  ------------------
  ------------------
  114|    978|    m[0]=t[0]-0xffed;
  115|  14.6k|    for(i=1;i<15;i++) {
  ------------------
  |  Branch (115:13): [True: 13.6k, False: 978]
  ------------------
  116|  13.6k|      m[i]=t[i]-0xffff-((m[i-1]>>16)&1);
  117|  13.6k|      m[i-1]&=0xffff;
  118|  13.6k|    }
  119|    978|    m[15]=t[15]-0x7fff-((m[14]>>16)&1);
  120|    978|    b=(m[15]>>16)&1;
  121|    978|    m[14]&=0xffff;
  122|    978|    sel25519(t,m,1-b);
  123|    978|  }
  124|  7.82k|  FOR(i,16) {
  ------------------
  |  |   34|  8.31k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 7.82k, False: 489]
  |  |  ------------------
  ------------------
  125|  7.82k|    o[2*i]=t[i]&0xff;
  126|  7.82k|    o[2*i+1]=t[i]>>8;
  127|  7.82k|  }
  128|    489|}
curve25519.c:scalarbase:
  331|     59|{
  332|     59|  gf q[4];
  333|     59|  set25519(q[0],X);
  334|     59|  set25519(q[1],Y);
  335|     59|  set25519(q[2],gf1);
  336|     59|  M(q[3],X,Y);
  337|     59|  scalarmult(p,q,s);
  338|     59|}
curve25519.c:set25519:
   77|    727|{
   78|    727|  int i;
   79|  11.6k|  FOR(i,16) r[i]=a[i];
  ------------------
  |  |   34|  12.3k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 11.6k, False: 727]
  |  |  ------------------
  ------------------
   80|    727|}
curve25519.c:pack:
  305|     59|{
  306|     59|  gf tx, ty, zi;
  307|     59|  inv25519(zi, p[2]); 
  308|     59|  M(tx, p[0], zi);
  309|     59|  M(ty, p[1], zi);
  310|     59|  pack25519(r, ty);
  311|     59|  r[31] ^= par25519(tx) << 7;
  312|     59|}
curve25519.c:par25519:
  142|    118|{
  143|    118|  u8 d[32];
  144|    118|  pack25519(d,a);
  145|    118|  return d[0]&1;
  146|    118|}
curve25519.c:reduce:
  385|     59|{
  386|     59|  i64 x[64],i;
  387|  3.77k|  FOR(i,64) x[i] = (u64) r[i];
  ------------------
  |  |   34|  3.83k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 3.77k, False: 59]
  |  |  ------------------
  ------------------
  388|  3.77k|  FOR(i,64) r[i] = 0;
  ------------------
  |  |   34|  3.83k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 3.77k, False: 59]
  |  |  ------------------
  ------------------
  389|     59|  modL(r,x);
  390|     59|}
curve25519.c:modL:
  359|     59|{
  360|     59|  i64 carry,i,j;
  361|  1.94k|  for (i = 63;i >= 32;--i) {
  ------------------
  |  Branch (361:15): [True: 1.88k, False: 59]
  ------------------
  362|  1.88k|    carry = 0;
  363|  39.6k|    for (j = i - 32;j < i - 12;++j) {
  ------------------
  |  Branch (363:21): [True: 37.7k, False: 1.88k]
  ------------------
  364|  37.7k|      x[j] += carry - 16 * x[i] * L[j - (i - 32)];
  365|  37.7k|      carry = (x[j] + 128) >> 8;
  366|  37.7k|      x[j] -= carry << 8;
  367|  37.7k|    }
  368|  1.88k|    x[j] += carry;
  369|  1.88k|    x[i] = 0;
  370|  1.88k|  }
  371|     59|  carry = 0;
  372|  1.88k|  FOR(j,32) {
  ------------------
  |  |   34|  1.94k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 1.88k, False: 59]
  |  |  ------------------
  ------------------
  373|  1.88k|    x[j] += carry - (x[31] >> 4) * L[j];
  374|  1.88k|    carry = x[j] >> 8;
  375|  1.88k|    x[j] &= 255;
  376|  1.88k|  }
  377|  1.88k|  FOR(j,32) x[j] -= carry * L[j];
  ------------------
  |  |   34|  1.94k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 1.88k, False: 59]
  |  |  ------------------
  ------------------
  378|  1.88k|  FOR(i,32) {
  ------------------
  |  |   34|  1.94k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 1.88k, False: 59]
  |  |  ------------------
  ------------------
  379|  1.88k|    x[i+1] += x[i] >> 8;
  380|  1.88k|    r[i] = x[i] & 255;
  381|  1.88k|  }
  382|     59|}
curve25519.c:unpackneg:
  430|     78|{
  431|     78|  gf t, chk, num, den, den2, den4, den6;
  432|     78|  set25519(r[2],gf1);
  433|     78|  unpack25519(r[1],p);
  434|     78|  S(num,r[1]);
  435|     78|  M(den,num,D);
  436|     78|  Z(num,num,r[2]);
  437|     78|  A(den,r[2],den);
  438|       |
  439|     78|  S(den2,den);
  440|     78|  S(den4,den2);
  441|     78|  M(den6,den4,den2);
  442|     78|  M(t,den6,num);
  443|     78|  M(t,t,den);
  444|       |
  445|     78|  pow2523(t,t);
  446|     78|  M(t,t,num);
  447|     78|  M(t,t,den);
  448|     78|  M(t,t,den);
  449|     78|  M(r[0],t,den);
  450|       |
  451|     78|  S(chk,r[0]);
  452|     78|  M(chk,chk,den);
  453|     78|  if (neq25519(chk, num)) M(r[0],r[0],I);
  ------------------
  |  Branch (453:7): [True: 54, False: 24]
  ------------------
  454|       |
  455|     78|  S(chk,r[0]);
  456|     78|  M(chk,chk,den);
  457|     78|  if (neq25519(chk, num)) return -1;
  ------------------
  |  Branch (457:7): [True: 19, False: 59]
  ------------------
  458|       |
  459|     59|  if (par25519(r[0]) == (p[31]>>7)) Z(r[0],gf0,r[0]);
  ------------------
  |  Branch (459:7): [True: 31, False: 28]
  ------------------
  460|       |
  461|     59|  M(r[3],r[0],r[1]);
  462|     59|  return 0;
  463|     78|}
curve25519.c:pow2523:
  198|     78|{
  199|     78|  gf c;
  200|     78|  int a;
  201|  1.24k|  FOR(a,16) c[a]=i[a];
  ------------------
  |  |   34|  1.32k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 1.24k, False: 78]
  |  |  ------------------
  ------------------
  202|  19.6k|  for(a=250;a>=0;a--) {
  ------------------
  |  Branch (202:13): [True: 19.5k, False: 78]
  ------------------
  203|  19.5k|    S(c,c);
  204|  19.5k|    if(a!=1) M(c,c,i);
  ------------------
  |  Branch (204:8): [True: 19.5k, False: 78]
  ------------------
  205|  19.5k|  }
  206|  1.24k|  FOR(a,16) o[a]=c[a];
  ------------------
  |  |   34|  1.32k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 1.24k, False: 78]
  |  |  ------------------
  ------------------
  207|     78|}
curve25519.c:neq25519:
  133|    156|{
  134|    156|  u8 c[32],d[32];
  135|    156|  pack25519(c,a);
  136|    156|  pack25519(d,b);
  137|    156|  return crypto_verify_32(c,d);
  138|    156|}
curve25519.c:scalarmult:
  315|    118|{
  316|    118|  int i;
  317|    118|  set25519(p[0],gf0);
  318|    118|  set25519(p[1],gf1);
  319|    118|  set25519(p[2],gf1);
  320|    118|  set25519(p[3],gf0);
  321|  30.3k|  for (i = 255;i >= 0;--i) {
  ------------------
  |  Branch (321:16): [True: 30.2k, False: 118]
  ------------------
  322|  30.2k|    u8 b = (s[i/8]>>(i&7))&1;
  323|  30.2k|    cswap(p,q,b);
  324|  30.2k|    add(q,p);
  325|  30.2k|    add(p,p);
  326|  30.2k|    cswap(p,q,b);
  327|  30.2k|  }
  328|    118|}
curve25519.c:cswap:
  298|  60.4k|{
  299|  60.4k|  int i;
  300|  60.4k|  FOR(i,4)
  ------------------
  |  |   34|   302k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 241k, False: 60.4k]
  |  |  ------------------
  ------------------
  301|   241k|    sel25519(p[i],q[i],b);
  302|  60.4k|}
curve25519.c:add:
  273|  60.4k|{
  274|  60.4k|  gf a,b,c,d,t,e,f,g,h;
  275|       |  
  276|  60.4k|  Z(a, p[1], p[0]);
  277|  60.4k|  Z(t, q[1], q[0]);
  278|  60.4k|  M(a, a, t);
  279|  60.4k|  A(b, p[0], p[1]);
  280|  60.4k|  A(t, q[0], q[1]);
  281|  60.4k|  M(b, b, t);
  282|  60.4k|  M(c, p[3], q[3]);
  283|  60.4k|  M(c, c, D2);
  284|  60.4k|  M(d, p[2], q[2]);
  285|  60.4k|  A(d, d, d);
  286|  60.4k|  Z(e, b, a);
  287|  60.4k|  Z(f, d, c);
  288|  60.4k|  A(g, d, c);
  289|  60.4k|  A(h, b, a);
  290|       |
  291|  60.4k|  M(p[0], e, f);
  292|  60.4k|  M(p[1], h, g);
  293|  60.4k|  M(p[2], g, f);
  294|  60.4k|  M(p[3], e, h);
  295|  60.4k|}
curve25519.c:crypto_verify_32:
   71|    215|{
   72|    215|  return vn(x,y,32);
   73|    215|}
curve25519.c:vn:
   64|    215|{
   65|    215|  u32 i,d = 0;
   66|  6.88k|  FOR(i,n) d |= x[i]^y[i];
  ------------------
  |  |   34|  7.09k|#define FOR(i,n) for (i = 0;i < n;++i)
  |  |  ------------------
  |  |  |  Branch (34:29): [True: 6.88k, False: 215]
  |  |  ------------------
  ------------------
   67|    215|  return (1 & ((d - 1) >> 8)) - 1;
   68|    215|}

m_burn:
    5|  4.23k|void m_burn(void *data, unsigned int len) {
    6|       |
    7|       |#if defined(HAVE_MEMSET_S)
    8|       |	memset_s(data, len, 0x0, len);
    9|       |#elif defined(HAVE_EXPLICIT_BZERO)
   10|  4.23k|	explicit_bzero(data, len);
   11|       |#else
   12|       |	/* This must be volatile to avoid compiler optimisation */
   13|       |	volatile void *p = data;
   14|       |	memset((void*)p, 0x0, len);
   15|       |#endif
   16|  4.23k|}

m_calloc:
    5|  1.68M|void * m_calloc(size_t nmemb, size_t size) {
    6|  1.68M|    if (SIZE_T_MAX / nmemb < size) {
  ------------------
  |  |  166|  1.68M|#define SIZE_T_MAX ULONG_MAX
  ------------------
  |  Branch (6:9): [True: 0, False: 1.68M]
  ------------------
    7|      0|        dropbear_exit("m_calloc failed");
    8|      0|    }
    9|  1.68M|    return m_malloc(nmemb*size);
   10|  1.68M|}
m_malloc_set_epoch:
   76|  2.86k|void m_malloc_set_epoch(unsigned int epoch) {
   77|  2.86k|    current_epoch = epoch;
   78|  2.86k|}
m_malloc_free_epoch:
   80|  2.86k|void m_malloc_free_epoch(unsigned int epoch, int dofree) {
   81|  2.86k|    struct dbmalloc_header* header;
   82|  2.86k|    struct dbmalloc_header* nextheader = NULL;
   83|  2.86k|    struct dbmalloc_header* oldstaple = staple;
   84|  2.86k|    staple = NULL;
   85|       |    /* free allocations from this epoch, create a new staple-anchored list from
   86|       |    the remainder */
   87|  10.8k|    for (header = oldstaple; header; header = nextheader)
  ------------------
  |  Branch (87:30): [True: 8.01k, False: 2.86k]
  ------------------
   88|  8.01k|    {
   89|  8.01k|        nextheader = header->next;
   90|  8.01k|        if (header->epoch == epoch) {
  ------------------
  |  Branch (90:13): [True: 2.29k, False: 5.72k]
  ------------------
   91|  2.29k|            if (dofree) {
  ------------------
  |  Branch (91:17): [True: 2.29k, False: 0]
  ------------------
   92|  2.29k|                free(header);
   93|  2.29k|            }
   94|  5.72k|        } else {
   95|  5.72k|            header->prev = NULL;
   96|  5.72k|            header->next = NULL;
   97|  5.72k|            put_alloc(header);
   98|  5.72k|        }
   99|  8.01k|    }
  100|  2.86k|}
m_malloc:
  131|  1.70M|void * m_malloc(size_t size) {
  132|  1.70M|    char* mem = NULL;
  133|  1.70M|    struct dbmalloc_header* header = NULL;
  134|       |
  135|  1.70M|    if (size == 0 || size > 1e9) {
  ------------------
  |  Branch (135:9): [True: 0, False: 1.70M]
  |  Branch (135:22): [True: 0, False: 1.70M]
  ------------------
  136|      0|        dropbear_exit("m_malloc failed");
  137|      0|    }
  138|       |
  139|  1.70M|    size = size + sizeof(struct dbmalloc_header);
  140|       |
  141|  1.70M|    mem = calloc(1, size);
  142|  1.70M|    if (mem == NULL) {
  ------------------
  |  Branch (142:9): [True: 0, False: 1.70M]
  ------------------
  143|      0|        dropbear_exit("m_malloc failed");
  144|      0|    }
  145|  1.70M|    header = (struct dbmalloc_header*)mem;
  146|  1.70M|    put_alloc(header);
  147|  1.70M|    header->epoch = current_epoch;
  148|  1.70M|    return &mem[sizeof(struct dbmalloc_header)];
  149|  1.70M|}
m_realloc:
  151|   459k|void * m_realloc(void* ptr, size_t size) {
  152|   459k|    char* mem = NULL;
  153|   459k|    struct dbmalloc_header* header = NULL;
  154|   459k|    if (size == 0 || size > 1e9) {
  ------------------
  |  Branch (154:9): [True: 0, False: 459k]
  |  Branch (154:22): [True: 0, False: 459k]
  ------------------
  155|      0|        dropbear_exit("m_realloc failed");
  156|      0|    }
  157|       |
  158|   459k|    header = get_header(ptr);
  159|   459k|    remove_alloc(header);
  160|       |
  161|   459k|    size = size + sizeof(struct dbmalloc_header);
  162|   459k|    mem = realloc(header, size);
  163|   459k|    if (mem == NULL) {
  ------------------
  |  Branch (163:9): [True: 0, False: 459k]
  ------------------
  164|      0|        dropbear_exit("m_realloc failed");
  165|      0|    }
  166|       |
  167|   459k|    header = (struct dbmalloc_header*)mem;
  168|   459k|    put_alloc(header);
  169|   459k|    return &mem[sizeof(struct dbmalloc_header)];
  170|   459k|}
m_free_direct:
  172|  1.70M|void m_free_direct(void* ptr) {
  173|  1.70M|    struct dbmalloc_header* header = NULL;
  174|  1.70M|    if (!ptr) {
  ------------------
  |  Branch (174:9): [True: 6.26k, False: 1.69M]
  ------------------
  175|  6.26k|        return;
  176|  6.26k|    }
  177|  1.69M|    header = get_header(ptr);
  178|  1.69M|    remove_alloc(header);
  179|  1.69M|    free(header);
  180|  1.69M|}
m_realloc_ltm:
  184|   459k|void * m_realloc_ltm(void* ptr, size_t oldsize, size_t newsize) {
  185|   459k|   (void)oldsize;
  186|   459k|   return m_realloc(ptr, newsize);
  187|   459k|}
m_free_ltm:
  189|  1.27M|void m_free_ltm(void *mem, size_t size) {
  190|  1.27M|   (void)size;
  191|  1.27M|   m_free_direct(mem);
  192|  1.27M|}
dbmalloc.c:put_alloc:
  102|  2.16M|static void put_alloc(struct dbmalloc_header *header) {
  103|  2.16M|    assert(header->next == NULL);
  104|  2.16M|    assert(header->prev == NULL);
  105|  2.16M|    if (staple) {
  ------------------
  |  Branch (105:9): [True: 2.16M, False: 2.86k]
  ------------------
  106|  2.16M|        staple->prev = header;
  107|  2.16M|    }
  108|  2.16M|    header->next = staple;
  109|  2.16M|    staple = header;
  110|  2.16M|}
dbmalloc.c:get_header:
  126|  2.15M|static struct dbmalloc_header* get_header(void* ptr) {
  127|  2.15M|    char* bptr = ptr;
  128|  2.15M|    return (struct dbmalloc_header*)&bptr[-sizeof(struct dbmalloc_header)];
  129|  2.15M|}
dbmalloc.c:remove_alloc:
  112|  2.15M|static void remove_alloc(struct dbmalloc_header *header) {
  113|  2.15M|    if (header->prev) {
  ------------------
  |  Branch (113:9): [True: 1.41M, False: 743k]
  ------------------
  114|  1.41M|        header->prev->next = header->next;
  115|  1.41M|    }
  116|  2.15M|    if (header->next) {
  ------------------
  |  Branch (116:9): [True: 2.15M, False: 0]
  ------------------
  117|  2.15M|        header->next->prev = header->prev;
  118|  2.15M|    }
  119|  2.15M|    if (staple == header) {
  ------------------
  |  Branch (119:9): [True: 743k, False: 1.41M]
  ------------------
  120|   743k|        staple = header->next;
  121|   743k|    }
  122|  2.15M|    header->prev = NULL;
  123|  2.15M|    header->next = NULL;
  124|  2.15M|}

fuzz_seed:
  153|  2.86k|void fuzz_seed(const unsigned char* dat, unsigned int len) {
  154|  2.86k|	hash_state hs;
  155|  2.86k|	sha256_init(&hs);
  156|  2.86k|	sha256_process(&hs, "fuzzfuzzfuzz", strlen("fuzzfuzzfuzz"));
  157|  2.86k|	sha256_process(&hs, dat, len);
  158|  2.86k|	sha256_done(&hs, hashpool);
  159|  2.86k|	counter = 0;
  160|  2.86k|	donerandinit = 1;
  161|  2.86k|}
genrandom:
  316|  3.78k|void genrandom(unsigned char* buf, unsigned int len) {
  317|       |
  318|  3.78k|	hash_state hs;
  319|  3.78k|	unsigned char hash[SHA256_HASH_SIZE];
  320|  3.78k|	unsigned int copylen;
  321|       |
  322|  3.78k|	if (!donerandinit) {
  ------------------
  |  Branch (322:6): [True: 0, False: 3.78k]
  ------------------
  323|      0|		dropbear_exit("seedrandom not done");
  324|      0|	}
  325|       |
  326|  7.56k|	while (len > 0) {
  ------------------
  |  Branch (326:9): [True: 3.78k, False: 3.78k]
  ------------------
  327|  3.78k|		sha256_init(&hs);
  328|  3.78k|		sha256_process(&hs, (void*)hashpool, sizeof(hashpool));
  329|  3.78k|		sha256_process(&hs, (void*)&counter, sizeof(counter));
  330|  3.78k|		sha256_done(&hs, hash);
  331|       |
  332|  3.78k|		counter++;
  333|  3.78k|		if (counter > MAX_COUNTER) {
  ------------------
  |  |   35|  3.78k|#define MAX_COUNTER (1<<30)
  ------------------
  |  Branch (333:7): [True: 0, False: 3.78k]
  ------------------
  334|      0|			seedrandom();
  335|      0|		}
  336|       |
  337|  3.78k|		copylen = MIN(len, SHA256_HASH_SIZE);
  338|  3.78k|		memcpy(buf, hash, copylen);
  339|  3.78k|		len -= copylen;
  340|  3.78k|		buf += copylen;
  341|  3.78k|	}
  342|  3.78k|	m_burn(hash, sizeof(hash));
  343|  3.78k|}

dropbear_exit:
  105|    543|void dropbear_exit(const char* format, ...) {
  106|       |
  107|    543|	va_list param;
  108|       |
  109|    543|	va_start(param, format);
  110|    543|	_dropbear_exit(EXIT_FAILURE, format, param);
  111|      0|	va_end(param);
  112|      0|}
dropbear_log:
  148|    145|void dropbear_log(int priority, const char* format, ...) {
  149|       |
  150|    145|	va_list param;
  151|       |
  152|    145|	va_start(param, format);
  153|    145|	_dropbear_log(priority, format, param);
  154|    145|	va_end(param);
  155|    145|}
disallow_core:
  601|      1|void disallow_core() {
  602|      1|	struct rlimit lim = {0};
  603|      1|	if (getrlimit(RLIMIT_CORE, &lim) < 0) {
  ------------------
  |  Branch (603:6): [True: 0, False: 1]
  ------------------
  604|      0|		TRACE(("getrlimit(RLIMIT_CORE) failed"));
  605|      0|	}
  606|      1|	lim.rlim_cur = 0;
  607|      1|	if (setrlimit(RLIMIT_CORE, &lim) < 0) {
  ------------------
  |  Branch (607:6): [True: 0, False: 1]
  ------------------
  608|      0|		TRACE(("setrlimit(RLIMIT_CORE) failed"));
  609|      0|	}
  610|      1|}
dbutil.c:generic_dropbear_exit:
  115|    543|		va_list param) {
  116|       |
  117|    543|	char fmtbuf[300];
  118|       |
  119|    543|	snprintf(fmtbuf, sizeof(fmtbuf), "Exited: %s", format);
  120|       |
  121|    543|	_dropbear_log(LOG_INFO, fmtbuf, param);
  122|       |
  123|    543|#if DROPBEAR_FUZZ
  124|    543|    if (fuzz.do_jmp) {
  ------------------
  |  Branch (124:9): [True: 543, False: 0]
  ------------------
  125|    543|        longjmp(fuzz.jmp, 1);
  126|    543|    }
  127|      0|#endif
  128|       |
  129|      0|	exit(exitcode);
  130|    543|}

buf_get_dss_pub_key:
   46|    373|int buf_get_dss_pub_key(buffer* buf, dropbear_dss_key *key) {
   47|    373|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    373|#define DROPBEAR_FAILURE -1
  ------------------
   48|       |
   49|    373|	TRACE(("enter buf_get_dss_pub_key"))
   50|    373|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|    373|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 373]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   51|    373|	m_mp_alloc_init_multi(&key->p, &key->q, &key->g, &key->y, NULL);
   52|    373|	key->x = NULL;
   53|       |
   54|    373|	buf_incrpos(buf, 4+SSH_SIGNKEY_DSS_LEN); /* int + "ssh-dss" */
  ------------------
  |  |  111|    373|#define SSH_SIGNKEY_DSS_LEN 7
  ------------------
   55|    373|	if (buf_getmpint(buf, key->p) == DROPBEAR_FAILURE
  ------------------
  |  |  103|    746|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (55:6): [True: 32, False: 341]
  ------------------
   56|    373|	 || buf_getmpint(buf, key->q) == DROPBEAR_FAILURE
  ------------------
  |  |  103|    714|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (56:6): [True: 22, False: 319]
  ------------------
   57|    373|	 || buf_getmpint(buf, key->g) == DROPBEAR_FAILURE
  ------------------
  |  |  103|    692|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (57:6): [True: 7, False: 312]
  ------------------
   58|    373|	 || buf_getmpint(buf, key->y) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|    312|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (58:6): [True: 14, False: 298]
  ------------------
   59|     34|		TRACE(("leave buf_get_dss_pub_key: failed reading mpints"))
   60|     34|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|     34|#define DROPBEAR_FAILURE -1
  ------------------
   61|     34|		goto out;
   62|     34|	}
   63|       |
   64|    339|	if (mp_count_bits(key->p) != DSS_P_BITS) {
  ------------------
  |  |   44|    339|#define DSS_P_BITS 1024
  ------------------
  |  Branch (64:6): [True: 27, False: 312]
  ------------------
   65|     27|		dropbear_log(LOG_WARNING, "Bad DSS p");
   66|     27|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|     27|#define DROPBEAR_FAILURE -1
  ------------------
   67|     27|		goto out;
   68|     27|	}
   69|       |
   70|    312|	if (mp_count_bits(key->q) != DSS_Q_BITS) {
  ------------------
  |  |   45|    312|#define DSS_Q_BITS 160
  ------------------
  |  Branch (70:6): [True: 22, False: 290]
  ------------------
   71|     22|		dropbear_log(LOG_WARNING, "Bad DSS q");
   72|     22|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|     22|#define DROPBEAR_FAILURE -1
  ------------------
   73|     22|		goto out;
   74|     22|	}
   75|       |
   76|       |	/* test 1 < g < p */
   77|    290|	if (mp_cmp_d(key->g, 1) != MP_GT) {
  ------------------
  |  |  156|    290|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (77:6): [True: 2, False: 288]
  ------------------
   78|      2|		dropbear_log(LOG_WARNING, "Bad DSS g");
   79|      2|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      2|#define DROPBEAR_FAILURE -1
  ------------------
   80|      2|		goto out;
   81|      2|	}
   82|    288|	if (mp_cmp(key->g, key->p) != MP_LT) {
  ------------------
  |  |  154|    288|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (82:6): [True: 2, False: 286]
  ------------------
   83|      2|		dropbear_log(LOG_WARNING, "Bad DSS g");
   84|      2|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      2|#define DROPBEAR_FAILURE -1
  ------------------
   85|      2|		goto out;
   86|      2|	}
   87|       |
   88|    286|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    286|#define DROPBEAR_SUCCESS 0
  ------------------
   89|    286|	TRACE(("leave buf_get_dss_pub_key: success"))
   90|    332|out:
   91|    332|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|    332|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (91:6): [True: 87, False: 245]
  ------------------
   92|     87|		m_mp_free_multi(&key->p, &key->q, &key->g, &key->y, NULL);
   93|     87|	}
   94|    332|	return ret;
   95|    286|}
dss_key_free:
  122|  2.77k|void dss_key_free(dropbear_dss_key *key) {
  123|       |
  124|  2.77k|	TRACE2(("enter dsa_key_free"))
  125|  2.77k|	if (key == NULL) {
  ------------------
  |  Branch (125:6): [True: 2.44k, False: 330]
  ------------------
  126|  2.44k|		TRACE2(("enter dsa_key_free: key == NULL"))
  127|  2.44k|		return;
  128|  2.44k|	}
  129|    330|	m_mp_free_multi(&key->p, &key->q, &key->g, &key->y, &key->x, NULL);
  130|    330|	m_free(key);
  ------------------
  |  |   24|    330|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  131|    330|	TRACE2(("leave dsa_key_free"))
  132|    330|}
buf_dss_verify:
  165|    244|int buf_dss_verify(buffer* buf, const dropbear_dss_key *key, const buffer *data_buf) {
  166|    244|	unsigned char msghash[SHA1_HASH_SIZE];
  167|    244|	hash_state hs;
  168|    244|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    244|#define DROPBEAR_FAILURE -1
  ------------------
  169|    244|	DEF_MP_INT(val1);
  ------------------
  |  |   80|    244|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
  170|    244|	DEF_MP_INT(val2);
  ------------------
  |  |   80|    244|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
  171|    244|	DEF_MP_INT(val3);
  ------------------
  |  |   80|    244|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
  172|    244|	DEF_MP_INT(val4);
  ------------------
  |  |   80|    244|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
  173|    244|	char * string = NULL;
  174|    244|	unsigned int stringlen;
  175|       |
  176|    244|	TRACE(("enter buf_dss_verify"))
  177|    244|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|    244|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 244]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  178|       |
  179|    244|	m_mp_init_multi(&val1, &val2, &val3, &val4, NULL);
  180|       |
  181|       |	/* get blob, check length */
  182|    244|	string = buf_getstring(buf, &stringlen);
  183|    244|	if (stringlen != 2*SHA1_HASH_SIZE) {
  ------------------
  |  |  120|    244|#define SHA1_HASH_SIZE 20
  ------------------
  |  Branch (183:6): [True: 8, False: 236]
  ------------------
  184|      8|		goto out;
  185|      8|	}
  186|       |
  187|       |#if DEBUG_DSS_VERIFY
  188|       |	printmpint("dss verify p", key->p);
  189|       |	printmpint("dss verify q", key->q);
  190|       |	printmpint("dss verify g", key->g);
  191|       |	printmpint("dss verify y", key->y);
  192|       |#endif
  193|       |
  194|       |	/* hash the data */
  195|    236|	sha1_init(&hs);
  196|    236|	sha1_process(&hs, data_buf->data, data_buf->len);
  197|    236|	sha1_done(&hs, msghash);
  198|       |
  199|       |	/* create the signature - s' and r' are the received signatures in buf */
  200|       |	/* w = (s')-1 mod q */
  201|       |	/* let val1 = s' */
  202|    236|	bytes_to_mp(&val1, (const unsigned char*) &string[SHA1_HASH_SIZE], SHA1_HASH_SIZE);
  ------------------
  |  |  120|    236|#define SHA1_HASH_SIZE 20
  ------------------
              	bytes_to_mp(&val1, (const unsigned char*) &string[SHA1_HASH_SIZE], SHA1_HASH_SIZE);
  ------------------
  |  |  120|    236|#define SHA1_HASH_SIZE 20
  ------------------
  203|       |#if DEBUG_DSS_VERIFY
  204|       |	printmpint("dss verify s'", &val1);
  205|       |#endif
  206|       |
  207|    236|	if (mp_cmp(&val1, key->q) != MP_LT) {
  ------------------
  |  |  154|    236|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (207:6): [True: 1, False: 235]
  ------------------
  208|      1|		TRACE(("verify failed, s' >= q"))
  209|      1|		goto out;
  210|      1|	}
  211|    235|	if (mp_cmp_d(&val1, 0) != MP_GT) {
  ------------------
  |  |  156|    235|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (211:6): [True: 1, False: 234]
  ------------------
  212|      1|		TRACE(("verify failed, s' <= 0"))
  213|      1|		goto out;
  214|      1|	}
  215|       |	/* let val2 = w = (s')^-1 mod q*/
  216|    234|	if (mp_invmod(&val1, key->q, &val2) != MP_OKAY) {
  ------------------
  |  |  161|    234|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (216:6): [True: 5, False: 229]
  ------------------
  217|      5|		goto out;
  218|      5|	}
  219|       |
  220|       |	/* u1 = ((SHA(M')w) mod q */
  221|       |	/* let val1 = SHA(M') = msghash */
  222|    229|	bytes_to_mp(&val1, msghash, SHA1_HASH_SIZE);
  ------------------
  |  |  120|    229|#define SHA1_HASH_SIZE 20
  ------------------
  223|       |#if DEBUG_DSS_VERIFY
  224|       |	printmpint("dss verify r'", &val1);
  225|       |#endif
  226|       |
  227|       |	/* let val3 = u1 = ((SHA(M')w) mod q */
  228|    229|	if (mp_mulmod(&val1, &val2, key->q, &val3) != MP_OKAY) {
  ------------------
  |  |  161|    229|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (228:6): [True: 0, False: 229]
  ------------------
  229|      0|		goto out;
  230|      0|	}
  231|       |
  232|       |	/* u2 = ((r')w) mod q */
  233|       |	/* let val1 = r' */
  234|    229|	bytes_to_mp(&val1, (const unsigned char*) &string[0], SHA1_HASH_SIZE);
  ------------------
  |  |  120|    229|#define SHA1_HASH_SIZE 20
  ------------------
  235|    229|	if (mp_cmp(&val1, key->q) != MP_LT) {
  ------------------
  |  |  154|    229|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (235:6): [True: 4, False: 225]
  ------------------
  236|      4|		TRACE(("verify failed, r' >= q"))
  237|      4|		goto out;
  238|      4|	}
  239|    225|	if (mp_cmp_d(&val1, 0) != MP_GT) {
  ------------------
  |  |  156|    225|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (239:6): [True: 1, False: 224]
  ------------------
  240|      1|		TRACE(("verify failed, r' <= 0"))
  241|      1|		goto out;
  242|      1|	}
  243|       |	/* let val4 = u2 = ((r')w) mod q */
  244|    224|	if (mp_mulmod(&val1, &val2, key->q, &val4) != MP_OKAY) {
  ------------------
  |  |  161|    224|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (244:6): [True: 0, False: 224]
  ------------------
  245|      0|		goto out;
  246|      0|	}
  247|       |
  248|       |	/* v = (((g)^u1 (y)^u2) mod p) mod q */
  249|       |	/* val2 = g^u1 mod p */
  250|    224|	if (mp_exptmod(key->g, &val3, key->p, &val2) != MP_OKAY) {
  ------------------
  |  |  161|    224|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (250:6): [True: 0, False: 224]
  ------------------
  251|      0|		goto out;
  252|      0|	}
  253|       |	/* val3 = y^u2 mod p */
  254|    224|	if (mp_exptmod(key->y, &val4, key->p, &val3) != MP_OKAY) {
  ------------------
  |  |  161|    224|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (254:6): [True: 0, False: 224]
  ------------------
  255|      0|		goto out;
  256|      0|	}
  257|       |	/* val4 = ((g)^u1 (y)^u2) mod p */
  258|    224|	if (mp_mulmod(&val2, &val3, key->p, &val4) != MP_OKAY) {
  ------------------
  |  |  161|    224|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (258:6): [True: 0, False: 224]
  ------------------
  259|      0|		goto out;
  260|      0|	}
  261|       |	/* val2 = v = (((g)^u1 (y)^u2) mod p) mod q */
  262|    224|	if (mp_mod(&val4, key->q, &val2) != MP_OKAY) {
  ------------------
  |  |  161|    224|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (262:6): [True: 0, False: 224]
  ------------------
  263|      0|		goto out;
  264|      0|	}
  265|       |	
  266|       |	/* check whether signatures verify */
  267|    224|	if (mp_cmp(&val2, &val1) == MP_EQ) {
  ------------------
  |  |  155|    224|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (267:6): [True: 123, False: 101]
  ------------------
  268|       |		/* good sig */
  269|    123|		ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    123|#define DROPBEAR_SUCCESS 0
  ------------------
  270|    123|	}
  271|       |
  272|    243|out:
  273|    243|	mp_clear_multi(&val1, &val2, &val3, &val4, NULL);
  274|    243|	m_free(string);
  ------------------
  |  |   24|    243|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  275|       |
  276|    243|	return ret;
  277|       |
  278|    224|}

dropbear_ecc_fill_dp:
   47|      1|void dropbear_ecc_fill_dp() {
   48|      1|	struct dropbear_ecc_curve **curve;
   49|       |	/* libtomcrypt guarantees they're ordered by size */
   50|      1|	const ltc_ecc_set_type *dp = ltc_ecc_sets;
   51|      4|	for (curve = dropbear_ecc_curves; *curve; curve++) {
  ------------------
  |  Branch (51:36): [True: 3, False: 1]
  ------------------
   52|     10|		for (;dp->size > 0; dp++) {
  ------------------
  |  Branch (52:9): [True: 10, False: 0]
  ------------------
   53|     10|			if (dp->size == (*curve)->ltc_size) {
  ------------------
  |  Branch (53:8): [True: 3, False: 7]
  ------------------
   54|      3|				(*curve)->dp = dp;
   55|      3|				break;
   56|      3|			}
   57|     10|		}
   58|      3|		if (!(*curve)->dp) {
  ------------------
  |  Branch (58:7): [True: 0, False: 3]
  ------------------
   59|      0|			dropbear_exit("Missing ECC params %s", (*curve)->name);
   60|      0|		}
   61|      3|	}
   62|      1|}
curve_for_dp:
   64|    306|struct dropbear_ecc_curve* curve_for_dp(const ltc_ecc_set_type *dp) {
   65|    306|	struct dropbear_ecc_curve **curve = NULL;
   66|    481|	for (curve = dropbear_ecc_curves; *curve; curve++) {
  ------------------
  |  Branch (66:36): [True: 481, False: 0]
  ------------------
   67|    481|		if ((*curve)->dp == dp) {
  ------------------
  |  Branch (67:7): [True: 306, False: 175]
  ------------------
   68|    306|			break;
   69|    306|		}
   70|    481|	}
   71|    306|	assert(*curve);
   72|    306|	return *curve;
   73|    306|}
new_ecc_key:
   75|    494|ecc_key * new_ecc_key(void) {
   76|    494|	ecc_key *key = m_malloc(sizeof(*key));
   77|    494|	m_mp_alloc_init_multi((mp_int**)&key->pubkey.x, (mp_int**)&key->pubkey.y, 
   78|    494|		(mp_int**)&key->pubkey.z, (mp_int**)&key->k, NULL);
   79|    494|	return key;
   80|    494|}
buf_get_ecc_raw_pubkey:
  147|    577|ecc_key * buf_get_ecc_raw_pubkey(buffer *buf, const struct dropbear_ecc_curve *curve) {
  148|    577|	ecc_key *key = NULL;
  149|    577|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    577|#define DROPBEAR_FAILURE -1
  ------------------
  150|    577|	const unsigned int size = curve->dp->size;
  151|    577|	unsigned char first;
  152|       |
  153|    577|	TRACE(("enter buf_get_ecc_raw_pubkey"))
  154|       |
  155|    577|	buf_setpos(buf, 0);
  156|    577|	first = buf_getbyte(buf);
  157|    577|	if (first == 2 || first == 3) {
  ------------------
  |  Branch (157:6): [True: 9, False: 568]
  |  Branch (157:20): [True: 4, False: 564]
  ------------------
  158|      5|		dropbear_log(LOG_WARNING, "Dropbear doesn't support ECC point compression");
  159|      5|		return NULL;
  160|      5|	}
  161|    572|	if (first != 4 || buf->len != 1+2*size) {
  ------------------
  |  Branch (161:6): [True: 47, False: 525]
  |  Branch (161:20): [True: 31, False: 494]
  ------------------
  162|     70|		TRACE(("leave, wrong size"))
  163|     70|		return NULL;
  164|     70|	}
  165|       |
  166|    502|	key = new_ecc_key();
  167|    502|	key->dp = curve->dp;
  168|       |
  169|    502|	if (mp_from_ubin(key->pubkey.x, buf_getptr(buf, size), size) != MP_OKAY) {
  ------------------
  |  |  161|    502|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (169:6): [True: 0, False: 502]
  ------------------
  170|      0|		TRACE(("failed to read x"))
  171|      0|		goto out;
  172|      0|	}
  173|    502|	buf_incrpos(buf, size);
  174|       |
  175|    502|	if (mp_from_ubin(key->pubkey.y, buf_getptr(buf, size), size) != MP_OKAY) {
  ------------------
  |  |  161|    502|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (175:6): [True: 0, False: 502]
  ------------------
  176|      0|		TRACE(("failed to read y"))
  177|      0|		goto out;
  178|      0|	}
  179|    502|	buf_incrpos(buf, size);
  180|       |
  181|    502|	mp_set(key->pubkey.z, 1);
  182|       |
  183|    502|	if (ecc_is_point(key) != CRYPT_OK) {
  ------------------
  |  Branch (183:6): [True: 185, False: 317]
  ------------------
  184|    185|		TRACE(("failed, not a point"))
  185|    185|		goto out;
  186|    185|	}
  187|       |
  188|       |   /* SEC1 3.2.3.1 Check that Q != 0 */
  189|    317|	if (mp_cmp_d(key->pubkey.x, 0) == LTC_MP_EQ) {
  ------------------
  |  |   13|    317|#define LTC_MP_EQ    0
  ------------------
  |  Branch (189:6): [True: 0, False: 317]
  ------------------
  190|      0|		TRACE(("failed, x == 0"))
  191|      0|		goto out;
  192|      0|	}
  193|    317|	if (mp_cmp_d(key->pubkey.y, 0) == LTC_MP_EQ) {
  ------------------
  |  |   13|    317|#define LTC_MP_EQ    0
  ------------------
  |  Branch (193:6): [True: 0, False: 317]
  ------------------
  194|      0|		TRACE(("failed, y == 0"))
  195|      0|		goto out;
  196|      0|	}
  197|       |
  198|    317|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    317|#define DROPBEAR_SUCCESS 0
  ------------------
  199|       |
  200|    494|	out:
  201|    494|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|    494|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (201:6): [True: 185, False: 309]
  ------------------
  202|    185|		if (key) {
  ------------------
  |  Branch (202:7): [True: 185, False: 0]
  ------------------
  203|    185|			ecc_free(key);
  204|    185|			m_free(key);
  ------------------
  |  |   24|    185|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  205|    185|			key = NULL;
  206|    185|		}
  207|    185|	}
  208|       |
  209|    494|	return key;
  210|       |
  211|    317|}
ecc.c:ecc_is_point:
   85|    494|{
   86|    494|	mp_int *prime, *b, *t1, *t2;
   87|    494|	int err;
   88|       |	
   89|    494|	m_mp_alloc_init_multi(&prime, &b, &t1, &t2, NULL);
   90|       |	
   91|       |   /* load prime and b */
   92|    494|	if ((err = mp_read_radix(prime, key->dp->prime, 16)) != CRYPT_OK)                          { goto error; }
  ------------------
  |  Branch (92:6): [True: 0, False: 494]
  ------------------
   93|    494|	if ((err = mp_read_radix(b, key->dp->B, 16)) != CRYPT_OK)                                  { goto error; }
  ------------------
  |  Branch (93:6): [True: 0, False: 494]
  ------------------
   94|       |	
   95|       |   /* compute y^2 */
   96|    494|	if ((err = mp_sqr(key->pubkey.y, t1)) != CRYPT_OK)                                         { goto error; }
  ------------------
  |  Branch (96:6): [True: 0, False: 494]
  ------------------
   97|       |	
   98|       |   /* compute x^3 */
   99|    494|	if ((err = mp_sqr(key->pubkey.x, t2)) != CRYPT_OK)                                         { goto error; }
  ------------------
  |  Branch (99:6): [True: 0, False: 494]
  ------------------
  100|    494|	if ((err = mp_mod(t2, prime, t2)) != CRYPT_OK)                                             { goto error; }
  ------------------
  |  Branch (100:6): [True: 0, False: 494]
  ------------------
  101|    494|	if ((err = mp_mul(key->pubkey.x, t2, t2)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (101:6): [True: 0, False: 494]
  ------------------
  102|       |	
  103|       |   /* compute y^2 - x^3 */
  104|    494|	if ((err = mp_sub(t1, t2, t1)) != CRYPT_OK)                                                { goto error; }
  ------------------
  |  Branch (104:6): [True: 0, False: 494]
  ------------------
  105|       |	
  106|       |   /* compute y^2 - x^3 + 3x */
  107|    494|	if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (107:6): [True: 0, False: 494]
  ------------------
  108|    494|	if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (108:6): [True: 0, False: 494]
  ------------------
  109|    494|	if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (109:6): [True: 0, False: 494]
  ------------------
  110|    494|	if ((err = mp_mod(t1, prime, t1)) != CRYPT_OK)                                             { goto error; }
  ------------------
  |  Branch (110:6): [True: 0, False: 494]
  ------------------
  111|    494|	while (mp_cmp_d(t1, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|    494|#define LTC_MP_LT   -1
  ------------------
  |  Branch (111:9): [True: 0, False: 494]
  ------------------
  112|      0|		if ((err = mp_add(t1, prime, t1)) != CRYPT_OK)                                          { goto error; }
  ------------------
  |  Branch (112:7): [True: 0, False: 0]
  ------------------
  113|      0|	}
  114|    494|	while (mp_cmp(t1, prime) != LTC_MP_LT) {
  ------------------
  |  |   12|    494|#define LTC_MP_LT   -1
  ------------------
  |  Branch (114:9): [True: 0, False: 494]
  ------------------
  115|      0|		if ((err = mp_sub(t1, prime, t1)) != CRYPT_OK)                                          { goto error; }
  ------------------
  |  Branch (115:7): [True: 0, False: 0]
  ------------------
  116|      0|	}
  117|       |	
  118|       |   /* compare to b */
  119|    494|	if (mp_cmp(t1, b) != LTC_MP_EQ) {
  ------------------
  |  |   13|    494|#define LTC_MP_EQ    0
  ------------------
  |  Branch (119:6): [True: 185, False: 309]
  ------------------
  120|    185|		err = CRYPT_INVALID_PACKET;
  121|    309|	} else {
  122|    309|		err = CRYPT_OK;
  123|    309|	}
  124|       |	
  125|    494|	error:
  126|    494|	mp_clear_multi(prime, b, t1, t2, NULL);
  127|    494|	m_free(prime);
  ------------------
  |  |   24|    494|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  128|    494|	m_free(b);
  ------------------
  |  |   24|    494|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  129|    494|	m_free(t1);
  ------------------
  |  |   24|    494|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  130|    494|	m_free(t2);
  ------------------
  |  |   24|    494|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  131|    494|	return err;
  132|    494|}

signkey_is_ecdsa:
   11|  3.12k|{
   12|  3.12k|	return type == DROPBEAR_SIGNKEY_ECDSA_NISTP256
  ------------------
  |  Branch (12:9): [True: 677, False: 2.44k]
  ------------------
   13|  3.12k|		|| type == DROPBEAR_SIGNKEY_ECDSA_NISTP384
  ------------------
  |  Branch (13:6): [True: 141, False: 2.30k]
  ------------------
   14|  3.12k|		|| type == DROPBEAR_SIGNKEY_ECDSA_NISTP521;
  ------------------
  |  Branch (14:6): [True: 171, False: 2.13k]
  ------------------
   15|  3.12k|}
buf_get_ecdsa_pub_key:
   77|    778|ecc_key *buf_get_ecdsa_pub_key(buffer* buf) {
   78|    778|	unsigned char *key_ident = NULL, *identifier = NULL;
   79|    778|	unsigned int key_ident_len, identifier_len;
   80|    778|	buffer *q_buf = NULL;
   81|    778|	struct dropbear_ecc_curve **curve;
   82|    778|	ecc_key *new_key = NULL;
   83|       |
   84|       |	/* string   "ecdsa-sha2-[identifier]" or "sk-ecdsa-sha2-nistp256@openssh.com" */
   85|    778|	key_ident = (unsigned char*)buf_getstring(buf, &key_ident_len);
   86|       |	/* string   "[identifier]" */
   87|    778|	identifier = (unsigned char*)buf_getstring(buf, &identifier_len);
   88|       |
   89|    778|	if (strcmp (key_ident, "sk-ecdsa-sha2-nistp256@openssh.com") == 0) {
  ------------------
  |  Branch (89:6): [True: 94, False: 684]
  ------------------
   90|     94|		if (strcmp (identifier, "nistp256") != 0) {
  ------------------
  |  Branch (90:7): [True: 79, False: 15]
  ------------------
   91|     79|			TRACE(("mismatching identifiers"))
   92|     79|			goto out;
   93|     79|		}
   94|    684|	} else {
   95|    684|		if (key_ident_len != identifier_len + strlen ("ecdsa-sha2-")) {
  ------------------
  |  Branch (95:7): [True: 30, False: 654]
  ------------------
   96|     30|			TRACE(("Bad identifier lengths"))
   97|     30|			goto out;
   98|     30|		}
   99|    654|		if (memcmp(&key_ident[strlen ("ecdsa-sha2-")], identifier, identifier_len) != 0) {
  ------------------
  |  Branch (99:7): [True: 18, False: 636]
  ------------------
  100|     18|			TRACE(("mismatching identifiers"))
  101|     18|			goto out;
  102|     18|		}
  103|    654|	}
  104|       |
  105|    926|	for (curve = dropbear_ecc_curves; *curve; curve++) {
  ------------------
  |  Branch (105:36): [True: 921, False: 5]
  ------------------
  106|    921|		if (memcmp(identifier, (char*)(*curve)->name, strlen((char*)(*curve)->name)) == 0) {
  ------------------
  |  Branch (106:7): [True: 646, False: 275]
  ------------------
  107|    646|			break;
  108|    646|		}
  109|    921|	}
  110|    651|	if (!*curve) {
  ------------------
  |  Branch (110:6): [True: 0, False: 651]
  ------------------
  111|      0|		TRACE(("couldn't match ecc curve"))
  112|      0|		goto out;
  113|      0|	}
  114|       |
  115|       |	/* string Q */
  116|    651|	q_buf = buf_getstringbuf(buf);
  117|    651|	new_key = buf_get_ecc_raw_pubkey(q_buf, *curve);
  118|       |
  119|    696|out:
  120|    696|	m_free(key_ident);
  ------------------
  |  |   24|    696|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  121|    696|	m_free(identifier);
  ------------------
  |  |   24|    696|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  122|    696|	if (q_buf) {
  ------------------
  |  Branch (122:6): [True: 569, False: 127]
  ------------------
  123|    569|		buf_free(q_buf);
  124|    569|		q_buf = NULL;
  125|    569|	}
  126|    696|	TRACE(("leave buf_get_ecdsa_pub_key"))	
  127|    696|	return new_key;
  128|    651|}
buf_ecdsa_verify:
  281|    306|int buf_ecdsa_verify(buffer *buf, const ecc_key *key, const buffer *data_buf) {
  282|       |	/* Based on libtomcrypt's ecc_verify_hash but without the asn1 */
  283|    306|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    306|#define DROPBEAR_FAILURE -1
  ------------------
  284|    306|	hash_state hs;
  285|    306|	struct dropbear_ecc_curve *curve = NULL;
  286|    306|	unsigned char hash[64];
  287|    306|	ecc_point *mG = NULL, *mQ = NULL;
  288|    306|	void *r = NULL, *s = NULL, *v = NULL, *w = NULL, *u1 = NULL, *u2 = NULL, 
  289|    306|		*e = NULL, *p = NULL, *m = NULL;
  290|    306|	void *mp = NULL;
  291|       |
  292|       |	/* verify 
  293|       |	 *
  294|       |	 * w  = s^-1 mod n
  295|       |	 * u1 = xw 
  296|       |	 * u2 = rw
  297|       |	 * X = u1*G + u2*Q
  298|       |	 * v = X_x1 mod n
  299|       |	 * accept if v == r
  300|       |	 */
  301|       |
  302|    306|	TRACE(("buf_ecdsa_verify"))
  303|    306|	curve = curve_for_dp(key->dp);
  304|       |
  305|    306|	mG = ltc_ecc_new_point();
  306|    306|	mQ = ltc_ecc_new_point();
  307|    306|	if (ltc_init_multi(&r, &s, &v, &w, &u1, &u2, &p, &e, &m, NULL) != CRYPT_OK
  ------------------
  |  Branch (307:6): [True: 0, False: 306]
  ------------------
  308|    306|		|| !mG
  ------------------
  |  Branch (308:6): [True: 0, False: 306]
  ------------------
  309|    306|		|| !mQ) {
  ------------------
  |  Branch (309:6): [True: 0, False: 306]
  ------------------
  310|      0|		dropbear_exit("ECC error");
  311|      0|	}
  312|       |
  313|    306|	if (buf_get_ecdsa_verify_params(buf, r, s) != DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|    306|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (313:6): [True: 44, False: 262]
  ------------------
  314|     44|		goto out;
  315|     44|	}
  316|       |
  317|    262|	curve->hash_desc->init(&hs);
  318|    262|	curve->hash_desc->process(&hs, data_buf->data, data_buf->len);
  319|    262|	curve->hash_desc->done(&hs, hash);
  320|       |
  321|    262|	if (ltc_mp.unsigned_read(e, hash, curve->hash_desc->hashsize) != CRYPT_OK) {
  ------------------
  |  Branch (321:6): [True: 0, False: 262]
  ------------------
  322|      0|		goto out;
  323|      0|	}
  324|       |
  325|       |   /* get the order */
  326|    262|	if (ltc_mp.read_radix(p, (char *)key->dp->order, 16) != CRYPT_OK) { 
  ------------------
  |  Branch (326:6): [True: 0, False: 262]
  ------------------
  327|      0|		goto out; 
  328|      0|	}
  329|       |
  330|       |   /* get the modulus */
  331|    262|	if (ltc_mp.read_radix(m, (char *)key->dp->prime, 16) != CRYPT_OK) { 
  ------------------
  |  Branch (331:6): [True: 0, False: 262]
  ------------------
  332|      0|		goto out; 
  333|      0|	}
  334|       |
  335|       |   /* check for zero */
  336|    262|	if (ltc_mp.compare_d(r, 0) == LTC_MP_EQ 
  ------------------
  |  |   13|    524|#define LTC_MP_EQ    0
  ------------------
  |  Branch (336:6): [True: 7, False: 255]
  ------------------
  337|    262|		|| ltc_mp.compare_d(s, 0) == LTC_MP_EQ 
  ------------------
  |  |   13|    517|#define LTC_MP_EQ    0
  ------------------
  |  Branch (337:6): [True: 1, False: 254]
  ------------------
  338|    262|		|| ltc_mp.compare(r, p) != LTC_MP_LT 
  ------------------
  |  |   12|    516|#define LTC_MP_LT   -1
  ------------------
  |  Branch (338:6): [True: 1, False: 253]
  ------------------
  339|    262|		|| ltc_mp.compare(s, p) != LTC_MP_LT) {
  ------------------
  |  |   12|    253|#define LTC_MP_LT   -1
  ------------------
  |  Branch (339:6): [True: 1, False: 252]
  ------------------
  340|      6|		goto out;
  341|      6|	}
  342|       |
  343|       |   /*  w  = s^-1 mod n */
  344|    256|	if (ltc_mp.invmod(s, p, w) != CRYPT_OK) { 
  ------------------
  |  Branch (344:6): [True: 0, False: 256]
  ------------------
  345|      0|		goto out; 
  346|      0|	}
  347|       |
  348|       |   /* u1 = ew */
  349|    256|	if (ltc_mp.mulmod(e, w, p, u1) != CRYPT_OK) { 
  ------------------
  |  Branch (349:6): [True: 0, False: 256]
  ------------------
  350|      0|		goto out; 
  351|      0|	}
  352|       |
  353|       |   /* u2 = rw */
  354|    256|	if (ltc_mp.mulmod(r, w, p, u2) != CRYPT_OK) { 
  ------------------
  |  Branch (354:6): [True: 0, False: 256]
  ------------------
  355|      0|		goto out; 
  356|      0|	}
  357|       |
  358|       |   /* find mG and mQ */
  359|    256|	if (ltc_mp.read_radix(mG->x, (char *)key->dp->Gx, 16) != CRYPT_OK) { 
  ------------------
  |  Branch (359:6): [True: 0, False: 256]
  ------------------
  360|      0|		goto out; 
  361|      0|	}
  362|    256|	if (ltc_mp.read_radix(mG->y, (char *)key->dp->Gy, 16) != CRYPT_OK) { 
  ------------------
  |  Branch (362:6): [True: 0, False: 256]
  ------------------
  363|      0|		goto out; 
  364|      0|	}
  365|    256|	if (ltc_mp.set_int(mG->z, 1) != CRYPT_OK) { 
  ------------------
  |  Branch (365:6): [True: 0, False: 256]
  ------------------
  366|      0|		goto out; 
  367|      0|	}
  368|       |
  369|    256|	if (ltc_mp.copy(key->pubkey.x, mQ->x) != CRYPT_OK
  ------------------
  |  Branch (369:6): [True: 4, False: 252]
  ------------------
  370|    256|		|| ltc_mp.copy(key->pubkey.y, mQ->y) != CRYPT_OK
  ------------------
  |  Branch (370:6): [True: 0, False: 252]
  ------------------
  371|    256|		|| ltc_mp.copy(key->pubkey.z, mQ->z) != CRYPT_OK) { 
  ------------------
  |  Branch (371:6): [True: 0, False: 252]
  ------------------
  372|      0|		goto out; 
  373|      0|	}
  374|       |
  375|       |   /* compute u1*mG + u2*mQ = mG */
  376|    256|	if (ltc_mp.ecc_mul2add == NULL) {
  ------------------
  |  Branch (376:6): [True: 0, False: 256]
  ------------------
  377|      0|		if (ltc_mp.ecc_ptmul(u1, mG, mG, m, 0) != CRYPT_OK) { 
  ------------------
  |  Branch (377:7): [True: 0, False: 0]
  ------------------
  378|      0|			goto out; 
  379|      0|		}
  380|      0|		if (ltc_mp.ecc_ptmul(u2, mQ, mQ, m, 0) != CRYPT_OK) {
  ------------------
  |  Branch (380:7): [True: 0, False: 0]
  ------------------
  381|      0|			goto out; 
  382|      0|		}
  383|       |
  384|       |		/* find the montgomery mp */
  385|      0|		if (ltc_mp.montgomery_setup(m, &mp) != CRYPT_OK) { 
  ------------------
  |  Branch (385:7): [True: 0, False: 0]
  ------------------
  386|      0|			goto out; 
  387|      0|		}
  388|       |
  389|       |		/* add them */
  390|      0|		if (ltc_mp.ecc_ptadd(mQ, mG, mG, m, mp) != CRYPT_OK) { 
  ------------------
  |  Branch (390:7): [True: 0, False: 0]
  ------------------
  391|      0|			goto out; 
  392|      0|		}
  393|       |
  394|       |		/* reduce */
  395|      0|		if (ltc_mp.ecc_map(mG, m, mp) != CRYPT_OK) { 
  ------------------
  |  Branch (395:7): [True: 0, False: 0]
  ------------------
  396|      0|			goto out; 
  397|      0|		}
  398|    256|	} else {
  399|       |		/* use Shamir's trick to compute u1*mG + u2*mQ using half of the doubles */
  400|    256|		if (ltc_mp.ecc_mul2add(mG, u1, mQ, u2, mG, m) != CRYPT_OK) { 
  ------------------
  |  Branch (400:7): [True: 0, False: 256]
  ------------------
  401|      0|			goto out; 
  402|      0|		}
  403|    256|	}
  404|       |
  405|       |   /* v = X_x1 mod n */
  406|    256|	if (ltc_mp.mpdiv(mG->x, p, NULL, v) != CRYPT_OK) { 
  ------------------
  |  Branch (406:6): [True: 0, False: 256]
  ------------------
  407|      0|		goto out; 
  408|      0|	}
  409|       |
  410|       |   /* does v == r */
  411|    256|	if (ltc_mp.compare(v, r) == LTC_MP_EQ) {
  ------------------
  |  |   13|    256|#define LTC_MP_EQ    0
  ------------------
  |  Branch (411:6): [True: 0, False: 256]
  ------------------
  412|      0|		ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  413|      0|	}
  414|       |
  415|    302|out:
  416|    302|	ltc_ecc_del_point(mG);
  417|    302|	ltc_ecc_del_point(mQ);
  418|    302|	ltc_deinit_multi(r, s, v, w, u1, u2, p, e, m, NULL);
  419|    302|	if (mp != NULL) { 
  ------------------
  |  Branch (419:6): [True: 0, False: 302]
  ------------------
  420|      0|		ltc_mp.montgomery_deinit(mp);
  421|      0|	}
  422|    302|	return ret;
  423|    256|}
ecdsa.c:buf_get_ecdsa_verify_params:
  258|    306|			void *r, void* s) {
  259|    306|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    306|#define DROPBEAR_FAILURE -1
  ------------------
  260|    306|	unsigned int sig_len;
  261|    306|	unsigned int sig_pos;
  262|       |
  263|    306|	sig_len = buf_getint(buf);
  264|    306|	sig_pos = buf->pos;
  265|    306|	if (buf_getmpint(buf, r) != DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|    306|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (265:6): [True: 3, False: 303]
  ------------------
  266|      3|		goto out;
  267|      3|	}
  268|    303|	if (buf_getmpint(buf, s) != DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|    303|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (268:6): [True: 1, False: 302]
  ------------------
  269|      1|		goto out;
  270|      1|	}
  271|    302|	if (buf->pos - sig_pos != sig_len) {
  ------------------
  |  Branch (271:6): [True: 40, False: 262]
  ------------------
  272|     40|		goto out;
  273|     40|	}
  274|    262|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    262|#define DROPBEAR_SUCCESS 0
  ------------------
  275|       |
  276|    302|out:
  277|    302|	return ret;
  278|    262|}

buf_get_ed25519_pub_key:
   42|    336|	enum signkey_type expect_keytype) {
   43|       |
   44|       |
   45|    336|	unsigned int len, typelen;
   46|    336|	char *keytype = NULL;
   47|    336|	enum signkey_type buf_keytype;
   48|       |
   49|    336|	TRACE(("enter buf_get_ed25519_pub_key"))
   50|    336|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|    336|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 336]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   51|       |
   52|       |	/* consume and check the key string */
   53|    336|	keytype = buf_getstring(buf, &typelen);
   54|    336|	buf_keytype = signkey_type_from_name(keytype, typelen);
   55|    336|	m_free(keytype);
  ------------------
  |  |   24|    336|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   56|    336|	if (buf_keytype != expect_keytype) {
  ------------------
  |  Branch (56:6): [True: 0, False: 336]
  ------------------
   57|      0|		TRACE(("leave buf_get_ed25519_pub_key: mismatch key type"))
   58|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   59|      0|	}
   60|       |
   61|    336|	len = buf_getint(buf);
   62|    336|	if (len != CURVE25519_LEN || buf->len - buf->pos < len) {
  ------------------
  |  |   34|    672|#define CURVE25519_LEN 32
  ------------------
  |  Branch (62:6): [True: 54, False: 282]
  |  Branch (62:31): [True: 9, False: 273]
  ------------------
   63|     57|		TRACE(("leave buf_get_ed25519_pub_key: failure"))
   64|     57|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|     57|#define DROPBEAR_FAILURE -1
  ------------------
   65|     57|	}
   66|       |
   67|    279|	m_burn(key->priv, CURVE25519_LEN);
  ------------------
  |  |   34|    279|#define CURVE25519_LEN 32
  ------------------
   68|    279|	memcpy(key->pub, buf_getptr(buf, CURVE25519_LEN), CURVE25519_LEN);
  ------------------
  |  |   34|    279|#define CURVE25519_LEN 32
  ------------------
              	memcpy(key->pub, buf_getptr(buf, CURVE25519_LEN), CURVE25519_LEN);
  ------------------
  |  |   34|    279|#define CURVE25519_LEN 32
  ------------------
   69|    279|	buf_incrpos(buf, CURVE25519_LEN);
  ------------------
  |  |   34|    279|#define CURVE25519_LEN 32
  ------------------
   70|       |
   71|    279|	TRACE(("leave buf_get_ed25519_pub_key: success"))
   72|    279|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    279|#define DROPBEAR_SUCCESS 0
  ------------------
   73|    336|}
ed25519_key_free:
  103|  2.65k|void ed25519_key_free(dropbear_ed25519_key *key) {
  104|       |
  105|  2.65k|	TRACE2(("enter ed25519_key_free"))
  106|       |
  107|  2.65k|	if (key == NULL) {
  ------------------
  |  Branch (107:6): [True: 2.47k, False: 180]
  ------------------
  108|  2.47k|		TRACE2(("leave ed25519_key_free: key == NULL"))
  109|  2.47k|		return;
  110|  2.47k|	}
  111|    180|	m_burn(key->priv, CURVE25519_LEN);
  ------------------
  |  |   34|    180|#define CURVE25519_LEN 32
  ------------------
  112|    180|	m_free(key);
  ------------------
  |  |   24|    180|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  113|       |
  114|    180|	TRACE2(("leave ed25519_key_free"))
  115|    180|}
buf_ed25519_verify:
  163|     66|int buf_ed25519_verify(buffer *buf, const dropbear_ed25519_key *key, const buffer *data_buf) {
  164|       |
  165|     66|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|     66|#define DROPBEAR_FAILURE -1
  ------------------
  166|     66|	unsigned char *s;
  167|     66|	unsigned long slen;
  168|       |
  169|     66|	TRACE(("enter buf_ed25519_verify"))
  170|     66|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|     66|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 66]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  171|       |
  172|     66|	slen = buf_getint(buf);
  173|     66|	if (slen != 64 || buf->len - buf->pos < slen) {
  ------------------
  |  Branch (173:6): [True: 39, False: 27]
  |  Branch (173:20): [True: 12, False: 15]
  ------------------
  174|     50|		TRACE(("leave buf_ed25519_verify: bad size"))
  175|     50|		goto out;
  176|     50|	}
  177|     16|	s = buf_getptr(buf, slen);
  178|       |
  179|     16|	if (dropbear_ed25519_verify(data_buf->data, data_buf->len,
  ------------------
  |  Branch (179:6): [True: 0, False: 16]
  ------------------
  180|     16|				    s, slen, key->pub) == 0) {
  181|       |		/* signature is valid */
  182|      0|		TRACE(("leave buf_ed25519_verify: success!"))
  183|      0|		ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  184|      0|	}
  185|       |
  186|     65|out:
  187|     65|	TRACE(("leave buf_ed25519_verify: ret %d", ret))
  188|     65|	return ret;
  189|     16|}

buf_get_rsa_pub_key:
   53|  1.16k|int buf_get_rsa_pub_key(buffer* buf, dropbear_rsa_key *key) {
   54|       |
   55|  1.16k|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|  1.16k|#define DROPBEAR_FAILURE -1
  ------------------
   56|  1.16k|	TRACE(("enter buf_get_rsa_pub_key"))
   57|  1.16k|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|  1.16k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 1.16k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   58|  1.16k|	m_mp_alloc_init_multi(&key->e, &key->n, NULL);
   59|  1.16k|	key->d = NULL;
   60|  1.16k|	key->p = NULL;
   61|  1.16k|	key->q = NULL;
   62|       |
   63|  1.16k|	buf_incrpos(buf, 4+SSH_SIGNKEY_RSA_LEN); /* int + "ssh-rsa" */
  ------------------
  |  |  113|  1.16k|#define SSH_SIGNKEY_RSA_LEN 7
  ------------------
   64|       |
   65|  1.16k|	if (buf_getmpint(buf, key->e) == DROPBEAR_FAILURE
  ------------------
  |  |  103|  2.32k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (65:6): [True: 63, False: 1.09k]
  ------------------
   66|  1.16k|	 || buf_getmpint(buf, key->n) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  1.09k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (66:6): [True: 103, False: 995]
  ------------------
   67|     38|		TRACE(("leave buf_get_rsa_pub_key: failure"))
   68|     38|		goto out;
   69|     38|	}
   70|       |
   71|  1.12k|	if (mp_count_bits(key->n) < MIN_RSA_KEYLEN) {
  ------------------
  |  |   65|  1.12k|#define MIN_RSA_KEYLEN 1024
  ------------------
  |  Branch (71:6): [True: 80, False: 1.04k]
  ------------------
   72|     80|		dropbear_log(LOG_WARNING, "RSA key too short");
   73|     80|		goto out;
   74|     80|	}
   75|       |
   76|       |	/* 64 bit is limit used by openssl, so we won't block any keys in the wild */
   77|  1.04k|	if (mp_count_bits(key->e) > 64) {
  ------------------
  |  Branch (77:6): [True: 7, False: 1.03k]
  ------------------
   78|      7|		dropbear_log(LOG_WARNING, "RSA key bad e");
   79|      7|		goto out;
   80|      7|	}
   81|       |
   82|  1.03k|	TRACE(("leave buf_get_rsa_pub_key: success"))
   83|  1.03k|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  1.03k|#define DROPBEAR_SUCCESS 0
  ------------------
   84|  1.03k|out:
   85|  1.03k|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  1.03k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (85:6): [True: 125, False: 908]
  ------------------
   86|    125|		m_mp_free_multi(&key->e, &key->n, NULL);
   87|    125|	}
   88|  1.03k|	return ret;
   89|  1.03k|}
rsa_key_free:
  142|  3.60k|void rsa_key_free(dropbear_rsa_key *key) {
  143|       |
  144|  3.60k|	TRACE2(("enter rsa_key_free"))
  145|       |
  146|  3.60k|	if (key == NULL) {
  ------------------
  |  Branch (146:6): [True: 2.61k, False: 990]
  ------------------
  147|  2.61k|		TRACE2(("leave rsa_key_free: key == NULL"))
  148|  2.61k|		return;
  149|  2.61k|	}
  150|    990|	m_mp_free_multi(&key->d, &key->e, &key->p, &key->q, &key->n, NULL);
  151|    990|	m_free(key);
  ------------------
  |  |   24|    990|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  152|    990|	TRACE2(("leave rsa_key_free"))
  153|    990|}
buf_rsa_verify:
  200|    867|		enum signature_type sigtype, const buffer *data_buf) {
  201|    867|	unsigned int slen;
  202|    867|	DEF_MP_INT(rsa_s);
  ------------------
  |  |   80|    867|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
  203|    867|	DEF_MP_INT(rsa_mdash);
  ------------------
  |  |   80|    867|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
  204|    867|	DEF_MP_INT(rsa_em);
  ------------------
  |  |   80|    867|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
  205|    867|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    867|#define DROPBEAR_FAILURE -1
  ------------------
  206|       |
  207|    867|	TRACE(("enter buf_rsa_verify"))
  208|       |
  209|    867|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|    867|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 867]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  210|       |
  211|    867|	m_mp_init_multi(&rsa_mdash, &rsa_s, &rsa_em, NULL);
  212|       |
  213|    867|	slen = buf_getint(buf);
  214|    867|	if (slen != (unsigned int)mp_ubin_size(key->n)) {
  ------------------
  |  Branch (214:6): [True: 46, False: 821]
  ------------------
  215|     46|		TRACE(("bad size"))
  216|     46|		goto out;
  217|     46|	}
  218|       |
  219|    821|	if (mp_from_ubin(&rsa_s, buf_getptr(buf, buf->len - buf->pos),
  ------------------
  |  Branch (219:6): [True: 0, False: 821]
  ------------------
  220|    821|				buf->len - buf->pos) != MP_OKAY) {
  ------------------
  |  |  161|    821|#define MP_OKAY       0   /* no error */
  ------------------
  221|      0|		TRACE(("failed reading rsa_s"))
  222|      0|		goto out;
  223|      0|	}
  224|       |
  225|       |	/* check that s <= n-1 */
  226|    821|	if (mp_cmp(&rsa_s, key->n) != MP_LT) {
  ------------------
  |  |  154|    821|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (226:6): [True: 40, False: 781]
  ------------------
  227|     40|		TRACE(("s > n-1"))
  228|     40|		goto out;
  229|     40|	}
  230|       |
  231|       |	/* create the magic PKCS padded value */
  232|    781|	rsa_pad_em(key, data_buf, &rsa_em, sigtype);
  233|       |
  234|    781|	if (mp_exptmod(&rsa_s, key->e, key->n, &rsa_mdash) != MP_OKAY) {
  ------------------
  |  |  161|    781|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (234:6): [True: 0, False: 781]
  ------------------
  235|      0|		TRACE(("failed exptmod rsa_s"))
  236|      0|		goto out;
  237|      0|	}
  238|       |
  239|    781|	if (mp_cmp(&rsa_em, &rsa_mdash) == MP_EQ) {
  ------------------
  |  |  155|    781|#define MP_EQ         0   /* equal to */
  ------------------
  |  Branch (239:6): [True: 0, False: 781]
  ------------------
  240|       |		/* signature is valid */
  241|      0|		TRACE(("success!"))
  242|      0|		ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  243|      0|	}
  244|       |
  245|    865|out:
  246|    865|	mp_clear_multi(&rsa_mdash, &rsa_s, &rsa_em, NULL);
  247|    865|	TRACE(("leave buf_rsa_verify: ret %d", ret))
  248|    865|	return ret;
  249|    781|}
rsa.c:rsa_pad_em:
  356|    779|	const buffer *data_buf, mp_int * rsa_em, enum signature_type sigtype) {
  357|       |    /* EM = 0x00 || 0x01 || PS || 0x00 || T 
  358|       |	   PS is padding of 0xff to make EM the size of key->n
  359|       |
  360|       |	   T is the DER encoding of the hash alg (sha1 or sha256)
  361|       |	*/
  362|       |
  363|       |	/* From rfc8017 page 46 */
  364|    779|#if DROPBEAR_RSA_SHA1
  365|    779|	const unsigned char T_sha1[] =
  366|    779|		{0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b,
  367|    779|		 0x0e, 0x03, 0x02, 0x1a, 0x05, 0x00, 0x04, 0x14};
  368|    779|#endif
  369|    779|#if DROPBEAR_RSA_SHA256
  370|    779|	const unsigned char T_sha256[] =
  371|    779|		{0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01,
  372|    779|		 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20};
  373|    779|#endif
  374|       |
  375|    779|    int Tlen = 0;
  376|    779|    const unsigned char *T = NULL;
  377|    779|	const struct ltc_hash_descriptor *hash_desc = NULL;
  378|    779|	buffer * rsa_EM = NULL;
  379|    779|	hash_state hs;
  380|    779|	unsigned int nsize;
  381|       |
  382|    779|	switch (sigtype) {
  383|      0|#if DROPBEAR_RSA_SHA1
  384|    773|		case DROPBEAR_SIGNATURE_RSA_SHA1:
  ------------------
  |  Branch (384:3): [True: 773, False: 6]
  ------------------
  385|    773|			Tlen = sizeof(T_sha1);
  386|    773|			T = T_sha1;
  387|    773|			hash_desc = &sha1_desc;
  388|    773|			break;
  389|      0|#endif
  390|      0|#if DROPBEAR_RSA_SHA256
  391|      6|		case DROPBEAR_SIGNATURE_RSA_SHA256:
  ------------------
  |  Branch (391:3): [True: 6, False: 773]
  ------------------
  392|      6|			Tlen = sizeof(T_sha256);
  393|      6|			T = T_sha256;
  394|      6|			hash_desc = &sha256_desc;
  395|      6|			break;
  396|      0|#endif
  397|      0|		default:
  ------------------
  |  Branch (397:3): [True: 0, False: 779]
  ------------------
  398|      0|			assert(0);
  399|    779|	}
  400|       |	
  401|       |
  402|    779|	nsize = mp_ubin_size(key->n);
  403|       |
  404|    779|	rsa_EM = buf_new(nsize);
  405|       |	/* type byte */
  406|    779|	buf_putbyte(rsa_EM, 0x00);
  407|    779|	buf_putbyte(rsa_EM, 0x01);
  408|       |	/* Padding with PS 0xFF bytes */
  409|   170k|	while(rsa_EM->pos != rsa_EM->size - (1 + Tlen + hash_desc->hashsize)) {
  ------------------
  |  Branch (409:8): [True: 169k, False: 779]
  ------------------
  410|   169k|		buf_putbyte(rsa_EM, 0xff);
  411|   169k|	}
  412|    779|	buf_putbyte(rsa_EM, 0x00);
  413|       |	/* Magic ASN1 stuff */
  414|    779|	buf_putbytes(rsa_EM, T, Tlen);
  415|       |
  416|       |	/* The hash of the data */
  417|    779|	hash_desc->init(&hs);
  418|    779|	hash_desc->process(&hs, data_buf->data, data_buf->len);
  419|    779|	hash_desc->done(&hs, buf_getwriteptr(rsa_EM, hash_desc->hashsize));
  420|    779|	buf_incrwritepos(rsa_EM, hash_desc->hashsize);
  421|       |
  422|    779|	dropbear_assert(rsa_EM->pos == rsa_EM->size);
  ------------------
  |  |   83|    779|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 779]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  423|       |
  424|       |	/* Create the mp_int from the encoded bytes */
  425|    779|	buf_setpos(rsa_EM, 0);
  426|    779|	bytes_to_mp(rsa_em, buf_getptr(rsa_EM, rsa_EM->size),
  427|    779|			rsa_EM->size);
  428|    779|	buf_free(rsa_EM);
  429|    779|}

new_sign_key:
   62|  2.86k|sign_key * new_sign_key() {
   63|       |
   64|  2.86k|	sign_key * ret;
   65|       |
   66|  2.86k|	ret = (sign_key*)m_malloc(sizeof(sign_key));
   67|  2.86k|	ret->type = DROPBEAR_SIGNKEY_NONE;
   68|  2.86k|	ret->source = SIGNKEY_SOURCE_INVALID;
   69|  2.86k|	return ret;
   70|  2.86k|}
signkey_type_from_name:
   86|  3.95k|enum signkey_type signkey_type_from_name(const char* name, unsigned int namelen) {
   87|  3.95k|	int i;
   88|  14.8k|	for (i = 0; i < DROPBEAR_SIGNKEY_NUM_NAMED; i++) {
  ------------------
  |  Branch (88:14): [True: 14.6k, False: 232]
  ------------------
   89|  14.6k|		const char *fixed_name = signkey_names[i];
   90|  14.6k|		if (namelen == strlen(fixed_name)
  ------------------
  |  Branch (90:7): [True: 5.11k, False: 9.54k]
  ------------------
   91|  14.6k|			&& memcmp(fixed_name, name, namelen) == 0) {
  ------------------
  |  Branch (91:7): [True: 3.72k, False: 1.38k]
  ------------------
   92|       |
   93|  3.72k|#if DROPBEAR_ECDSA
   94|       |			/* Some of the ECDSA key sizes are defined even if they're not compiled in */
   95|  3.72k|			if (0
  ------------------
  |  Branch (95:8): [Folded - Ignored]
  ------------------
   96|       |#if !DROPBEAR_ECC_256
   97|       |				|| i == DROPBEAR_SIGNKEY_ECDSA_NISTP256
   98|       |#endif
   99|       |#if !DROPBEAR_ECC_384
  100|       |				|| i == DROPBEAR_SIGNKEY_ECDSA_NISTP384
  101|       |#endif
  102|       |#if !DROPBEAR_ECC_521
  103|       |				|| i == DROPBEAR_SIGNKEY_ECDSA_NISTP521
  104|       |#endif
  105|  3.72k|				) {
  106|      0|				TRACE(("attempt to use ecdsa type %d not compiled in", i))
  107|      0|				return DROPBEAR_SIGNKEY_NONE;
  108|      0|			}
  109|  3.72k|#endif
  110|       |
  111|  3.72k|			return (enum signkey_type)i;
  112|  3.72k|		}
  113|  14.6k|	}
  114|       |
  115|    232|	TRACE(("signkey_type_from_name unexpected key type."))
  116|       |
  117|    232|	return DROPBEAR_SIGNKEY_NONE;
  118|  3.95k|}
signature_type_from_name:
  145|  1.68k|enum signature_type signature_type_from_name(const char* name, unsigned int namelen) {
  146|  1.68k|#if DROPBEAR_RSA
  147|  1.68k|#if DROPBEAR_RSA_SHA256
  148|  1.68k|	if (namelen == strlen(SSH_SIGNATURE_RSA_SHA256) 
  ------------------
  |  |  117|  1.68k|#define SSH_SIGNATURE_RSA_SHA256 "rsa-sha2-256"
  ------------------
  |  Branch (148:6): [True: 24, False: 1.66k]
  ------------------
  149|  1.68k|		&& memcmp(name, SSH_SIGNATURE_RSA_SHA256, namelen) == 0) {
  ------------------
  |  |  117|     24|#define SSH_SIGNATURE_RSA_SHA256 "rsa-sha2-256"
  ------------------
  |  Branch (149:6): [True: 8, False: 16]
  ------------------
  150|      8|		return DROPBEAR_SIGNATURE_RSA_SHA256;
  151|      8|	}
  152|  1.68k|#endif
  153|  1.68k|#if DROPBEAR_RSA_SHA1
  154|  1.68k|	if (namelen == strlen(SSH_SIGNKEY_RSA) 
  ------------------
  |  |  112|  1.68k|#define SSH_SIGNKEY_RSA "ssh-rsa"
  ------------------
  |  Branch (154:6): [True: 1.10k, False: 573]
  ------------------
  155|  1.68k|		&& memcmp(name, SSH_SIGNKEY_RSA, namelen) == 0) {
  ------------------
  |  |  112|  1.10k|#define SSH_SIGNKEY_RSA "ssh-rsa"
  ------------------
  |  Branch (155:6): [True: 861, False: 246]
  ------------------
  156|    861|		return DROPBEAR_SIGNATURE_RSA_SHA1;
  157|    861|	}
  158|    819|#endif
  159|    819|#endif /* DROPBEAR_RSA */
  160|    819|	return (enum signature_type)signkey_type_from_name(name, namelen);
  161|  1.68k|}
signature_type_from_signkey:
  165|    827|enum signature_type signature_type_from_signkey(enum signkey_type keytype) {
  166|    827|#if DROPBEAR_RSA
  167|    827|	assert(keytype != DROPBEAR_SIGNKEY_RSA);
  168|    827|#endif
  169|    827|	assert(keytype < DROPBEAR_SIGNKEY_NUM_NAMED);
  170|    827|	return (enum signature_type)keytype;
  171|    827|}
signkey_type_from_signature:
  173|  1.60k|enum signkey_type signkey_type_from_signature(enum signature_type sigtype) {
  174|  1.60k|#if DROPBEAR_RSA
  175|  1.60k|#if DROPBEAR_RSA_SHA256
  176|  1.60k|	if (sigtype == DROPBEAR_SIGNATURE_RSA_SHA256) {
  ------------------
  |  Branch (176:6): [True: 7, False: 1.59k]
  ------------------
  177|      7|		return DROPBEAR_SIGNKEY_RSA;
  178|      7|	}
  179|  1.59k|#endif
  180|  1.59k|#if DROPBEAR_RSA_SHA1
  181|  1.59k|	if (sigtype == DROPBEAR_SIGNATURE_RSA_SHA1) {
  ------------------
  |  Branch (181:6): [True: 860, False: 733]
  ------------------
  182|    860|		return DROPBEAR_SIGNKEY_RSA;
  183|    860|	}
  184|    733|#endif
  185|    733|#endif /* DROPBEAR_RSA */
  186|    733|	assert((int)sigtype < (int)DROPBEAR_SIGNKEY_NUM_NAMED);
  187|    733|	return (enum signkey_type)sigtype;
  188|    733|}
signkey_key_ptr:
  193|  1.20k|signkey_key_ptr(sign_key *key, enum signkey_type type) {
  194|  1.20k|	switch (type) {
  195|      0|#if DROPBEAR_ED25519
  196|      0|		case DROPBEAR_SIGNKEY_ED25519:
  ------------------
  |  Branch (196:3): [True: 0, False: 1.20k]
  ------------------
  197|      0|#if DROPBEAR_SK_ED25519
  198|    119|		case DROPBEAR_SIGNKEY_SK_ED25519:
  ------------------
  |  Branch (198:3): [True: 119, False: 1.08k]
  ------------------
  199|    119|#endif
  200|    119|			return (void**)&key->ed25519key;
  201|      0|#endif
  202|      0|#if DROPBEAR_ECDSA
  203|      0|#if DROPBEAR_ECC_256
  204|    677|		case DROPBEAR_SIGNKEY_ECDSA_NISTP256:
  ------------------
  |  Branch (204:3): [True: 677, False: 526]
  ------------------
  205|    677|#if DROPBEAR_SK_ECDSA
  206|    772|		case DROPBEAR_SIGNKEY_SK_ECDSA_NISTP256:
  ------------------
  |  Branch (206:3): [True: 95, False: 1.10k]
  ------------------
  207|    772|#endif
  208|    772|			return (void**)&key->ecckey256;
  209|      0|#endif
  210|      0|#if DROPBEAR_ECC_384
  211|    141|		case DROPBEAR_SIGNKEY_ECDSA_NISTP384:
  ------------------
  |  Branch (211:3): [True: 141, False: 1.06k]
  ------------------
  212|    141|			return (void**)&key->ecckey384;
  213|      0|#endif
  214|      0|#if DROPBEAR_ECC_521
  215|    171|		case DROPBEAR_SIGNKEY_ECDSA_NISTP521:
  ------------------
  |  Branch (215:3): [True: 171, False: 1.03k]
  ------------------
  216|    171|			return (void**)&key->ecckey521;
  217|      0|#endif
  218|      0|#endif /* DROPBEAR_ECDSA */
  219|      0|#if DROPBEAR_RSA
  220|      0|		case DROPBEAR_SIGNKEY_RSA:
  ------------------
  |  Branch (220:3): [True: 0, False: 1.20k]
  ------------------
  221|      0|			return (void**)&key->rsakey;
  222|      0|#endif
  223|      0|#if DROPBEAR_DSS
  224|      0|		case DROPBEAR_SIGNKEY_DSS:
  ------------------
  |  Branch (224:3): [True: 0, False: 1.20k]
  ------------------
  225|      0|			return (void**)&key->dsskey;
  226|      0|#endif
  227|      0|		default:
  ------------------
  |  Branch (227:3): [True: 0, False: 1.20k]
  ------------------
  228|      0|			return NULL;
  229|  1.20k|	}
  230|  1.20k|}
buf_get_pub_key:
  235|  2.86k|int buf_get_pub_key(buffer *buf, sign_key *key, enum signkey_type *type) {
  236|       |
  237|  2.86k|	char *ident;
  238|  2.86k|	unsigned int len;
  239|  2.86k|	enum signkey_type keytype;
  240|  2.86k|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|  2.86k|#define DROPBEAR_FAILURE -1
  ------------------
  241|       |
  242|  2.86k|	TRACE2(("enter buf_get_pub_key"))
  243|       |
  244|  2.86k|	ident = buf_getstring(buf, &len);
  245|  2.86k|	keytype = signkey_type_from_name(ident, len);
  246|  2.86k|	m_free(ident);
  ------------------
  |  |   24|  2.86k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  247|       |
  248|  2.86k|	if (*type != DROPBEAR_SIGNKEY_ANY && *type != keytype) {
  ------------------
  |  Branch (248:6): [True: 0, False: 2.86k]
  |  Branch (248:39): [True: 0, False: 0]
  ------------------
  249|      0|		TRACE(("buf_get_pub_key bad type - got %d, expected %d", keytype, *type))
  250|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  251|      0|	}
  252|       |	
  253|  2.86k|	TRACE2(("buf_get_pub_key keytype is %d", keytype))
  254|       |
  255|  2.86k|	*type = keytype;
  256|       |
  257|       |	/* Rewind the buffer back before "ssh-rsa" etc */
  258|  2.86k|	buf_decrpos(buf, len + 4);
  259|       |
  260|  2.86k|#if DROPBEAR_DSS
  261|  2.86k|	if (keytype == DROPBEAR_SIGNKEY_DSS) {
  ------------------
  |  Branch (261:6): [True: 373, False: 2.48k]
  ------------------
  262|    373|		dss_key_free(key->dsskey);
  263|    373|		key->dsskey = m_malloc(sizeof(*key->dsskey));
  264|    373|		ret = buf_get_dss_pub_key(buf, key->dsskey);
  265|    373|		if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|    373|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (265:7): [True: 87, False: 286]
  ------------------
  266|     87|			dss_key_free(key->dsskey);
  267|     87|			key->dsskey = NULL;
  268|     87|		}
  269|    373|	}
  270|  2.86k|#endif
  271|  2.86k|#if DROPBEAR_RSA
  272|  2.86k|	if (keytype == DROPBEAR_SIGNKEY_RSA) {
  ------------------
  |  Branch (272:6): [True: 1.16k, False: 1.70k]
  ------------------
  273|  1.16k|		rsa_key_free(key->rsakey);
  274|  1.16k|		key->rsakey = m_malloc(sizeof(*key->rsakey));
  275|  1.16k|		ret = buf_get_rsa_pub_key(buf, key->rsakey);
  276|  1.16k|		if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  1.16k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (276:7): [True: 125, False: 1.03k]
  ------------------
  277|    125|			rsa_key_free(key->rsakey);
  278|    125|			key->rsakey = NULL;
  279|    125|		}
  280|  1.16k|	}
  281|  2.86k|#endif
  282|  2.86k|#if DROPBEAR_ECDSA
  283|  2.86k|	if (signkey_is_ecdsa(keytype)
  ------------------
  |  Branch (283:6): [True: 913, False: 1.94k]
  ------------------
  284|  2.86k|#if DROPBEAR_SK_ECDSA
  285|  2.86k|		|| keytype == DROPBEAR_SIGNKEY_SK_ECDSA_NISTP256
  ------------------
  |  Branch (285:6): [True: 95, False: 1.85k]
  ------------------
  286|  2.86k|#endif
  287|  2.86k|	) {
  288|    778|		ecc_key **eck = (ecc_key**)signkey_key_ptr(key, keytype);
  289|    778|		if (eck) {
  ------------------
  |  Branch (289:7): [True: 778, False: 0]
  ------------------
  290|    778|			if (*eck) {
  ------------------
  |  Branch (290:8): [True: 0, False: 778]
  ------------------
  291|      0|				ecc_free(*eck);
  292|      0|				m_free(*eck);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  293|      0|				*eck = NULL;
  294|      0|			}
  295|    778|			*eck = buf_get_ecdsa_pub_key(buf);
  296|    778|			if (*eck) {
  ------------------
  |  Branch (296:8): [True: 309, False: 469]
  ------------------
  297|    309|				ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    309|#define DROPBEAR_SUCCESS 0
  ------------------
  298|    309|			}
  299|    778|		}
  300|    778|	}
  301|  2.86k|#endif
  302|  2.86k|#if DROPBEAR_ED25519
  303|  2.86k|	if (keytype == DROPBEAR_SIGNKEY_ED25519
  ------------------
  |  Branch (303:6): [True: 519, False: 2.34k]
  ------------------
  304|  2.86k|#if DROPBEAR_SK_ED25519
  305|  2.86k|		|| keytype == DROPBEAR_SIGNKEY_SK_ED25519
  ------------------
  |  Branch (305:6): [True: 129, False: 2.21k]
  ------------------
  306|  2.86k|#endif
  307|  2.86k|    ) {
  308|    336|		ed25519_key_free(key->ed25519key);
  309|    336|		key->ed25519key = m_malloc(sizeof(*key->ed25519key));
  310|    336|		ret = buf_get_ed25519_pub_key(buf, key->ed25519key, keytype);
  311|    336|		if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|    336|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (311:7): [True: 57, False: 279]
  ------------------
  312|     57|			m_free(key->ed25519key);
  ------------------
  |  |   24|     57|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  313|     57|			key->ed25519key = NULL;
  314|     57|		}
  315|    336|	}
  316|  2.86k|#endif
  317|       |
  318|  2.86k|#if DROPBEAR_SK_ECDSA || DROPBEAR_SK_ED25519
  319|  2.86k|	if (0
  ------------------
  |  Branch (319:6): [Folded - Ignored]
  ------------------
  320|  2.86k|#if DROPBEAR_SK_ED25519
  321|  2.86k|		|| keytype == DROPBEAR_SIGNKEY_SK_ED25519
  ------------------
  |  Branch (321:6): [True: 127, False: 2.41k]
  ------------------
  322|  2.86k|#endif
  323|  2.86k|#if DROPBEAR_SK_ECDSA
  324|  2.86k|		|| keytype == DROPBEAR_SIGNKEY_SK_ECDSA_NISTP256
  ------------------
  |  Branch (324:6): [True: 83, False: 2.33k]
  ------------------
  325|  2.86k|#endif
  326|  2.86k|	) {
  327|    210|		key->sk_app = buf_getstring(buf, &key->sk_applen);
  328|    210|	}
  329|  2.86k|#endif
  330|       |
  331|  2.86k|	TRACE2(("leave buf_get_pub_key"))
  332|       |
  333|  2.86k|	return ret;
  334|  2.86k|}
sign_key_free:
  502|  2.31k|void sign_key_free(sign_key *key) {
  503|       |
  504|  2.31k|	TRACE2(("enter sign_key_free"))
  505|       |
  506|  2.31k|#if DROPBEAR_DSS
  507|  2.31k|	dss_key_free(key->dsskey);
  508|  2.31k|	key->dsskey = NULL;
  509|  2.31k|#endif
  510|  2.31k|#if DROPBEAR_RSA
  511|  2.31k|	rsa_key_free(key->rsakey);
  512|  2.31k|	key->rsakey = NULL;
  513|  2.31k|#endif
  514|  2.31k|#if DROPBEAR_ECDSA
  515|  2.31k|#if DROPBEAR_ECC_256
  516|  2.31k|	if (key->ecckey256) {
  ------------------
  |  Branch (516:6): [True: 191, False: 2.12k]
  ------------------
  517|    191|		ecc_free(key->ecckey256);
  518|    191|		m_free(key->ecckey256);
  ------------------
  |  |   24|    191|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  519|    191|		key->ecckey256 = NULL;
  520|    191|	}
  521|  2.31k|#endif
  522|  2.31k|#if DROPBEAR_ECC_384
  523|  2.31k|	if (key->ecckey384) {
  ------------------
  |  Branch (523:6): [True: 50, False: 2.26k]
  ------------------
  524|     50|		ecc_free(key->ecckey384);
  525|     50|		m_free(key->ecckey384);
  ------------------
  |  |   24|     50|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  526|     50|		key->ecckey384 = NULL;
  527|     50|	}
  528|  2.31k|#endif
  529|  2.31k|#if DROPBEAR_ECC_521
  530|  2.31k|	if (key->ecckey521) {
  ------------------
  |  Branch (530:6): [True: 61, False: 2.25k]
  ------------------
  531|     61|		ecc_free(key->ecckey521);
  532|     61|		m_free(key->ecckey521);
  ------------------
  |  |   24|     61|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  533|     61|		key->ecckey521 = NULL;
  534|     61|	}
  535|  2.31k|#endif
  536|  2.31k|#endif
  537|  2.31k|#if DROPBEAR_ED25519
  538|  2.31k|	ed25519_key_free(key->ed25519key);
  539|  2.31k|	key->ed25519key = NULL;
  540|  2.31k|#endif
  541|       |
  542|  2.31k|	m_free(key->filename);
  ------------------
  |  |   24|  2.31k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  543|  2.31k|#if DROPBEAR_SK_ECDSA || DROPBEAR_SK_ED25519
  544|  2.31k|	if (key->sk_app) {
  ------------------
  |  Branch (544:6): [True: 120, False: 2.19k]
  ------------------
  545|    120|		m_free(key->sk_app);
  ------------------
  |  |   24|    120|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  546|    120|	}
  547|  2.31k|#endif
  548|       |
  549|  2.31k|	m_free(key);
  ------------------
  |  |   24|  2.31k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  550|  2.31k|	TRACE2(("leave sign_key_free"))
  551|  2.31k|}
buf_verify:
  641|  1.71k|int buf_verify(buffer * buf, sign_key *key, enum signature_type expect_sigtype, const buffer *data_buf) {
  642|       |	
  643|  1.71k|	char *type_name = NULL;
  644|  1.71k|	unsigned int type_name_len = 0;
  645|  1.71k|	enum signature_type sigtype;
  646|  1.71k|	enum signkey_type keytype;
  647|       |
  648|  1.71k|	TRACE(("enter buf_verify"))
  649|       |
  650|  1.71k|	buf_getint(buf); /* blob length */
  651|  1.71k|	type_name = buf_getstring(buf, &type_name_len);
  652|  1.71k|	sigtype = signature_type_from_name(type_name, type_name_len);
  653|  1.71k|	m_free(type_name);
  ------------------
  |  |   24|  1.71k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  654|       |
  655|  1.71k|	if (expect_sigtype != sigtype) {
  ------------------
  |  Branch (655:6): [True: 88, False: 1.62k]
  ------------------
  656|     88|			dropbear_exit("Non-matching signing type");
  657|     88|	}
  658|       |
  659|  1.62k|	keytype = signkey_type_from_signature(sigtype);
  660|  1.62k|#if DROPBEAR_DSS
  661|  1.62k|	if (keytype == DROPBEAR_SIGNKEY_DSS) {
  ------------------
  |  Branch (661:6): [True: 244, False: 1.38k]
  ------------------
  662|    244|		if (key->dsskey == NULL) {
  ------------------
  |  Branch (662:7): [True: 0, False: 244]
  ------------------
  663|      0|			dropbear_exit("No DSS key to verify signature");
  664|      0|		}
  665|    244|		return buf_dss_verify(buf, key->dsskey, data_buf);
  666|    244|	}
  667|  1.38k|#endif
  668|       |
  669|  1.38k|#if DROPBEAR_RSA
  670|  1.38k|	if (keytype == DROPBEAR_SIGNKEY_RSA) {
  ------------------
  |  Branch (670:6): [True: 867, False: 516]
  ------------------
  671|    867|		if (key->rsakey == NULL) {
  ------------------
  |  Branch (671:7): [True: 0, False: 867]
  ------------------
  672|      0|			dropbear_exit("No RSA key to verify signature");
  673|      0|		}
  674|    867|		return buf_rsa_verify(buf, key->rsakey, sigtype, data_buf);
  675|    867|	}
  676|    516|#endif
  677|    516|#if DROPBEAR_ECDSA
  678|    516|	if (signkey_is_ecdsa(keytype)) {
  ------------------
  |  Branch (678:6): [True: 306, False: 210]
  ------------------
  679|    306|		ecc_key **eck = (ecc_key**)signkey_key_ptr(key, keytype);
  680|    306|		if (eck && *eck) {
  ------------------
  |  Branch (680:7): [True: 306, False: 0]
  |  Branch (680:14): [True: 306, False: 0]
  ------------------
  681|    306|			return buf_ecdsa_verify(buf, *eck, data_buf);
  682|    306|		}
  683|    306|	}
  684|    210|#endif
  685|    210|#if DROPBEAR_ED25519
  686|    210|	if (keytype == DROPBEAR_SIGNKEY_ED25519) {
  ------------------
  |  Branch (686:6): [True: 66, False: 144]
  ------------------
  687|     66|		if (key->ed25519key == NULL) {
  ------------------
  |  Branch (687:7): [True: 0, False: 66]
  ------------------
  688|      0|			dropbear_exit("No Ed25519 key to verify signature");
  689|      0|		}
  690|     66|		return buf_ed25519_verify(buf, key->ed25519key, data_buf);
  691|     66|	}
  692|    144|#endif
  693|    144|#if DROPBEAR_SK_ECDSA
  694|    144|	if (keytype == DROPBEAR_SIGNKEY_SK_ECDSA_NISTP256) {
  ------------------
  |  Branch (694:6): [True: 0, False: 144]
  ------------------
  695|      0|		ecc_key **eck = (ecc_key**)signkey_key_ptr(key, keytype);
  696|      0|		if (eck && *eck) {
  ------------------
  |  Branch (696:7): [True: 0, False: 0]
  |  Branch (696:14): [True: 0, False: 0]
  ------------------
  697|      0|			return buf_sk_ecdsa_verify(buf, *eck, data_buf, key->sk_app, key->sk_applen, key->sk_flags_mask);
  698|      0|		}
  699|      0|	}
  700|    144|#endif
  701|    144|#if DROPBEAR_SK_ED25519
  702|    144|	if (keytype == DROPBEAR_SIGNKEY_SK_ED25519) {
  ------------------
  |  Branch (702:6): [True: 117, False: 27]
  ------------------
  703|    117|		dropbear_ed25519_key **eck = (dropbear_ed25519_key**)signkey_key_ptr(key, keytype);
  704|    117|		if (eck && *eck) {
  ------------------
  |  Branch (704:7): [True: 117, False: 0]
  |  Branch (704:14): [True: 117, False: 0]
  ------------------
  705|    117|			return buf_sk_ed25519_verify(buf, *eck, data_buf, key->sk_app, key->sk_applen, key->sk_flags_mask);
  706|    117|		}
  707|    117|	}
  708|     27|#endif
  709|       |
  710|     27|	dropbear_exit("Non-matching signing type");
  711|      0|	return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  712|    144|}

buf_sk_ed25519_verify:
   13|    117|			unsigned char sk_flags_mask) {
   14|       |
   15|    117|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    117|#define DROPBEAR_FAILURE -1
  ------------------
   16|    117|	unsigned char *s;
   17|    117|	unsigned long slen;
   18|    117|	hash_state hs;
   19|    117|	unsigned char hash[SHA256_HASH_SIZE];
   20|    117|	buffer *sk_buffer = NULL;
   21|    117|	unsigned char flags;
   22|    117|	unsigned int counter;
   23|       |
   24|    117|	TRACE(("enter buf_sk_ed25519_verify"))
   25|    117|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|    117|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 117]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   26|       |
   27|    117|	slen = buf_getint(buf);
   28|    117|	if (slen != 64 || buf->len - buf->pos < slen) {
  ------------------
  |  Branch (28:6): [True: 44, False: 73]
  |  Branch (28:20): [True: 9, False: 64]
  ------------------
   29|     52|		TRACE(("leave buf_sk_ed25519_verify: bad size"))
   30|     52|		goto out;
   31|     52|	}
   32|     65|	s = buf_getptr(buf, slen);
   33|     65|	buf_incrpos(buf, slen);
   34|       |
   35|     65|	flags = buf_getbyte (buf);
   36|     65|	counter = buf_getint (buf);
   37|       |	/* create the message to be signed */
   38|     65|	sk_buffer = buf_new (2*SHA256_HASH_SIZE+5);
  ------------------
  |  |  121|     65|#define SHA256_HASH_SIZE 32
  ------------------
   39|     65|	sha256_init (&hs);
   40|     65|	sha256_process (&hs, app, applen);
   41|     65|	sha256_done (&hs, hash);
   42|     65|	buf_putbytes (sk_buffer, hash, sizeof (hash));
   43|     65|	buf_putbyte (sk_buffer, flags);
   44|     65|	buf_putint (sk_buffer, counter);
   45|     65|	sha256_init (&hs);
   46|     65|	sha256_process (&hs, data_buf->data, data_buf->len);
   47|     65|	sha256_done (&hs, hash);
   48|     65|	buf_putbytes (sk_buffer, hash, sizeof (hash));
   49|       |
   50|     65|	if (dropbear_ed25519_verify(sk_buffer->data, sk_buffer->len,
  ------------------
  |  Branch (50:6): [True: 2, False: 63]
  ------------------
   51|     65|				    s, slen, key->pub) == 0) {
   52|       |		/* signature is valid */
   53|      2|		TRACE(("leave buf_sk_ed25519_verify: success!"))
   54|      2|		ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      2|#define DROPBEAR_SUCCESS 0
  ------------------
   55|      2|	}
   56|       |
   57|     65|	if (~flags & sk_flags_mask & SSH_SK_USER_PRESENCE_REQD) {
  ------------------
  |  |  131|     65|#define SSH_SK_USER_PRESENCE_REQD       0x01
  ------------------
  |  Branch (57:6): [True: 0, False: 65]
  ------------------
   58|      0|		if (ret == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (58:7): [True: 0, False: 0]
  ------------------
   59|      0|			dropbear_log(LOG_WARNING, "Rejecting, user-presence not set");
   60|      0|		}
   61|      0|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   62|      0|	}
   63|     65|	if (~flags & sk_flags_mask & SSH_SK_USER_VERIFICATION_REQD) {
  ------------------
  |  |  132|     65|#define SSH_SK_USER_VERIFICATION_REQD   0x04
  ------------------
  |  Branch (63:6): [True: 0, False: 65]
  ------------------
   64|      0|		if (ret == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (64:7): [True: 0, False: 0]
  ------------------
   65|      0|			dropbear_log(LOG_WARNING, "Rejecting, user-verification not set");
   66|      0|		}
   67|      0|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   68|      0|	}
   69|    115|out:
   70|    115|	buf_free(sk_buffer);
   71|    115|	TRACE(("leave buf_sk_ed25519_verify: ret %d", ret))
   72|    115|	return ret;
   73|     65|}

