Index: net/quic/crypto/aead_base_decrypter.h |
diff --git a/net/quic/crypto/aead_base_decrypter.h b/net/quic/crypto/aead_base_decrypter.h |
index 5118b1117a32631d3e16267058e891b2499df371..1aeb6713d6f11949b7664519b8938af4e15de2c5 100644 |
--- a/net/quic/crypto/aead_base_decrypter.h |
+++ b/net/quic/crypto/aead_base_decrypter.h |
@@ -42,11 +42,6 @@ class NET_EXPORT_PRIVATE AeadBaseDecrypter : public QuicDecrypter { |
// QuicDecrypter implementation |
bool SetKey(base::StringPiece key) override; |
bool SetNoncePrefix(base::StringPiece nonce_prefix) override; |
- bool Decrypt(base::StringPiece nonce, |
- base::StringPiece associated_data, |
- base::StringPiece ciphertext, |
- unsigned char* output, |
- size_t* output_length) override; |
QuicData* DecryptPacket(QuicPacketSequenceNumber sequence_number, |
base::StringPiece associated_data, |
base::StringPiece ciphertext) override; |
@@ -80,6 +75,12 @@ class NET_EXPORT_PRIVATE AeadBaseDecrypter : public QuicDecrypter { |
#endif // !defined(USE_OPENSSL) |
private: |
+ bool Decrypt(base::StringPiece nonce, |
+ base::StringPiece associated_data, |
+ base::StringPiece ciphertext, |
+ unsigned char* output, |
+ size_t* output_length); |
+ |
#if defined(USE_OPENSSL) |
const EVP_AEAD* const aead_alg_; |
#else |