summaryrefslogtreecommitdiffstats
path: root/net/quic/crypto/quic_decrypter.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/crypto/quic_decrypter.h')
-rw-r--r--net/quic/crypto/quic_decrypter.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/net/quic/crypto/quic_decrypter.h b/net/quic/crypto/quic_decrypter.h
deleted file mode 100644
index e5c5635..0000000
--- a/net/quic/crypto/quic_decrypter.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_QUIC_CRYPTO_QUIC_DECRYPTER_H_
-#define NET_QUIC_CRYPTO_QUIC_DECRYPTER_H_
-
-#include "net/base/net_export.h"
-#include "net/quic/crypto/crypto_protocol.h"
-#include "net/quic/quic_protocol.h"
-
-namespace net {
-
-class NET_EXPORT_PRIVATE QuicDecrypter {
- public:
- virtual ~QuicDecrypter() {}
-
- static QuicDecrypter* Create(CryptoTag algorithm);
-
- // Returns a newly created QuicData object containing the decrypted
- // |ciphertext| or NULL if there is an error.
- virtual QuicData* Decrypt(base::StringPiece associated_data,
- base::StringPiece ciphertext) = 0;
-};
-
-} // namespace net
-
-#endif // NET_QUIC_CRYPTO_QUIC_DECRYPTER_H_