aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/security
Commit message (Collapse)AuthorAge
* clang-formatGravatar Craig Tiller2015-11-19
|
* Addressing comments.Gravatar Julien Boeuf2015-10-20
| | | | | The composite channel credentials creation does not change the passed-in channel creds anymore.
* Fixing mem leak and compilation error in tsan.Gravatar Julien Boeuf2015-10-10
|
* Got the core test passing.Gravatar Julien Boeuf2015-10-09
|
* Fix Windows compilationGravatar Craig Tiller2015-09-23
|
* Finish cleanupGravatar Craig Tiller2015-09-22
|
* clang-format all core filesGravatar Craig Tiller2015-09-22
|
* Final patches for renameGravatar Craig Tiller2015-09-22
|
* Move argument passing to start of listGravatar Craig Tiller2015-09-22
|
* Rename initGravatar Craig Tiller2015-09-22
|
* Rename runGravatar Craig Tiller2015-09-22
|
* Move argument passing to start of listGravatar Craig Tiller2015-09-22
|
* Move arguments to the start of listsGravatar Craig Tiller2015-09-22
|
* indent pass to get logical source lines on one physical lineGravatar Craig Tiller2015-09-22
|
* Rename call_list to closure_listGravatar Craig Tiller2015-09-22
|
* Merge github.com:grpc/grpc into we-are-oneGravatar Craig Tiller2015-09-22
|\
* | Fix testsGravatar Craig Tiller2015-09-22
| |
* | FixesGravatar Craig Tiller2015-09-21
| |
* | Call list progressGravatar Craig Tiller2015-09-21
| |
* | Call list progressGravatar Craig Tiller2015-09-18
| |
* | Getting stuff workingGravatar Craig Tiller2015-09-16
| |
* | Tests compileGravatar Craig Tiller2015-09-16
| |
| * Merge branch 'master' of github.com:grpc/grpc into core_creds_pluginGravatar Julien Boeuf2015-09-15
| |\ | |/ |/|
| * Adding tests for credentials plugin.Gravatar Julien Boeuf2015-09-14
| |
* | Core compiles with -Wsign-conversionGravatar Craig Tiller2015-09-10
| |
* | Merge pull request #3255 from ctiller/we-should-buildGravatar Craig Tiller2015-09-04
|\ \ | | | | | | Fix compilation
| * | Fix compilationGravatar Craig Tiller2015-09-04
| | |
* | | Secure endpoint test should call grpc_init.Gravatar Nicolas "Pixel" Noble2015-09-04
| | |
* | | Merge github.com:grpc/grpc into second-comingGravatar Craig Tiller2015-08-31
|\ \ \ | | |/ | |/|
* | | Revert "Revert "Refactor Endpoint API""Gravatar Craig Tiller2015-08-27
| | |
* | | Revert "Refactor Endpoint API"Gravatar Craig Tiller2015-08-27
| | |
| * | Credentials cleanup:Gravatar Julien Boeuf2015-08-25
| | | | | | | | | | | | | | | | | | | | | | | | - Removing service_accounts credentials. These credentials just have drawbacks compared to service_account_jwt_access credentials, notably in terms for security. - Renaming Google specific credentials with a Google prefix for C and C++. This should be done as well for wrapped languages.
| * | Fixing tests.Gravatar Julien Boeuf2015-08-25
| | |
* | | Merge github.com:grpc/grpc into endpointsGravatar Craig Tiller2015-08-24
|\| |
* | | Refactor Endpoint APIGravatar Craig Tiller2015-08-21
| | | | | | | | | | | | | | | | | | - Allow reads to complete immediately - Unify read/write signatures - Simplify memory management to allow future optimization work
| * | Merge github.com:grpc/grpc into y12kdm3Gravatar Craig Tiller2015-08-18
| |\ \ | |/ / |/| |
* | | clang-format all sourceGravatar Craig Tiller2015-08-18
| | |
| * | Merge github.com:grpc/grpc into y12kdm3Gravatar Craig Tiller2015-08-12
| |\ \ | |/ / |/| | | | | | | | | | | Conflicts: src/core/security/google_default_credentials.c test/core/security/verify_jwt.c
* | | Fixing clock type.Gravatar Julien Boeuf2015-08-11
| | |
* | | Merge pull request #2788 from ctiller/kinetic-lopsided-poetryGravatar Nicolas Noble2015-08-07
|\ \ \ | | | | | | | | Testing port server
| | * | Update toolsGravatar Craig Tiller2015-08-06
| | | |
| | * | Add a test of non-blocking API behaviorGravatar Craig Tiller2015-08-06
| | | | | | | | | | | | | | | | ... also fix things that were broken :)
* | | | Merge branch 'master' of github.com:grpc/grpc into ↵Gravatar Julien Boeuf2015-08-05
|\ \ \ \ | | |/ / | |/| | | | | | server_creds_auth_md_processor
| | * | Merge github.com:grpc/grpc into kinetic-lopsided-poetryGravatar Craig Tiller2015-08-05
| | |\ \ | | |/ / | |/| |
| | * | Testing port serverGravatar Craig Tiller2015-08-04
| | |/ | | | | | | | | | | | | | | | | | | | | | run_tests.py will start a server (if it's not running, or if the running port server mismatches the 'current' one) that serves ports to use for tests. The server is left running after run_tests.py finishes, so that in environments such as Mac and Windows where tests run unshielded from each other, we don't start jumping on already used ports.
* | | Merge branch 'auth_md_processor' of github.com:jboeuf/grpc into ↵Gravatar Craig Tiller2015-07-31
|\ \ \ | |_|/ |/| | | | | complain-with-both-passion-and-meaning
| | * Merge github.com:grpc/grpc into plucking-hellGravatar Craig Tiller2015-07-30
| | |\ | |_|/ |/| |
| | * Allow specific pollers to be wokenGravatar Craig Tiller2015-07-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, if two threads call grpc_completion_queue_pluck on the same completion queue for different tags, there is a 50% chance that we deliver the completion wakeup to the wrong poller - forcing the correct poller to wait until its polling times out before it can return an event up to the application. This change tweaks our polling interfaces so that we can indeed wake a specific poller. Nothing has been performance tuned yet. It's definitely sub-optimal in a number of places. Wakeup file-descriptors should be recycled. We should have a path that avoids calling poll() followed by epoll(). We can probably live without it right at the second though. This code will fail on Windows at least (I'll do that port when I'm in the office and have a Windows machine).
* | | Fix clock type mismatchGravatar yang-g2015-07-28
| |/ |/|
* | Renaming jwt_credentials to service_account_jwt_access_credentials.Gravatar Julien Boeuf2015-07-22
| |