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

Unified Diff: net/quic/crypto/aead_base_encrypter_openssl.cc

Issue 1660593004: Landing Recent QUIC changes until 01/28/2016 18:41 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0202
Patch Set: Created 4 years, 11 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/crypto/aead_base_encrypter_nss.cc ('k') | net/quic/crypto/common_cert_set.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/aead_base_encrypter_openssl.cc
diff --git a/net/quic/crypto/aead_base_encrypter_openssl.cc b/net/quic/crypto/aead_base_encrypter_openssl.cc
index ed475d8d7822664a66044ea25ac265265b018c13..699c60ad934b0d787c0bdc2465ffa3d5bc80e00f 100644
--- a/net/quic/crypto/aead_base_encrypter_openssl.cc
+++ b/net/quic/crypto/aead_base_encrypter_openssl.cc
@@ -10,6 +10,7 @@
#include "base/memory/scoped_ptr.h"
#include "net/quic/quic_flags.h"
+#include "net/quic/quic_utils.h"
using base::StringPiece;
@@ -120,15 +121,8 @@ bool AeadBaseEncrypter::EncryptPacket(QuicPathId path_id,
ALIGNAS(4) char nonce_buffer[kMaxNonceSize];
memcpy(nonce_buffer, nonce_prefix_, nonce_prefix_size_);
if (FLAGS_quic_include_path_id_in_iv) {
- // Setting the nonce below relies on QuicPathId and QuicPacketNumber being
- // specific sizes.
- static_assert(sizeof(path_id) == 1, "Size of QuicPathId changed.");
- static_assert(sizeof(packet_number) == 8,
- "Size of QuicPacketNumber changed.");
- // Use path_id and lower 7 bytes of packet_number as lower 8 bytes of nonce.
uint64_t path_id_packet_number =
- (static_cast<uint64_t>(path_id) << 56) | packet_number;
- DCHECK(path_id != kDefaultPathId || path_id_packet_number == packet_number);
+ QuicUtils::PackPathIdAndPacketNumber(path_id, packet_number);
memcpy(nonce_buffer + nonce_prefix_size_, &path_id_packet_number,
sizeof(path_id_packet_number));
} else {
« no previous file with comments | « net/quic/crypto/aead_base_encrypter_nss.cc ('k') | net/quic/crypto/common_cert_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698