bn_mul_words
void bn_mul_words(BN_ULONG *r, const BN_ULONG *a, int a_len, const BN_ULONG *b,
bn_mul_words(t, a, n, b, n);
bn_mul_words(r->d, a->d, a->top, b->d, b->top);