HomeSort by relevance Sort by last modified time
    Searched defs:ciphertext_size (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/net/quic/crypto/
aes_128_gcm_12_encrypter_openssl.cc 118 size_t ciphertext_size = GetCiphertextSize(plaintext.length()); local
119 scoped_ptr<char[]> ciphertext(new char[ciphertext_size]);
137 return new QuicData(ciphertext.release(), ciphertext_size, true);
146 size_t Aes128Gcm12Encrypter::GetMaxPlaintextSize(size_t ciphertext_size) const {
147 return ciphertext_size - kAuthTagSize;
aes_128_gcm_12_encrypter_test.cc 252 size_t ciphertext_size = encrypter->GetCiphertextSize(plaintext.length()); local
253 scoped_ptr<char[]> ciphertext(new char[ciphertext_size]);
260 return new QuicData(ciphertext.release(), ciphertext_size, true);
aes_128_gcm_12_encrypter_nss.cc 294 size_t ciphertext_size = GetCiphertextSize(plaintext.length()); local
331 output, &output_len, ciphertext_size,
338 if (output_len != ciphertext_size) {
350 size_t ciphertext_size = GetCiphertextSize(plaintext.length()); local
351 scoped_ptr<char[]> ciphertext(new char[ciphertext_size]);
369 return new QuicData(ciphertext.release(), ciphertext_size, true);
378 size_t Aes128Gcm12Encrypter::GetMaxPlaintextSize(size_t ciphertext_size) const {
379 return ciphertext_size - kAuthTagSize;
  /external/chromium_org/crypto/
encryptor_unittest.cc 187 const unsigned char* ciphertext, size_t ciphertext_size) {
205 EXPECT_EQ(ciphertext_size, encrypted.size());
219 const unsigned char* ciphertext, size_t ciphertext_size) {
233 ciphertext_size); local
  /external/chromium_org/net/tools/quic/
end_to_end_test.cc 347 size_t ciphertext_size = NullEncrypter().GetCiphertextSize(min_payload_size); local
352 ciphertext_size;
382 size_t ciphertext_size = NullEncrypter().GetCiphertextSize(min_payload_size); local
387 ciphertext_size;

Completed in 688 milliseconds