aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/security/credentials/ssl
Commit message (Collapse)AuthorAge
* Revert "Revert "All instances of exec_ctx being passed around in src/core ↵Gravatar Yash Tibrewal2017-12-06
| | | | removed""
* Revert "All instances of exec_ctx being passed around in src/core removed"Gravatar Yash Tibrewal2017-12-06
|
* Merge master after no Extern C changesGravatar Yash Tibrewal2017-11-30
|\
| * clang fmtGravatar ncteisen2017-11-17
| |
| * Remove all extern CGravatar ncteisen2017-11-17
| |
* | Merge masterGravatar Yash Tibrewal2017-11-16
|\|
| * s/NULL/nullptrGravatar Craig Tiller2017-11-10
| |
* | Merge with masterGravatar Yash Tibrewal2017-11-09
|\|
| * Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| |
| * Support SSL server certificate reloading.Gravatar Justin Burke2017-10-27
| |
| * Expose conversion of grpc to tsi cert pairsGravatar Justin Burke2017-10-23
| |
* | Removing instances of exec_ctx being passed around in functions inGravatar Yash Tibrewal2017-10-18
|/ | | | | | | | | | | src/core. exec_ctx is now a thread_local pointer of type ExecCtx instead of grpc_exec_ctx which is initialized whenever ExecCtx is instantiated. ExecCtx also keeps track of the previous exec_ctx so that nesting of exec_ctx is allowed. This means that there is only one exec_ctx being used at any time. Also, grpc_exec_ctx_finish is called in the destructor of the object, and the previous exec_ctx is restored to avoid breaking current functionality. The code still explicitly calls grpc_exec_ctx_finish because removing all such instances causes the code to break.
* Add comparison function for security connectors.Gravatar Mark D. Roth2017-10-16
|
* Changes for C to C++. Adding extern C to header files for compatibility.Gravatar Yash Tibrewal2017-10-02
| | | | Also converting to .cc
* Clang formatGravatar Yash Tibrewal2017-10-02
|
* More pointer conversions, deprecated string to char *, goto crossing ↵Gravatar Yash Tibrewal2017-10-02
| | | | initializations
* More pointer conversion required after making build changesGravatar Yash Tibrewal2017-10-02
|
* Add helpers for creating channel args.Gravatar Mark D. Roth2017-06-09
|
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* more TLS cleanup.Gravatar Julien Boeuf2017-04-26
| | | | | | | - using NULL-terminated strings as opposed to const unsigned char * with length since the credentials are in PEM format. - aligning the structures with gRPC so that we have less convertions to do back and forth.
* Fix sanityGravatar Craig Tiller2017-04-05
|
* Fix sanityGravatar Craig Tiller2017-04-03
|
* Optionalize compress, gather all the http2 filter bits together in ext/Gravatar Craig Tiller2017-04-03
|
* Add zalloc, convert a bunch of files to use itGravatar Craig Tiller2017-02-16
|
* Convert more users of grpc_slice_unref --> grpc_slice_unref_internalGravatar Craig Tiller2016-10-31
|
* Adding a method in channel creds to remove any attached call creds.Gravatar Julien Boeuf2016-09-22
| | | | | | This will be useful when talking to non-trusted load balancer (balancers which are not able to impersonate real backends) as these balancers should not receive bearer tokens.
* clang-formatGravatar Julien Boeuf2016-05-10
|
* Refactoring the core security code.Gravatar Julien Boeuf2016-05-04
As opposed to a flat directory, we now have the following structure: - security -context - credentials - composite - fake - google_default - iam - jwt - oauth2 - plugin - ssl - transport - util We have not refactored the test code yet but this PR is already large enough...