HomeSort by relevance Sort by last modified time
    Searched refs:GetMaxPlaintextSize (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/net/quic/crypto/
null_encrypter_test.cc 36 TEST_F(NullEncrypterTest, GetMaxPlaintextSize) {
38 EXPECT_EQ(1000u, encrypter.GetMaxPlaintextSize(1012));
39 EXPECT_EQ(100u, encrypter.GetMaxPlaintextSize(112));
40 EXPECT_EQ(10u, encrypter.GetMaxPlaintextSize(22));
chacha20_poly1305_encrypter_test.cc 93 TEST(ChaCha20Poly1305EncrypterTest, GetMaxPlaintextSize) {
95 EXPECT_EQ(1000u, encrypter.GetMaxPlaintextSize(1012));
96 EXPECT_EQ(100u, encrypter.GetMaxPlaintextSize(112));
97 EXPECT_EQ(10u, encrypter.GetMaxPlaintextSize(22));
aes_128_gcm_12_encrypter_test.cc 280 TEST(Aes128Gcm12EncrypterTest, GetMaxPlaintextSize) {
282 EXPECT_EQ(1000u, encrypter.GetMaxPlaintextSize(1012));
283 EXPECT_EQ(100u, encrypter.GetMaxPlaintextSize(112));
284 EXPECT_EQ(10u, encrypter.GetMaxPlaintextSize(22));
null_encrypter.h 34 virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const OVERRIDE;
quic_encrypter.h 73 virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const = 0;
null_encrypter.cc 51 size_t NullEncrypter::GetMaxPlaintextSize(size_t ciphertext_size) const {
aead_base_encrypter.h 54 virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const OVERRIDE;
aead_base_encrypter_nss.cc 142 size_t AeadBaseEncrypter::GetMaxPlaintextSize(size_t ciphertext_size) const {
aead_base_encrypter_openssl.cc 132 size_t AeadBaseEncrypter::GetMaxPlaintextSize(size_t ciphertext_size) const {
  /external/chromium_org/net/quic/
quic_packet_creator_test.cc 114 return creator_.max_packet_length() - client_framer_.GetMaxPlaintextSize(
465 EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize),
490 EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize)
493 EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize),
731 EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize)
734 EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize),
761 EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize)
764 EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize),
    [all...]
quic_packet_creator.cc 346 framer_->GetMaxPlaintextSize(max_packet_length_);
380 framer_->GetMaxPlaintextSize(max_packet_length_);
quic_framer.h 361 size_t GetMaxPlaintextSize(size_t ciphertext_size);
quic_framer.cc     [all...]
quic_connection_test.cc 123 virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const OVERRIDE {
    [all...]
quic_framer_test.cc 134 virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const OVERRIDE {
    [all...]
  /external/chromium_org/net/quic/test_tools/
quic_test_utils.cc 66 const size_t max_plaintext_size = framer->GetMaxPlaintextSize(kMaxPacketSize);

Completed in 611 milliseconds