Home
last modified time | relevance | path

Searched refs:new_decrypting_stream (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/tink/python/tink/streaming_aead/
H A D_streaming_aead_wrapper_test.py62 with primitive.new_decrypting_stream(ciphertext_src, aad) as ds:
79 with primitive.new_decrypting_stream(ciphertext_src, aad) as ds:
96 with primitive.new_decrypting_stream(ciphertext_src, aad) as ds:
114 with primitive.new_decrypting_stream(ciphertext_src, b'bad aad') as ds:
133 with primitive.new_decrypting_stream(ciphertext_src, aad) as ds:
160 with p1.new_decrypting_stream(
163 with p2.new_decrypting_stream(
166 with p3.new_decrypting_stream(
169 with p4.new_decrypting_stream(
178 with p1.new_decrypting_stream(
[all …]
H A D_streaming_aead_test.py53 with primitive.new_decrypting_stream(src, aad) as ds:
71 with primitive.new_decrypting_stream(src, aad) as ds:
94 primitive.new_decrypting_stream(src, aad), encoding='utf8') as es:
115 primitive.new_decrypting_stream(src, b'aad')
H A D_streaming_aead.py70 def new_decrypting_stream(self, ciphertext_source: BinaryIO, member in StreamingAead
H A D_pybind11_python_file_object_adapter_test.py83 dec_stream = streaming_aead_primitive.new_decrypting_stream(
H A D_streaming_aead_wrapper.py150 def new_decrypting_stream(self, ciphertext_source: BinaryIO, member in _WrappedStreamingAead
H A D_streaming_aead_key_manager_test.py252 with primitive.new_decrypting_stream(ciphertext_source,
/aosp_15_r20/external/tink/testing/cross_language/
H A Dstreaming_aead_test.py80 decrypted_stream = p2.new_decrypting_stream(
121 dec1.new_decrypting_stream(io.BytesIO(ciphertext1), ad).read(),
124 dec2.new_decrypting_stream(io.BytesIO(ciphertext1), ad).read(),
127 dec3.new_decrypting_stream(io.BytesIO(ciphertext1), ad).read(),
130 _ = dec4.new_decrypting_stream(io.BytesIO(ciphertext1), ad).read()
135 dec1.new_decrypting_stream(io.BytesIO(ciphertext2), ad).read(),
138 dec2.new_decrypting_stream(io.BytesIO(ciphertext2), ad).read(),
141 dec3.new_decrypting_stream(io.BytesIO(ciphertext2), ad).read(),
144 _ = dec4.new_decrypting_stream(io.BytesIO(ciphertext2), ad).read()
149 _ = dec1.new_decrypting_stream(io.BytesIO(ciphertext3), ad).read()
[all …]
/aosp_15_r20/external/tink/testing/cross_language/streaming_aead/
H A Daes_gcm_hkdf_streaming_key_test.py205 saead.new_decrypting_stream(
254 saead_2.new_decrypting_stream(
342 saead.new_decrypting_stream(
H A Daes_ctr_hmac_streaming_key_test.py315 saead.new_decrypting_stream(
364 saead_2.new_decrypting_stream(
461 saead.new_decrypting_stream(io.BytesIO(ciphertext), aad).read(),
/aosp_15_r20/external/tink/testing/cross_language/util/
H A Dtesting_servers_test.py244 output_stream = streaming_aead_primitive.new_decrypting_stream(
249 streaming_aead_primitive.new_decrypting_stream(io.BytesIO(b'foo'),
H A D_primitives.py249 def new_decrypting_stream(self, ciphertext: BinaryIO, member in StreamingAead
/aosp_15_r20/external/tink/python/examples/streaming_aead/
H A Dstreaming_aead.py103 with primitive.new_decrypting_stream(input_file,
/aosp_15_r20/external/tink/python/tink/
H A Dtink_config_test.py105 with primitive.new_decrypting_stream(src, associated_data) as ds:
/aosp_15_r20/external/tink/testing/python/
H A Dservices.py461 with p.new_decrypting_stream(stream, request.associated_data) as s: