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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 2108153003: Roll src/third_party/boringssl/src 3cab5572b..95c6956 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: roll a little further Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « third_party/boringssl/win-x86_64/crypto/chacha/chacha-x86_64.asm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 112916068a510964b410fe34c4a34b5e3e5b0961..85598fcf2124533125813162c681919a8b87b79b 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -31069,6 +31069,9 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Net.SSLServerKeyExchangeHash" enum="SSLHashAlgorithm">
+ <obsolete>
+ Replaced by Net.SSLSignatureAlgorithm.
+ </obsolete>
<owner>davidben@chromium.org</owner>
<summary>
For each SSL connection with a full handshake using a DHE- or ECDHE-based
@@ -31088,6 +31091,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.SSLSignatureAlgorithm" enum="SSLSignatureAlgorithm">
+ <summary>
+ For each SSL connection with a full handshake using a DHE- or ECDHE-based
+ key exchange, the signature algorithm used to authenticate the peer. In TLS
+ 1.2, this is the signature on the ServerKeyExchange message. (Note: Although
+ the ECDSA values specify a curve, the curve is only enforced in TLS 1.3.)
+ </summary>
+</histogram>
+
<histogram name="Net.SSLv3FallbackToRenegoPatchedServer"
enum="TLSRenegotiationPatched">
<obsolete>
@@ -90353,6 +90365,9 @@ To add a new entry, add it with any value and run test to compute valid value.
</enum>
<enum name="SSLHashAlgorithm" type="int">
+ <obsolete>
+ Removed June 2016.
+ </obsolete>
<int value="0" label="None (unused)"/>
<int value="1" label="MD5"/>
<int value="2" label="SHA-1"/>
@@ -90458,6 +90473,17 @@ To add a new entry, add it with any value and run test to compute valid value.
label="Displayed clock interstitial. (DISPLAYED_CLOCK_INTERSTITIAL)"/>
</enum>
+<enum name="SSLSignatureAlgorithm" type="int">
+ <int value="513" label="rsa_pkcs1_sha1"/>
+ <int value="515" label="ecdsa_sha1"/>
+ <int value="1025" label="rsa_pkcs1_sha256"/>
+ <int value="1027" label="ecdsa_secp256r1_sha256"/>
+ <int value="1281" label="rsa_pkcs1_sha384"/>
+ <int value="1283" label="ecdsa_secp384r1_sha384"/>
+ <int value="1537" label="rsa_pkcs1_sha512"/>
+ <int value="1539" label="ecdsa_secp521r1_sha512"/>
+</enum>
+
<enum name="StarsLaunchLocation" type="int">
<int value="0" label="All Items"/>
<int value="1" label="Uncategorized"/>
« no previous file with comments | « third_party/boringssl/win-x86_64/crypto/chacha/chacha-x86_64.asm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698