/aosp_15_r20/external/tink/cc/streamingaead/ |
H A D | streaming_aead_wrapper.cc | 68 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 D | decrypting_random_access_stream.h | 50 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 D | decrypting_random_access_stream.cc | 49 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 D | decrypting_input_stream.cc | 51 std::unique_ptr<crypto::tink::InputStream> ciphertext_source, in New() argument 57 std::make_shared<BufferedInputStream>(std::move(ciphertext_source)); in New()
|
H A D | decrypting_input_stream.h | 48 std::unique_ptr<crypto::tink::InputStream> ciphertext_source,
|
/aosp_15_r20/external/tink/python/tink/streaming_aead/ |
H A D | _streaming_aead_wrapper.py | 34 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.py | 34 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.py | 41 ciphertext_source: BinaryIO, 46 ciphertext_source,
|
H A D | _pybind11_python_file_object_adapter_test.py | 82 ciphertext_source = BytesIOThatThrowsExceptionsOnReadWrite() 84 ciphertext_source, b'associated_data')
|
H A D | _decrypting_stream_test.py | 42 ciphertext_source: BinaryIO, 46 ciphertext_source, aad, close_ciphertext_source=close_ciphertext_source)
|
H A D | _streaming_aead_key_manager_test.py | 250 ciphertext_source = io.BytesIO(ciphertext) 252 with primitive.new_decrypting_stream(ciphertext_source,
|
H A D | _streaming_aead.py | 70 def new_decrypting_stream(self, ciphertext_source: BinaryIO,
|
H A D | _raw_streaming_aead.py | 75 ciphertext_source: BinaryIO,
|
/aosp_15_r20/external/tink/cc/subtle/ |
H A D | nonce_based_streaming_aead.cc | 51 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 D | streaming_aead_decrypting_stream.cc | 85 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 D | nonce_based_streaming_aead.h | 49 std::unique_ptr<crypto::tink::InputStream> ciphertext_source, 55 std::unique_ptr<crypto::tink::RandomAccessStream> ciphertext_source,
|
H A D | decrypting_random_access_stream.cc | 51 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 D | streaming_aead_decrypting_stream.h | 42 std::unique_ptr<crypto::tink::InputStream> ciphertext_source);
|
/aosp_15_r20/external/tink/python/tink/cc/ |
H A D | test_util.h | 105 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 D | cc_streaming_aead_wrappers.cc | 48 std::shared_ptr<PythonFileObjectAdapter> ciphertext_source) { in NewCcDecryptingStream() argument 51 absl::make_unique<PythonInputStream>(ciphertext_source); in NewCcDecryptingStream()
|
H A D | cc_streaming_aead_wrappers.h | 54 std::shared_ptr<PythonFileObjectAdapter> ciphertext_source);
|
/aosp_15_r20/external/tink/cc/ |
H A D | streaming_aead.h | 62 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 D | cc_streaming_aead_wrappers.cc | 59 std::shared_ptr<PythonFileObjectAdapter> ciphertext_source) in PybindRegisterCcStreamingAeadWrappers() 63 ciphertext_source); in PybindRegisterCcStreamingAeadWrappers()
|
/aosp_15_r20/external/tink/testing/cc/ |
H A D | streaming_aead_impl.cc | 119 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 D | test_util.h | 339 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()
|