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

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

Issue 12806002: Land Recent QUIC Changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor comment fix Created 7 years, 9 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/quic_encrypter.h ('k') | net/quic/quic_client_session_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/quic_encrypter.cc
diff --git a/net/quic/crypto/quic_encrypter.cc b/net/quic/crypto/quic_encrypter.cc
index cc1301332c41568ac1cf7b6e1c8a41a03d73d68c..ec521ecd3a9d31dd23b07d829ed2852db3ef26bb 100644
--- a/net/quic/crypto/quic_encrypter.cc
+++ b/net/quic/crypto/quic_encrypter.cc
@@ -10,6 +10,10 @@ namespace net {
// static
QuicEncrypter* QuicEncrypter::Create(CryptoTag algorithm) {
switch (algorithm) {
+ case kAESG:
+ // TODO(wtc): add support for Aes128GcmEncrypter.
+ // return new Aes128GcmEncrypter();
+ return new NullEncrypter();
case kNULL:
return new NullEncrypter();
default:
« no previous file with comments | « net/quic/crypto/quic_encrypter.h ('k') | net/quic/quic_client_session_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698