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
2016-03-31Rename obj_mac.h to nid.h and make it a multiply-includable header.David Benjamin
obj_mac.h is missing #include guards, so one cannot use NIDs without pulling in the OBJ_* functions which depend on the giant OID table. Give it #include guards, tidy up the style slightly, and also rename it to nid.h which is a much more reasonable name. obj_mac.h is kept as a forwarding header as, despite it being a little screwy, some code #includes it anyway. BUG=chromium:499653 Change-Id: Iec0b3f186c02e208ff1f7437bf27ee3a5ad004b7 Reviewed-on: https://boringssl-review.googlesource.com/7562 Reviewed-by: Steven Valdez <svaldez@google.com> Reviewed-by: David Benjamin <davidben@google.com>
2016-03-07Rename NID_x25519 to NID_X25519.David Benjamin
I went with NID_x25519 to match NID_sha1 and friends in being lowercase. However, upstream seems to have since chosen NID_X25519. Match their name. Change-Id: Icc7b183a2e2dfbe42c88e08e538fcbd242478ac3 Reviewed-on: https://boringssl-review.googlesource.com/7331 Reviewed-by: Steven Valdez <svaldez@google.com> Reviewed-by: David Benjamin <davidben@google.com>
2015-12-22Allocate a NID for X25519.David Benjamin
No corresponding OID, but SSL_CTX_set1_curves assumes NIDs exist. BUG=571231 Change-Id: Id5221cdc59132e26a89ae5f8978b946de690b4e0 Reviewed-on: https://boringssl-review.googlesource.com/6779 Reviewed-by: Adam Langley <agl@google.com>
2015-05-28Remove fake RLE compression OID.David Benjamin
(obj_dat.h and obj_mac.h are generated from the objects.txt change.) See upstream's 3c161d081e2d30549e787437d05ffa08122a5114. Also see upstream's 12048657a91b12e499d03ec9ff406b42aba67366 to give zlib a better comment. Change-Id: I86937f037f8e0f6179ba8072ccd972eca773c7ce Reviewed-on: https://boringssl-review.googlesource.com/4882 Reviewed-by: Adam Langley <agl@google.com>
2015-05-28Fix typo in objects.txtDavid Benjamin
See upstream's 8332f91cc0db4955259bca9f9138b5eff94d6e8c. Change-Id: I293acba511e6f390204247787c951a9df08cae68 Reviewed-on: https://boringssl-review.googlesource.com/4881 Reviewed-by: Adam Langley <agl@google.com>
2014-12-05Renegerate OID outputs.David Benjamin
The files should round-trip now. This corrects some discrepancies between obj_mac.h and obj_mac.num which were also present in upstream. There seems to be a mismerge in upstream's eebd5e5dd7dff58297ea52e1c21df8fccd593965. (The discrepancy is harmless; those OIDs are not in obj_xref.txt.) Change-Id: I1f6cda016533ec3182750310f9936f7e072b54a0 Reviewed-on: https://boringssl-review.googlesource.com/2474 Reviewed-by: Adam Langley <agl@google.com>
2014-07-15Move public headers to include/openssl/Adam Langley
Previously, public headers lived next to the respective code and there were symlinks from include/openssl to them. This doesn't work on Windows. This change moves the headers to live in include/openssl. In cases where some symlinks pointed to the same header, I've added a file that just includes the intended target. These cases are all for backwards-compat. Change-Id: I6e285b74caf621c644b5168a4877db226b07fd92 Reviewed-on: https://boringssl-review.googlesource.com/1180 Reviewed-by: David Benjamin <davidben@chromium.org> Reviewed-by: Adam Langley <agl@google.com>
2014-06-21Inital import.Adam Langley
Initial fork from f2d678e6e89b6508147086610e985d4e8416e867 (1.0.2 beta). (This change contains substantial changes from the original and effectively starts a new history.)