NullDecrypter      14 net/quic/crypto/null_decrypter.cc NullDecrypter::NullDecrypter() {}
NullDecrypter      16 net/quic/crypto/null_decrypter.cc bool NullDecrypter::SetKey(StringPiece key) { return key.empty(); }
NullDecrypter      18 net/quic/crypto/null_decrypter.cc bool NullDecrypter::SetNoncePrefix(StringPiece nonce_prefix) {
NullDecrypter      22 net/quic/crypto/null_decrypter.cc bool NullDecrypter::Decrypt(StringPiece /*nonce*/,
NullDecrypter      47 net/quic/crypto/null_decrypter.cc QuicData* NullDecrypter::DecryptPacket(QuicPacketSequenceNumber /*seq_number*/,
NullDecrypter      71 net/quic/crypto/null_decrypter.cc StringPiece NullDecrypter::GetKey() const { return StringPiece(); }
NullDecrypter      73 net/quic/crypto/null_decrypter.cc StringPiece NullDecrypter::GetNoncePrefix() const { return StringPiece(); }
NullDecrypter      75 net/quic/crypto/null_decrypter.cc bool NullDecrypter::ReadHash(QuicDataReader* reader, uint128* hash) {
NullDecrypter      88 net/quic/crypto/null_decrypter.cc uint128 NullDecrypter::ComputeHash(const string& data) const {
NullDecrypter      19 net/quic/crypto/null_decrypter.h class NET_EXPORT_PRIVATE NullDecrypter : public QuicDecrypter {
NullDecrypter      21 net/quic/crypto/null_decrypter.h   NullDecrypter();
NullDecrypter      22 net/quic/crypto/null_decrypter.h   virtual ~NullDecrypter() {}
NullDecrypter      28 net/quic/crypto/null_decrypter_test.cc   NullDecrypter decrypter;
NullDecrypter      47 net/quic/crypto/null_decrypter_test.cc   NullDecrypter decrypter;
NullDecrypter      62 net/quic/crypto/null_decrypter_test.cc   NullDecrypter decrypter;
NullDecrypter      22 net/quic/crypto/quic_decrypter.cc       return new NullDecrypter();