Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-21Fix some malloc test crashs.David Benjamin
This isn't exhaustive. There are still failures in some tests which probably ought to get C++'d first. Change-Id: Iac58df9d98cdfd94603d54374a531b2559df64c3 Reviewed-on: https://boringssl-review.googlesource.com/4795 Reviewed-by: Adam Langley <agl@google.com>
2015-04-29Don't inclue crypto/ec/internal.h in ec_test.cc.David Benjamin
MSVC seems to dislike the zero-array trick in C++, but not C. Turns out there was no need for the include, so that's an easy fix. Change-Id: I6def7b430a450c4ff7eeafa3611f0d40f5fc5945 Reviewed-on: https://boringssl-review.googlesource.com/4580 Reviewed-by: Adam Langley <agl@google.com>
2015-04-29Ensure EC private keys retain leading zerosDavid Benjamin
RFC 5915 requires the use of the I2OSP primitive as defined in RFC 3447 for encoding ECPrivateKey. Fix this and add a test. See also upstream's 30cd4ff294252c4b6a4b69cbef6a5b4117705d22, though it mixes up degree and order. Change-Id: I81ba14da3c8d69e3799422c669fab7f16956f322 Reviewed-on: https://boringssl-review.googlesource.com/4469 Reviewed-by: Adam Langley <agl@google.com>
2015-04-29Convert ec_test to C++David Benjamin
Change-Id: I5e25ddbc87370b58d9b6fc410f51e259947df8dd Reviewed-on: https://boringssl-review.googlesource.com/4468 Reviewed-by: Adam Langley <agl@google.com>