Home
last modified time | relevance | path

Searched refs:ciphertext_source (Results 1 – 25 of 26) sorted by relevance

12

/aosp_15_r20/external/tink/cc/streamingaead/
H A Dstreaming_aead_wrapper.cc68 std::unique_ptr<crypto::tink::InputStream> ciphertext_source,
74 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source,
98 std::unique_ptr<InputStream> ciphertext_source, in NewDecryptingStream() argument
101 primitives_, std::move(ciphertext_source), associated_data)}; in NewDecryptingStream()
106 std::unique_ptr<RandomAccessStream> ciphertext_source, in NewDecryptingRandomAccessStream() argument
109 primitives_, std::move(ciphertext_source), associated_data)}; in NewDecryptingRandomAccessStream()
H A Ddecrypting_random_access_stream.h50 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source,
62 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source, in DecryptingRandomAccessStream() argument
65 ciphertext_source_(std::move(ciphertext_source)), in DecryptingRandomAccessStream()
H A Ddecrypting_random_access_stream.cc49 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source, in New() argument
55 if (ciphertext_source == nullptr) { in New()
60 primitives, std::move(ciphertext_source), associated_data))}; in New()
H A Ddecrypting_input_stream.cc51 std::unique_ptr<crypto::tink::InputStream> ciphertext_source, in New() argument
57 std::make_shared<BufferedInputStream>(std::move(ciphertext_source)); in New()
H A Ddecrypting_input_stream.h48 std::unique_ptr<crypto::tink::InputStream> ciphertext_source,
/aosp_15_r20/external/tink/python/tink/streaming_aead/
H A D_streaming_aead_wrapper.py34 ciphertext_source: BinaryIO, associated_data: bytes):
44 if not ciphertext_source.readable():
47 ciphertext_source)
150 def new_decrypting_stream(self, ciphertext_source: BinaryIO,
152 raw = _DecryptingStreamWrapper(self._primitive_set, ciphertext_source,
H A D_decrypting_stream.py34 ciphertext_source: BinaryIO, associated_data: bytes, *,
48 self._ciphertext_source = ciphertext_source
50 if not ciphertext_source.readable():
53 ciphertext_source)
H A D_streaming_aead_key_manager.py41 ciphertext_source: BinaryIO,
46 ciphertext_source,
H A D_pybind11_python_file_object_adapter_test.py82 ciphertext_source = BytesIOThatThrowsExceptionsOnReadWrite()
84 ciphertext_source, b'associated_data')
H A D_decrypting_stream_test.py42 ciphertext_source: BinaryIO,
46 ciphertext_source, aad, close_ciphertext_source=close_ciphertext_source)
H A D_streaming_aead_key_manager_test.py250 ciphertext_source = io.BytesIO(ciphertext)
252 with primitive.new_decrypting_stream(ciphertext_source,
H A D_streaming_aead.py70 def new_decrypting_stream(self, ciphertext_source: BinaryIO,
H A D_raw_streaming_aead.py75 ciphertext_source: BinaryIO,
/aosp_15_r20/external/tink/cc/subtle/
H A Dnonce_based_streaming_aead.cc51 std::unique_ptr<crypto::tink::InputStream> ciphertext_source, in NewDecryptingStream() argument
57 std::move(ciphertext_source)); in NewDecryptingStream()
62 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source, in NewDecryptingRandomAccessStream() argument
68 std::move(ciphertext_source)); in NewDecryptingRandomAccessStream()
H A Dstreaming_aead_decrypting_stream.cc85 std::unique_ptr<InputStream> ciphertext_source) { in New() argument
90 if (ciphertext_source == nullptr) { in New()
97 dec_stream->ct_source_ = std::move(ciphertext_source); in New()
H A Dnonce_based_streaming_aead.h49 std::unique_ptr<crypto::tink::InputStream> ciphertext_source,
55 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source,
H A Ddecrypting_random_access_stream.cc51 std::unique_ptr<RandomAccessStream> ciphertext_source) { in New() argument
56 if (ciphertext_source == nullptr) { in New()
64 dec_stream->ct_source_ = std::move(ciphertext_source); in New()
H A Dstreaming_aead_decrypting_stream.h42 std::unique_ptr<crypto::tink::InputStream> ciphertext_source);
/aosp_15_r20/external/tink/python/tink/cc/
H A Dtest_util.h105 std::unique_ptr<crypto::tink::InputStream> ciphertext_source, in NewDecryptingStream() argument
108 std::move(ciphertext_source), in NewDecryptingStream()
115 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source, in NewDecryptingRandomAccessStream() argument
118 std::move(ciphertext_source), in NewDecryptingRandomAccessStream()
H A Dcc_streaming_aead_wrappers.cc48 std::shared_ptr<PythonFileObjectAdapter> ciphertext_source) { in NewCcDecryptingStream() argument
51 absl::make_unique<PythonInputStream>(ciphertext_source); in NewCcDecryptingStream()
H A Dcc_streaming_aead_wrappers.h54 std::shared_ptr<PythonFileObjectAdapter> ciphertext_source);
/aosp_15_r20/external/tink/cc/
H A Dstreaming_aead.h62 std::unique_ptr<crypto::tink::InputStream> ciphertext_source,
77 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source,
/aosp_15_r20/external/tink/python/tink/cc/pybind/
H A Dcc_streaming_aead_wrappers.cc59 std::shared_ptr<PythonFileObjectAdapter> ciphertext_source) in PybindRegisterCcStreamingAeadWrappers()
63 ciphertext_source); in PybindRegisterCcStreamingAeadWrappers()
/aosp_15_r20/external/tink/testing/cc/
H A Dstreaming_aead_impl.cc119 std::unique_ptr<InputStream> ciphertext_source( in Decrypt() local
124 std::move(ciphertext_source), request->associated_data()); in Decrypt()
/aosp_15_r20/external/tink/cc/util/
H A Dtest_util.h339 std::unique_ptr<crypto::tink::InputStream> ciphertext_source, in NewDecryptingStream() argument
342 std::move(ciphertext_source), in NewDecryptingStream()
349 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source, in NewDecryptingRandomAccessStream() argument
352 std::move(ciphertext_source), in NewDecryptingRandomAccessStream()

12