aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp/client/secure_credentials.cc
Commit message (Collapse)AuthorAge
* Add to all secure credentialsGravatar yang-g2015-08-10
|
* call grpc_init for defaultcredentialsGravatar yang-g2015-08-10
|
* Pass NULL as host by default. Use context.authority() or ↵Gravatar yang-g2015-07-31
| | | | channel.SslNameOverride() when set.
* Renaming jwt_credentials to service_account_jwt_access_credentials.Gravatar Julien Boeuf2015-07-22
|
* Update C++ implGravatar Craig Tiller2015-07-13
|
* Adding support for raw access token credentials.Gravatar Julien Boeuf2015-07-01
|
* support per call credentials in c++Gravatar Yang Gao2015-05-14
|
* Adressing comments.Gravatar Nicolas "Pixel" Noble2015-04-24
|
* Merge branch 'master' of https://github.com/grpc/grpc into the-purge-2Gravatar Nicolas "Pixel" Noble2015-04-11
|\ | | | | | | | | | | | | Conflicts: test/cpp/end2end/async_end2end_test.cc test/cpp/end2end/end2end_test.cc test/cpp/interop/client.cc
| * Have the secure credentials in separate header files.Gravatar Julien Boeuf2015-04-09
| |
* | Refactoring std::chrono out.Gravatar Nicolas Noble2015-04-08
|/
* Clean up unneeded includes and remove shutdown protobuf libraryGravatar Yang Gao2015-03-25
|
* wrap refresh token credentials in c++Gravatar Yang Gao2015-03-17
|
* Merge pull request #1011 from yang-g/jwtGravatar jboeuf2015-03-16
|\ | | | | Put back C++ JWTCredentials code and add a test case in interop test.
| * copy and paste does not workGravatar Yang Gao2015-03-13
| |
| * Add error logs when credentials are created with non-positive lifetimesGravatar Yang Gao2015-03-13
| |
| * Early return when duration is non-positiveGravatar Yang Gao2015-03-12
| |
* | Add missing GRPC_OVERRIDE, NFCGravatar Chilledheart2015-03-12
| |
| * The Jwt code was dropped somewhere in a merge. Put it backGravatar Yang Gao2015-03-11
|/
* Use ssl name override if it's in the channel argumentGravatar Yang Gao2015-03-10
|
* De-C++11-ificationGravatar Craig Tiller2015-03-02
|
* Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-02-23
|
* Remove dynamic_castGravatar Craig Tiller2015-02-23
|
* Credentials prototypingGravatar Craig Tiller2015-02-23
- Remove CredentialsFactory as it's unnecessary - Effectively make Credentials a channel factory, allowing different credential types to create different channel types - this gives us a hook so that InsecureCredentials can at runtime instantiate a different kind of channel as required - giving us a way of generating an openssl free version of grpc++. - Server credentials not touched yet, but they'll need to be updated.