Commit Graph

33 Commits

Author SHA1 Message Date
hasufell a265a89a0d
ALL: use const modifiers on parameters where possible 2014-06-09 00:10:35 +02:00
hasufell e4c5094af9
ALL: improve readability 2014-05-25 23:04:22 +02:00
hasufell 4a07ceadcd
ALL: use uint32_t instead of unsigned int 2014-05-25 22:47:54 +02:00
hasufell 4d8b6a78e5
POLY: provide cleanup function for polynomial arrays 2014-05-25 20:57:40 +02:00
hasufell fd0ba50c85
POLY: rework poly_new()
Don't allocate anything here, just operate on
the parameters.
2014-05-25 04:16:48 +02:00
hasufell 13b54fa7f5
DOC: add brief/file comments 2014-05-25 02:15:24 +02:00
hasufell f3ac38a6c0
POLY: add print functions 2014-05-25 01:40:07 +02:00
hasufell c075f4a0a3
ALL: Convert codebase to flint
POLY, ENC, DEC all converted. RAND will have to be revised.
2014-05-24 23:16:25 +02:00
Alexander Rolfes dd68d1a094 Merge branch 'master' of ssh://gitlab.hasufell.de:22022/pcq/quantumcrypto
Conflicts:
	src/poly.h solved
	src/ntru_decrypt.c fixed

ntru_decrypt.c used changed function heading
2014-05-13 09:51:47 +02:00
hasufell 782ccf0524
POLY: improve error handling 2014-05-13 00:20:46 +02:00
hasufell 30e18177e8
POLY: allow signed int in MP_SET_INT
Now you can pass MP_SET_INT(&foo, -1) without having
to call mp_neg() later etc.
2014-05-13 00:12:03 +02:00
Christoph Prüßner 4030335661 POLY: implemented pb_normalize
normalizes a polynom by defining a numerical range
for each factor of a polynom.
2014-05-12 13:46:59 +02:00
hasufell 8fbcbe4144
POLY: rearrange header declarations 2014-04-30 17:23:39 +02:00
hasufell afa06ce0b9
POLY: remove unused context parameter of build_polynom() 2014-04-30 17:22:25 +02:00
hasufell f2b4183c68
POLY: add pb_mp_mul() 2014-04-30 17:19:58 +02:00
hasufell 9c89b79627
POLY: add init_integers() 2014-04-30 17:18:08 +02:00
hasufell 12fa21f5b2
POLY: make get_degree() public 2014-04-30 17:16:50 +02:00
hasufell 4d5f44c900
POLY: first try of implementing pb_inverse_poly_p()
This ends up as an infinite loop though.
2014-04-29 14:27:52 +02:00
hasufell 6c0f94435e
POLY: introduce delete_polynom_multi()
Just a wrapper around delete_polynom() to handle multiple args.
Must be called with NULL as last argument!
2014-04-22 20:47:10 +02:00
hasufell 5459f94937
POLY: use our MACROS for error handling
All mp_* and pb_* functions that return an error code
should only be called via a MACRO which handles the error.
2014-04-22 20:47:10 +02:00
hasufell 320af3c617
POLY: introduce delete_polynom_multi()
Just a wrapper around delete_polynom() to handle multiple args.
Must be called with NULL as last argument!
2014-04-22 20:46:12 +02:00
hasufell 6594a022fe
POLY: use our MACROS for error handling
All mp_* and pb_* functions that return an error code
should only be called via a MACRO which handles the error.
2014-04-22 20:46:12 +02:00
hasufell 302cd5e4d8
POLY: fix pb_inverse_poly_q()
Should be correct now. Had to add get_degree(), because
pb_clamp() in conjunction with pb_cmp() does not give
expected results, see https://github.com/libtom/libtompoly/issues/3
...so don't use it.
2014-04-17 23:43:29 +02:00
hasufell cc82e4e3bd
POLY: cleanup pb_starmultiply()
* avoid side effects
* use MP_DIV instead of MP_MOD
* move mp_modulus initialization to outer scope
2014-04-17 17:36:57 +02:00
hasufell 2300587fec
POLY: add erase_polynom() function 2014-04-17 17:34:48 +02:00
hasufell a49a5d2e8c
POLY: improve error handling
Use MP_ADD, MP_MUL, PB_ADD, PB_MUL etc instead of the mp_add,...
functions to make use of error handling.
2014-04-17 02:09:49 +02:00
hasufell 56b20220ba
POLY: first try of inverting polynomials 2014-04-16 23:23:41 +02:00
hasufell df1df23e09
POLY: first try of pb_starmultiply() 2014-04-15 22:50:42 +02:00
hasufell e60d9c9bac
POLY: add build_polynom() method
We can build a polynom via an array of integers or just an empty
one, so that it is initialized and properly allocated.
2014-04-15 18:49:17 +02:00
hasufell 783858a52c
POLY: use size_t 2014-04-15 18:20:08 +02:00
hasufell 4a7e50a194
POLY: add delete_polynom() function
This deletes both the internal structure and the pointer.
2014-04-15 14:22:46 +02:00
hasufell f6e879cba8
LICENSE: fix header 2014-04-15 13:35:04 +02:00
hasufell 2029e91c47
POLY: add basic polynomial wrappers
Also provide a draw_polynomial function for human readable
output of the polynomial.
2014-04-14 22:28:35 +02:00