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

Issue 1238413004: Framework for iterating over certificates in CT database from Chromium code. (not for review) (Closed)

Created:
5 years, 5 months ago by eroman
Modified:
3 years, 5 months ago
Reviewers:
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

***** MOVED TO: https://chromium-review.googlesource.com/580490 ****** Framework for iterating over certificates in CT database from Chromium code. (not for review). See the README file for details on how to use this.

Patch Set 1 #

Patch Set 2 : more utils #

Patch Set 3 : move from unittest --> tools #

Patch Set 4 : Make it multi-threaded #

Patch Set 5 : Snapshot #

Patch Set 6 : Update to use GN #

Patch Set 7 : Make it more newbie friendly (setup scripts, readme, and default mapper) #

Patch Set 8 : more updates to readme #

Patch Set 9 : make command line less awkward #

Patch Set 10 : Fix the dump script to include ExtraCerts and de-duplicate them #

Patch Set 11 : Iterate entries instead of certificates (preserve extra certs) #

Patch Set 12 : make html browser less awful #

Patch Set 13 : fix bug #

Patch Set 14 : rebase so that it compiles #

Patch Set 15 : Update documentation #

Patch Set 16 : update #

Patch Set 17 : Make samples page work #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2479 lines, -0 lines) Patch
M BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
M net/cert/internal/cert_errors.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +28 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/FILE_FORMAT.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +28 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/README View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +53 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/ct_mapper_main.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +292 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/dump-ct.go View 1 2 3 4 5 6 7 8 9 10 1 chunk +238 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/dump-ct.sh View 1 2 3 4 5 6 7 8 9 10 1 chunk +40 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/entry.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +39 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/entry.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +19 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/entry_reader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +33 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/entry_reader.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +210 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/index.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +63 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/main.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +250 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/mapper.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +35 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/mapper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +256 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/metrics.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +103 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/metrics.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +129 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/my_visitor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +17 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/my_visitor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +258 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/sync-ct-database.sh View 1 2 3 4 5 6 7 8 9 10 1 chunk +32 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/visitor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +35 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/write_results.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +19 lines, -0 lines 0 comments Download
A net/tools/ct_mapper/write_results.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +299 lines, -0 lines 0 comments Download

Messages

Total messages: 7 (7 generated)
eroman
Description was changed from ========== Framework for iterating over certificates in CT database from Chromium ...
5 years, 2 months ago (2015-10-24 00:51:32 UTC) #1
eroman
Description was changed from ========== Framework for iterating over certificates in CT database from Chromium ...
5 years, 2 months ago (2015-10-24 00:52:00 UTC) #2
eroman
Description was changed from ========== Framework for iterating over certificates in CT database from Chromium ...
5 years, 2 months ago (2015-10-24 00:52:08 UTC) #3
eroman
Description was changed from ========== Framework for iterating over certificates in CT database from Chromium ...
5 years, 2 months ago (2015-10-24 01:20:28 UTC) #4
eroman
Description was changed from ========== Framework for iterating over certificates in CT database from Chromium ...
5 years, 1 month ago (2015-10-28 20:53:57 UTC) #5
eroman
Description was changed from ========== Framework for iterating over certificates in CT database from Chromium ...
5 years, 1 month ago (2015-10-28 20:54:33 UTC) #6
eroman
3 years, 5 months ago (2017-07-20 20:56:04 UTC) #7
Description was changed from

==========
Framework for iterating over certificates in CT database from Chromium code.
(not for review).

See the README file for details on how to use this.
==========

to

==========
***** MOVED TO: https://chromium-review.googlesource.com/580490 ******

Framework for iterating over certificates in CT database from Chromium code.
(not for review).

See the README file for details on how to use this.
==========

Powered by Google App Engine
This is Rietveld 408576698