commit | 6c9e9c3a4bd72c4c779a9b213f15dbcd436fb55a | [log] [tgz] |
---|---|---|
author | vasilvv <vasilvv@google.com> | Thu Oct 08 08:16:57 2020 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Oct 08 08:17:27 2020 -0700 |
tree | 2fc6299030f9abf1e86cee190fe7d9f276185adb | |
parent | f1b46eb5cb664bed15547e534f23e0d01805f13b [diff] [blame] |
Replace QuicheStringPiece with absl::string_view Tested: TAP for global presubmit queue passed after automated deflaking of failures: http://mondo/deflaker/run/96cd5e40-b4cb-4ad8-8e9f-62d5c247385b http://mondo/deflaker/run/0a6209be-9013-4346-bd74-893b793b94d1 http://mondo/deflaker/run/f97a1fae-e543-4aea-a52f-88ddf6054d33 http://test/OCL:335945875:BASE:335945937:1602132930213:6b6e6496 PiperOrigin-RevId: 336088095 Change-Id: I3a39387a5c382c401e0cf55b937dbd5babc7bdf3
diff --git a/quic/tools/simple_ticket_crypter.h b/quic/tools/simple_ticket_crypter.h index 330c509..c150ae2 100644 --- a/quic/tools/simple_ticket_crypter.h +++ b/quic/tools/simple_ticket_crypter.h
@@ -24,13 +24,13 @@ ~SimpleTicketCrypter() override; size_t MaxOverhead() override; - std::vector<uint8_t> Encrypt(quiche::QuicheStringPiece in) override; + std::vector<uint8_t> Encrypt(absl::string_view in) override; void Decrypt( - quiche::QuicheStringPiece in, + absl::string_view in, std::unique_ptr<quic::ProofSource::DecryptCallback> callback) override; private: - std::vector<uint8_t> Decrypt(quiche::QuicheStringPiece in); + std::vector<uint8_t> Decrypt(absl::string_view in); void MaybeRotateKeys();