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

  /external/chromium_org/net/quic/crypto/
null_decrypter_test.cc 24 NullDecrypter decrypter; local
25 scoped_ptr<QuicData> decrypted(decrypter.DecryptPacket(
43 NullDecrypter decrypter; local
44 scoped_ptr<QuicData> decrypted(decrypter.DecryptPacket(
58 NullDecrypter decrypter; local
59 scoped_ptr<QuicData> decrypted(decrypter.DecryptPacket(
crypto_utils.cc 88 out->decrypter.reset(QuicDecrypter::Create(aead));
104 out->decrypter->SetKey(hkdf.client_write_key());
105 out->decrypter->SetNoncePrefix(hkdf.client_write_iv());
109 out->decrypter->SetKey(hkdf.server_write_key());
110 out->decrypter->SetNoncePrefix(hkdf.server_write_iv());
aes_128_gcm_12_decrypter_test.cc 294 // DecryptWithNonce wraps the |Decrypt| method of |decrypter| to allow passing
296 QuicData* DecryptWithNonce(Aes128Gcm12Decrypter* decrypter,
303 if (!decrypter->Decrypt(nonce, associated_data, ciphertext,
363 Aes128Gcm12Decrypter decrypter; local
364 ASSERT_TRUE(decrypter.SetKey(StringPiece(key, key_len)));
368 &decrypter, StringPiece(iv, iv_len),
crypto_handshake.h 149 // A CrypterPair contains the encrypter and decrypter for an encryption level.
154 scoped_ptr<QuicDecrypter> decrypter; member in struct:net::CrypterPair
crypto_server_config.cc 443 scoped_ptr<QuicData> cetv_plaintext(crypters.decrypter->DecryptPacket(
    [all...]
  /external/chromium_org/net/quic/
quic_crypto_server_stream.cc 76 // Set the decrypter immediately so that we no longer accept unencrypted
79 crypto_negotiated_params_.initial_crypters.decrypter.release());
88 crypto_negotiated_params_.forward_secure_crypters.decrypter.release(),
quic_framer.h 296 // SetDecrypter sets the primary decrypter, replacing any that already exists,
297 // and takes ownership. If an alternative decrypter is in place then the
299 // packets will be using the new decrypter and the previous decrypter is not
301 void SetDecrypter(QuicDecrypter* decrypter);
303 // SetAlternativeDecrypter sets a decrypter that may be used to decrypt
305 // then the first time that the decrypter is successful it will replace the
306 // primary decrypter. Otherwise both decrypters will remain active and the
307 // primary decrypter will be the one last used.
308 void SetAlternativeDecrypter(QuicDecrypter* decrypter,
    [all...]
quic_crypto_client_stream.cc 205 crypto_negotiated_params_.initial_crypters.decrypter.release(),
309 // decrypter latched and became the primary decrypter. That happens
326 // decrypter latched and became the primary decrypter. That happens
350 // TODO(agl): we don't currently latch this decrypter because the idea
355 crypters->decrypter.release(), false /* don't latch */);
quic_connection.h 366 // SetDecrypter sets the primary decrypter, replacing any that already exists,
367 // and takes ownership. If an alternative decrypter is in place then the
369 // packets will be using the new decrypter and the previous decrypter is now
371 void SetDecrypter(QuicDecrypter* decrypter);
373 // SetAlternativeDecrypter sets a decrypter that may be used to decrypt
375 // then the first time that the decrypter is successful it will replace the
376 // primary decrypter. Otherwise both decrypters will remain active and the
377 // primary decrypter will be the one last used.
378 void SetAlternativeDecrypter(QuicDecrypter* decrypter,
    [all...]
quic_connection.cc 1415 const QuicDecrypter* QuicConnection::decrypter() const { function in class:net::QuicConnection
    [all...]
quic_framer.cc 1328 const QuicDecrypter* QuicFramer::decrypter() const { function in class:net::QuicFramer
    [all...]
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils.cc 318 client->session()->connection()->decrypter());
326 server->session()->connection()->decrypter());
  /external/chromium_org/crypto/
openpgp_symmetric_encryption.cc 180 class Decrypter {
182 ~Decrypter() {
776 Decrypter decrypter; local
778 Result reader = decrypter.Decrypt(encrypted, passphrase, &result);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 515 def __init__(self, fileobj, mode, zipinfo, decrypter=None,
518 self._decrypter = decrypter
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 515 def __init__(self, fileobj, mode, zipinfo, decrypter=None,
518 self._decrypter = decrypter
    [all...]

Completed in 4428 milliseconds