summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bring in HKDF, from BoringSSL, with regress tests modified to bebeck2017-05-061-1/+2
| | | | | in C. Ride previous minor bump ok tom@ inoguchi@ jsing@
* link in rsa testbeck2017-01-251-1/+2
|
* unhook ocsp test from the default since it currently requires network access andbeck2017-01-181-2/+1
| | | | therefore appears to break in bluhm's test setup
* Add regress for X25519, converted from BoringSSL.jsing2016-11-051-1/+2
|
* Move pqueue regress from libcrypto to libssl, since that's where the pqueuejsing2016-11-041-2/+1
| | | | | code now lives. Also unbreak the regress following the symbol hiding changes in libssl.
* Add a nasty little ocsp regress test in the hope pedants will make it better.beck2016-07-041-1/+2
|
* Add initial regress tests for ASN.1 times.jsing2015-09-251-1/+2
|
* Temporarily revive MD4 for MS CHAP support.doug2015-09-141-1/+2
|
* Remove MD4 support from LibreSSL.doug2015-09-131-2/+1
| | | | | | | | MD4 should have been removed a long time ago. Also, RFC 6150 moved it to historic in 2011. Rides the major crank from removing SHA-0. Discussed with many including beck@, millert@, djm@, sthen@ ok jsing@, input + ok bcook@
* Remove SHA-0 support.doug2015-09-131-2/+1
| | | | | | | SHA-0 was withdrawn shortly after publication 20 years ago and replaced with SHA-1. This will require a major crank. ok bcook@, jsing@
* Remove obsolete MDC-2DES from libcrypto.doug2015-06-201-2/+1
| | | | ok deraadt@ jsing@ miod@
* GOST regression tests; from Dmitry Eremin-Solenikovmiod2014-11-181-1/+2
|
* Regression test for PKCS5_PBKDF2_HMAC(), written by Christian Heimes ; frommiod2014-07-111-1/+2
| | | | OpenSSL trunk
* Add an initial regress test for pkcs7.jsing2014-07-021-1/+2
| | | | This currently fails when signing/verifying with a detached signature.
* Add a skeleton regress for crypto/bio, which currently only coversjsing2014-06-221-1/+2
| | | | | BIO_get_port() and fails since the current code believes that "-1" is a valid port.
* Hook in the aead regress.jsing2014-06-221-1/+2
|
* Move the cts128 and gcm128 tests to regress.jsing2014-05-311-1/+2
|
* Move sha256 and sha512 tests to regress and wire them up.jsing2014-05-301-1/+3
|
* Add regression test for UTF8_{getc,putc}()guenther2014-05-181-2/+3
|
* Add poly1305 to libcrypto utilising Andrew Moon's public domainjsing2014-05-141-1/+2
| | | | | | implementation. ok miod@
* Add a fixed (read: non-SIGSEGV'ing) pq_test.miod2014-05-061-1/+2
|
* Initial version of a base64 regress.jsing2014-05-031-1/+2
|
* Simple sha{224,256,384,512} test using the FIPS 180-2 test vectors availablemiod2014-05-021-2/+3
| | | | from http://csrc.nist.gov/groups/ST/toolkit/examples.html
* Add ChaCha to libcrypto, based on djb's public domain implementation.jsing2014-05-011-1/+2
| | | | ok deraadt@
* When compiling with AES_WRAP_TEST, make main() return a meaningful valuemiod2014-04-221-1/+2
| | | | | instead of garbage, and add this to the libcrypto regress. Note these tests are incomplete, as they always use the default IV.
* crypto/modes/gcm128.c can be used as its own selftest. Add it to regress,miod2014-04-171-1/+2
| | | | conveniently leaving the benchmark code not compiled in the test.
* move enginetest to regress as was done with the other testsjsg2014-04-171-1/+2
|
* Import the OpenSSL libcrypto tests in a form suitable for our rergressmiod2014-04-151-0/+30
infrastructure. The following tests have not been imported, for their code lacks a licence: asn1, rsa, sha256, sha512, wp.