summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/ige (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add missing $OpenBSD$ markers.tb2018-07-171-1/+1
|
* Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes() (mostjsing2014-10-221-7/+8
| | | | with unchecked return values).
* 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-011-1/+3
| | | | fixes to keep building.
* Remove AES_bi_ige_encrypt() from libcrypto. This routine is supposed to usemiod2014-05-121-134/+0
| | | | | | | | | | | | | two keys and four IVs to do much magic, is specified as such with test vectors, but the implementation actually always uses the first key, and the test vectors were computed with it, so they are wrong. Fixing the code to match the intended specification would break interoperability with existing code (assuming such code would exist), so it is better to remove this interface, which is obviously too complex for mere mortals if even its author can not implement it correctly. Riding on the libcrypto major bump.
* Import the OpenSSL libcrypto tests in a form suitable for our rergressmiod2014-04-152-0/+510
infrastructure. The following tests have not been imported, for their code lacks a licence: asn1, rsa, sha256, sha512, wp.