Index: net/quic/crypto/quic_decrypter.cc |
=================================================================== |
--- net/quic/crypto/quic_decrypter.cc (revision 187740) |
+++ net/quic/crypto/quic_decrypter.cc (working copy) |
@@ -3,6 +3,8 @@ |
// found in the LICENSE file. |
#include "net/quic/crypto/quic_decrypter.h" |
+ |
+#include "net/quic/crypto/aes_128_gcm_decrypter.h" |
#include "net/quic/crypto/null_decrypter.h" |
namespace net { |
@@ -10,6 +12,8 @@ |
// static |
QuicDecrypter* QuicDecrypter::Create(CryptoTag algorithm) { |
switch (algorithm) { |
+ case kAESG: |
+ return new Aes128GcmDecrypter(); |
case kNULL: |
return new NullDecrypter(); |
default: |