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

Issue 2272493002: Add TrustStoreNSS and TrustStoreCollection (Closed)

Created:
4 years, 4 months ago by mattm
Modified:
4 years, 3 months ago
Reviewers:
eroman, Ryan Sleevi
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@cert-trust-store-interface3-nss
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add TrustStoreNSS and TrustStoreCollection BUG=635203 Committed: https://crrev.com/9c63d444f0af74f7379839939412f5bd8341b590 Cr-Commit-Position: refs/heads/master@{#416417}

Patch Set 1 #

Total comments: 17

Patch Set 2 : update for changes in parent CL #

Patch Set 3 : nacl compile fix #

Patch Set 4 : rebase #

Patch Set 5 : BUILD.gn too #

Patch Set 6 : review changes #

Patch Set 7 : rebaes #

Total comments: 26

Patch Set 8 : review changes #

Total comments: 8

Patch Set 9 : rsleevi review changes #

Patch Set 10 : rebase #

Patch Set 11 : updates for the rebase #

Patch Set 12 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+799 lines, -12 lines) Patch
M net/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +3 lines, -0 lines 0 comments Download
M net/cert/internal/path_builder.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M net/cert/internal/trust_store.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
A net/cert/internal/trust_store_collection.h View 1 2 3 4 5 6 7 1 chunk +62 lines, -0 lines 0 comments Download
A net/cert/internal/trust_store_collection.cc View 1 2 3 4 5 6 7 1 chunk +38 lines, -0 lines 0 comments Download
A net/cert/internal/trust_store_collection_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +229 lines, -0 lines 0 comments Download
M net/cert/internal/trust_store_in_memory.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M net/cert/internal/trust_store_in_memory.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
A net/cert/internal/trust_store_nss.h View 1 2 3 4 5 6 7 8 1 chunk +50 lines, -0 lines 0 comments Download
A net/cert/internal/trust_store_nss.cc View 1 2 3 4 5 6 7 8 1 chunk +136 lines, -0 lines 0 comments Download
A net/cert/internal/trust_store_nss_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +246 lines, -0 lines 0 comments Download
M net/cert/internal/trust_store_test_helpers.h View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M net/cert/internal/trust_store_test_helpers.cc View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M net/net.gyp View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M net/net.gypi View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +6 lines, -0 lines 0 comments Download
M net/tools/cert_verify_tool/verify_using_path_builder.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +20 lines, -4 lines 0 comments Download

Messages

Total messages: 47 (36 generated)
mattm
This is a followup to https://codereview.chromium.org/2266333002/, so look at that first.
4 years, 4 months ago (2016-08-23 01:31:43 UTC) #4
eroman
https://codereview.chromium.org/2272493002/diff/1/net/cert/internal/trust_store_collection.cc File net/cert/internal/trust_store_collection.cc (right): https://codereview.chromium.org/2272493002/diff/1/net/cert/internal/trust_store_collection.cc#newcode13 net/cert/internal/trust_store_collection.cc:13: DCHECK(!primary_store_); suggest also adding DCHECK(store) -- or do you ...
4 years, 3 months ago (2016-08-23 18:48:54 UTC) #7
mattm
https://codereview.chromium.org/2272493002/diff/1/net/cert/internal/trust_store_collection.cc File net/cert/internal/trust_store_collection.cc (right): https://codereview.chromium.org/2272493002/diff/1/net/cert/internal/trust_store_collection.cc#newcode13 net/cert/internal/trust_store_collection.cc:13: DCHECK(!primary_store_); On 2016/08/23 18:48:54, eroman wrote: > suggest also ...
4 years, 3 months ago (2016-08-27 00:37:02 UTC) #18
eroman
lgtm https://codereview.chromium.org/2272493002/diff/160001/net/cert/internal/trust_store.h File net/cert/internal/trust_store.h (right): https://codereview.chromium.org/2272493002/diff/160001/net/cert/internal/trust_store.h#newcode143 net/cert/internal/trust_store.h:143: scoped_refptr<ParsedCertificate> cert, Should we make this a const-reference ...
4 years, 3 months ago (2016-08-27 01:53:39 UTC) #21
mattm
Adding Ryan to check the NSS bits. Also see Eric's question about anchor constraints. https://codereview.chromium.org/2272493002/diff/160001/net/cert/internal/trust_store.h ...
4 years, 3 months ago (2016-08-29 20:38:17 UTC) #27
eroman
I wonder how much this async design is going to cost us in performance. Each ...
4 years, 3 months ago (2016-08-31 17:59:16 UTC) #31
Ryan Sleevi
A few pedantry nits but the NSS API looks good % more pedantry https://codereview.chromium.org/2272493002/diff/200001/net/cert/internal/trust_store.h File ...
4 years, 3 months ago (2016-08-31 20:50:40 UTC) #32
mattm
On 2016/08/31 17:59:16, eroman wrote: > I wonder how much this async design is going ...
4 years, 3 months ago (2016-09-01 00:59:02 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2272493002/280001
4 years, 3 months ago (2016-09-02 23:33:29 UTC) #44
commit-bot: I haz the power
Committed patchset #12 (id:280001)
4 years, 3 months ago (2016-09-03 00:46:07 UTC) #45
commit-bot: I haz the power
4 years, 3 months ago (2016-09-03 00:49:12 UTC) #47
Message was sent while issue was closed.
Patchset 12 (id:??) landed as
https://crrev.com/9c63d444f0af74f7379839939412f5bd8341b590
Cr-Commit-Position: refs/heads/master@{#416417}

Powered by Google App Engine
This is Rietveld 408576698