aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_kron.c
Commit message (Collapse)AuthorAgeFilesLines
* Copyright consolidation 06/10Rich Salz2016-05-171-51/+6
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* GH601: Various spelling fixes.FdaSilvaYY2016-02-051-1/+1
| | | | | Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
* Remove /* foo.c */ commentsRich Salz2016-01-261-1/+0
| | | | | | | | | | | | This was done by the following find . -name '*.[ch]' | /tmp/pl where /tmp/pl is the following three-line script: print unless $. == 1 && m@/\* .*\.[ch] \*/@; close ARGV if eof; # Close file to reset $. And then some hand-editing of other files. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
* Identify and move common internal libcrypto header filesRichard Levitte2015-05-141-1/+1
| | | | | | | | | | | | | There are header files in crypto/ that are used by a number of crypto/ submodules. Move those to crypto/include/internal and adapt the affected source code and Makefiles. The header files that got moved are: crypto/cryptolib.h crypto/md32_common.h Reviewed-by: Rich Salz <rsalz@openssl.org>
* More comment realignmentmaster-post-reformatMatt Caswell2015-01-221-7/+7
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-221-123/+124
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Further comment changes for reformat (master)Matt Caswell2015-01-221-1/+2
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Add missing bn_check_top()s to bn_kron.c, remove some miscellaneousGeoff Thorpe2003-12-011-3/+5
| | | | white-space, and include extra headers to satisfy debugging builds.
* BN_sqrtBodo Möller2000-11-301-2/+0
|
* Fix BN_kronecker so that it works correctly if 'a' is negativeBodo Möller2000-11-291-2/+2
| | | | (we need the two's complement of BN_lsw then).
* Correct a bug in BN_kronecker.Bodo Möller2000-11-281-1/+1
| | | | Sketch the test for BN_kronecker.
* Add bn_kron.c (BN_kronecker), which I forgot in the previous commit.Bodo Möller2000-11-281-0/+184
Also add the next file in advance so that I can't forget this one :-)