summaryrefslogtreecommitdiffstats
path: root/net/quic/crypto/quic_decrypter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/crypto/quic_decrypter.cc')
-rw-r--r--net/quic/crypto/quic_decrypter.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/quic/crypto/quic_decrypter.cc b/net/quic/crypto/quic_decrypter.cc
index fb19d4c..2eafdc3 100644
--- a/net/quic/crypto/quic_decrypter.cc
+++ b/net/quic/crypto/quic_decrypter.cc
@@ -4,7 +4,7 @@
#include "net/quic/crypto/quic_decrypter.h"
-#include "net/quic/crypto/aes_128_gcm_12_decrypter.h"
+#include "net/quic/crypto/aes_128_gcm_decrypter.h"
#include "net/quic/crypto/null_decrypter.h"
namespace net {
@@ -13,7 +13,7 @@ namespace net {
QuicDecrypter* QuicDecrypter::Create(QuicTag algorithm) {
switch (algorithm) {
case kAESG:
- return new Aes128Gcm12Decrypter();
+ return new Aes128GcmDecrypter();
case kNULL:
return new NullDecrypter();
default: