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

  /external/chromium_org/net/quic/crypto/
crypto_secret_boxer.cc 63 const size_t plaintext_len = local
65 out_storage->resize(plaintext_len);
69 if (plaintext_len != 0) {
70 memcpy(data, ciphertext.data() + kBoxNonceSize, plaintext_len);
86 out->set(data, plaintext_len);
  /external/chromium/crypto/
encryptor_nss.cc 98 size_t plaintext_len = ciphertext.size();
99 std::vector<unsigned char> buffer(plaintext_len);
105 plaintext_len,
116 plaintext_len - op_len);
  /external/chromium_org/crypto/
encryptor.cc 60 bool Encryptor::GenerateCounterMask(size_t plaintext_len,
68 size_t blocks = (plaintext_len + kBlockLength - 1) / kBlockLength;
85 size_t plaintext_len,
93 for (size_t i = 0; i < plaintext_len; ++i)
encryptor.h 93 // Reserve at least |plaintext_len| + 16 bytes for |mask|.
95 // The generated mask will always have at least |plaintext_len| bytes and
101 bool GenerateCounterMask(size_t plaintext_len,
106 // |ciphertext|. |ciphertext| must have at least |plaintext_len| bytes.
108 size_t plaintext_len,
  /external/srtp/crypto/cipher/
cipher.c 272 int plaintext_len; local
314 plaintext_len = length;
347 if (length != plaintext_len)
350 for (i=0; i < plaintext_len; i++)

Completed in 86 milliseconds