aboutsummaryrefslogtreecommitdiffstats
path: root/man (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-07-24Fix type of the last parameter for zptest in its man pageMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-06-19doc: vulnerabilities concerning cryptographic applicationsMattias Andrée1-1/+7
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-05-11Always satisfy n=qd+r to avoid confusionMattias Andrée2-39/+4
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-05-11Work on the manual and zstr_length checks that the radix is validMattias Andrée3-5/+10
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-05-09zdivmod: minor correctionMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-05-09n ≠ qd + r, that would just complicate thingsMattias Andrée1-0/+28
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-05-01zdiv.3: rationale for truncated divisionMattias Andrée1-0/+8
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-05-01zptest.3: why it is called NONPRIME rather than COMPOSITEMattias Andrée1-1/+7
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-04-29Add refsheetMattias Andrée1-2/+2
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-04-27Fix typo, thank you NevenMattias Andrée1-2/+2
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-04-27zinit.3: document `struct zahl`Mattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-04-27zstr: add new parameter, n: the known limit out the length of the outputMattias Andrée1-1/+17
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-04-26zstr_length.3: add missing blank spaceMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-04-24Zahl[en] is spelled with upper case ZMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-25zrand: add DEFAULT_RANDOM and FASTEST_RANDOMMattias Andrée1-0/+23
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-25zrand: add MODUNIFORM and add tests for QUASIUNIFORM and MODUNIFORMMattias Andrée1-0/+19
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-16Add note on performance of commutative functions with assignment to operandMattias Andrée1-0/+15
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-14Mostly optimisationsMattias Andrée4-4/+4
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-13Multiple changes:Mattias Andrée1-0/+43
1) Compile test with -O0, it takes too long otherwise. 2) Add error codes: ZERROR_0_POW_0, ZERROR_0_DIV_0, ZERROR_DIV_0, ZERROR_NEGATIVE. 3) Add workaround for a bug in clang (src/allocator.c). 4) Cleanups. 5) Minor optimisations. 6) Add inclusion guard for zahl.h. Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-05Add memory pool, also let the user know that libzahl is not designed for cryptographyMattias Andrée1-0/+6
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-05Fix bugs and add a randomised testingMattias Andrée1-1/+6
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-05More detailed description of division and modulusMattias Andrée7-4/+35
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-04Clean up, add zerror and zperror, fix bugs and add more testsMattias Andrée3-1/+65
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-03Add zptestMattias Andrée1-0/+5
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-03Add zbsetMattias Andrée10-0/+48
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-03Add new functions: zpowu and zmodpowuMattias Andrée4-0/+89
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-03Add zabs, zadd, zdiv, zmod, zmodmul, zmodpow, zneg, zpow, zsub, and the newly introduced zmodsqrMattias Andrée3-1/+48
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-02znot man page: notes on representation and tendness toward zeroMattias Andrée1-0/+18
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-02Add zand, zor, zxor, znot, zbtest, zsplit, and the newly introduced ztruncMattias Andrée5-1/+44
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-02Add zsets and zstrMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-02Since zstr_length is a generalisation of zbits, add reference to each other in the man pagesMattias Andrée2-2/+4
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-02zstr_length_positive is safe for non-positive, hence rename to zstr_length; and add zstr_lengthMattias Andrée3-29/+25
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-02Why zbits returns 1 for 0Mattias Andrée1-0/+8
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-01Man pages: rationale for non-essential arithmetic functionsMattias Andrée5-0/+19
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-01Add more man pagesMattias Andrée18-6/+476
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-03-01Add more man pagesMattias Andrée20-1/+649
Signed-off-by: Mattias Andrée <maandree@kth.se>
2016-02-29Add a number of man pagesMattias Andrée18-0/+584
Signed-off-by: Mattias Andrée <maandree@kth.se>