Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(380)

Issue 1278763002: Add a ClientKeyStore to allow injection of non-platform keys for TLS client auth. (Closed)

Created:
5 years, 4 months ago by pneubeck (no reviews)
Modified:
5 years, 4 months ago
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@client_cert_store
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add a ClientKeyStore to allow injection of non-platform keys for TLS client auth. BUG=514575 Committed: https://crrev.com/abe6e9d132812e9d2d1065650cf09a724cb53a6d Cr-Commit-Position: refs/heads/master@{#345565}

Patch Set 1 : #

Total comments: 12

Patch Set 2 : Apply suggested redesign #

Patch Set 3 : Rebased, renamed the provider interface. #

Total comments: 6

Patch Set 4 : Removed ownership of Providers. #

Total comments: 8

Patch Set 5 : Addressed comments. #

Patch Set 6 : Nits. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+147 lines, -4 lines) Patch
M net/BUILD.gn View 1 2 3 4 5 2 chunks +10 lines, -2 lines 0 comments Download
M net/net.gypi View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M net/net_common.gypi View 1 2 3 4 2 chunks +4 lines, -0 lines 0 comments Download
A net/ssl/client_key_store.h View 1 2 3 4 5 1 chunk +73 lines, -0 lines 0 comments Download
A net/ssl/client_key_store.cc View 1 2 3 1 chunk +53 lines, -0 lines 0 comments Download
M net/ssl/ssl_platform_key_nss.cc View 1 2 chunks +5 lines, -2 lines 0 comments Download

Messages

Total messages: 50 (21 generated)
pneubeck (no reviews)
another part of separated from the major CL. ptal.
5 years, 4 months ago (2015-08-06 14:34:05 UTC) #3
nicole
lgtm
5 years, 4 months ago (2015-08-06 14:41:45 UTC) #7
nicole
lgtm lgtm
5 years, 4 months ago (2015-08-06 14:41:46 UTC) #9
nicole
lgtm lgtm
5 years, 4 months ago (2015-08-06 14:41:47 UTC) #11
nicole
lgtm lgtm
5 years, 4 months ago (2015-08-06 14:41:49 UTC) #13
nicole
lgtm lgtm
5 years, 4 months ago (2015-08-06 14:41:50 UTC) #15
commit-bot: I haz the power
This CL has an open dependency (Issue 1274143002 Patch 40001). Please resolve the dependency and ...
5 years, 4 months ago (2015-08-06 14:41:57 UTC) #17
Ryan Sleevi
from a design, the whole ProviderHandle system seems unnecessarily complex/complicated. why not simply // TODO(rsleevi): ...
5 years, 4 months ago (2015-08-08 00:14:22 UTC) #20
nicole
5 years, 4 months ago (2015-08-08 01:18:07 UTC) #22
pneubeck (no reviews)
On 2015/08/08 00:14:22, Ryan Sleevi wrote: > from a design, the whole ProviderHandle system seems ...
5 years, 4 months ago (2015-08-10 12:46:11 UTC) #24
davidben
On 2015/08/10 12:46:11, pneubeck wrote: > On 2015/08/08 00:14:22, Ryan Sleevi wrote: > > from ...
5 years, 4 months ago (2015-08-10 17:08:01 UTC) #25
davidben
(Got to reading more of the CL.) On 2015/08/08 00:14:22, Ryan Sleevi wrote: > from ...
5 years, 4 months ago (2015-08-10 22:11:49 UTC) #26
davidben
On 2015/08/10 22:11:49, David Benjamin wrote: > Hrm. Although this is actually going to blow ...
5 years, 4 months ago (2015-08-10 22:18:31 UTC) #27
pneubeck (no reviews)
On 2015/08/10 22:11:49, David Benjamin wrote: > (Got to reading more of the CL.) > ...
5 years, 4 months ago (2015-08-11 08:06:43 UTC) #28
Ryan Sleevi
Right, so the argument is the Singleton has to be thread-safe because people don't use ...
5 years, 4 months ago (2015-08-12 00:21:28 UTC) #29
pneubeck (no reviews)
On 2015/08/12 00:21:28, Ryan Sleevi wrote: > Right, so the argument is the Singleton has ...
5 years, 4 months ago (2015-08-12 12:30:50 UTC) #31
pneubeck (no reviews)
On 2015/08/12 12:30:50, pneubeck wrote: > On 2015/08/12 00:21:28, Ryan Sleevi wrote: > > Right, ...
5 years, 4 months ago (2015-08-12 12:55:59 UTC) #32
pneubeck (no reviews)
ptal https://codereview.chromium.org/1278763002/diff/40001/net/ssl/client_key_store.cc File net/ssl/client_key_store.cc (right): https://codereview.chromium.org/1278763002/diff/40001/net/ssl/client_key_store.cc#newcode51 net/ssl/client_key_store.cc:51: if (certificate->Equals(cert_and_key.certificate.get())) On 2015/08/08 00:14:22, Ryan Sleevi wrote: ...
5 years, 4 months ago (2015-08-13 08:20:19 UTC) #34
davidben
https://codereview.chromium.org/1278763002/diff/140001/net/ssl/client_key_store.cc File net/ssl/client_key_store.cc (right): https://codereview.chromium.org/1278763002/diff/140001/net/ssl/client_key_store.cc#newcode43 net/ssl/client_key_store.cc:43: if (provider->GetCertificateKey(certificate, &key)) Calling a virtual function inside a ...
5 years, 4 months ago (2015-08-14 22:16:48 UTC) #36
pneubeck (no reviews)
https://codereview.chromium.org/1278763002/diff/140001/net/ssl/client_key_store.cc File net/ssl/client_key_store.cc (right): https://codereview.chromium.org/1278763002/diff/140001/net/ssl/client_key_store.cc#newcode43 net/ssl/client_key_store.cc:43: if (provider->GetCertificateKey(certificate, &key)) On 2015/08/14 22:16:48, David Benjamin wrote: ...
5 years, 4 months ago (2015-08-17 14:34:19 UTC) #37
davidben
+mattm, do you mind looking over this for load-balancing purposes? The main relevant context is ...
5 years, 4 months ago (2015-08-20 01:58:38 UTC) #39
mattm
overall CL seems fine but I may be missing some of the SSLPrivateKey background.. https://codereview.chromium.org/1278763002/diff/160001/net/BUILD.gn ...
5 years, 4 months ago (2015-08-21 23:18:17 UTC) #40
pneubeck (no reviews)
https://codereview.chromium.org/1278763002/diff/160001/net/BUILD.gn File net/BUILD.gn (right): https://codereview.chromium.org/1278763002/diff/160001/net/BUILD.gn#newcode269 net/BUILD.gn:269: sources -= [ On 2015/08/21 23:18:17, mattm wrote: > ...
5 years, 4 months ago (2015-08-24 10:08:06 UTC) #42
pneubeck (no reviews)
ping
5 years, 4 months ago (2015-08-25 07:51:30 UTC) #43
mattm
lgtm
5 years, 4 months ago (2015-08-26 01:24:24 UTC) #44
pneubeck (no reviews)
thanks for reviewing.
5 years, 4 months ago (2015-08-26 07:19:31 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1278763002/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1278763002/220001
5 years, 4 months ago (2015-08-26 07:19:35 UTC) #48
commit-bot: I haz the power
Committed patchset #6 (id:220001)
5 years, 4 months ago (2015-08-26 08:47:24 UTC) #49
commit-bot: I haz the power
5 years, 4 months ago (2015-08-26 08:48:14 UTC) #50
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/abe6e9d132812e9d2d1065650cf09a724cb53a6d
Cr-Commit-Position: refs/heads/master@{#345565}

Powered by Google App Engine
This is Rietveld 408576698