summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Initial version of a base64 regress.jsing2014-05-033-1/+382
|
* Simple sha{224,256,384,512} test using the FIPS 180-2 test vectors availablemiod2014-05-022-2/+45
| | | | from http://csrc.nist.gov/groups/ST/toolkit/examples.html
* KNF.jsing2014-05-011-324/+296
|
* Provide an EVP implementation for ChaCha.jsing2014-05-012-0/+17
| | | | ok miod@
* Add ChaCha to libcrypto, based on djb's public domain implementation.jsing2014-05-013-1/+270
| | | | ok deraadt@
* When compiling with AES_WRAP_TEST, make main() return a meaningful valuemiod2014-04-222-1/+14
| | | | | instead of garbage, and add this to the libcrypto regress. Note these tests are incomplete, as they always use the default IV.
* ECDSA signature computation involves a random number. Remove the test trying tomiod2014-04-181-116/+0
| | | | | force what RAND_bytes() will return and comparing it against known values - I can't let you do this, Dave.
* crypto/modes/gcm128.c can be used as its own selftest. Add it to regress,miod2014-04-172-1/+14
| | | | conveniently leaving the benchmark code not compiled in the test.
* Invoke OPENSSL_add_all_algorithms_noconf() to enforce OPENSSL_cpuid_setup()miod2014-04-171-5/+1
| | | | | has been called, for, depending how libcrypto, it might be a hidden symbol. Reported by jsg@
* move enginetest to regress as was done with the other testsjsg2014-04-173-1/+292
|
* adapt to the less old des apijsg2014-04-161-49/+49
|
* Import the OpenSSL libcrypto tests in a form suitable for our rergressmiod2014-04-1548-0/+9639
infrastructure. The following tests have not been imported, for their code lacks a licence: asn1, rsa, sha256, sha512, wp.