aboutsummaryrefslogtreecommitdiffstats
path: root/include/mp_core.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-09 22:27:16 +0000
committerlloyd <[email protected]>2008-09-09 22:27:16 +0000
commit57e8e85be6342b9495eb7ba9a3d96e508b984418 (patch)
tree7b35bc430f56c9b5848fd2a3e09c667e709c1780 /include/mp_core.h
parent456c1ef79167ef0cba5748842ca3748fa9ed7fc0 (diff)
Add 16x16->32 word Comba multiply and square
Diffstat (limited to 'include/mp_core.h')
-rw-r--r--include/mp_core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mp_core.h b/include/mp_core.h
index 7ec0d0c49..92949cd83 100644
--- a/include/mp_core.h
+++ b/include/mp_core.h
@@ -71,10 +71,13 @@ void bigint_wordmul(word, word, word*, word*);
void bigint_comba_mul4(word[8], const word[4], const word[4]);
void bigint_comba_mul6(word[12], const word[6], const word[6]);
void bigint_comba_mul8(word[16], const word[8], const word[8]);
+void bigint_comba_mul16(word[32], const word[16], const word[16]);
void bigint_comba_sqr4(word[8], const word[4]);
void bigint_comba_sqr6(word[12], const word[6]);
void bigint_comba_sqr8(word[16], const word[8]);
+void bigint_comba_sqr8(word[32], const word[16]);
+void bigint_comba_sqr16(word[64], const word[32]);
}