summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/gcm128 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Convert from %i to %dtb2022-09-051-5/+5
|
* Add missing $OpenBSD$ markers.tb2018-07-171-0/+1
|
* Do not rely upon malloc(0) not returning NULL. Not all malloc implementationsmiod2015-02-111-6/+10
| | | | | | have this property. Instead, skip the malloc and memcmp if their size is zero. Per bcook@ request in order to run on AIX
* use C rather than C++ array initialization syntaxbcook2014-08-161-37/+37
| | | | this causes errors with stricter C compilers
* Rewrite gcm128test as a table-driven regress instead of using defines.jsing2014-07-092-293/+852
| | | | | | This avoids compiler warnings for always true/false conditionals and makes the code readable. Also avoid pulling in modes_lcl.h, which should not be used outside the library.
* Include -DLIBRESSL_INTERNAL in regress makefiles.jsing2014-07-081-2/+2
| | | | ok miod@
* Build these tests with WARNINGS=Yes and -Werror, and do the necessarymiod2014-06-012-2/+5
| | | | fixes to keep building.
* Move the cts128 and gcm128 tests to regress.jsing2014-05-312-5/+361
|
* crypto/modes/gcm128.c can be used as its own selftest. Add it to regress,miod2014-04-171-0/+12
conveniently leaving the benchmark code not compiled in the test.