/aosp_15_r20/external/tink/python/tink/streaming_aead/ |
H A D | _streaming_aead_wrapper_test.py | 62 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.py | 53 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.py | 70 def new_decrypting_stream(self, ciphertext_source: BinaryIO, member in StreamingAead
|
H A D | _pybind11_python_file_object_adapter_test.py | 83 dec_stream = streaming_aead_primitive.new_decrypting_stream(
|
H A D | _streaming_aead_wrapper.py | 150 def new_decrypting_stream(self, ciphertext_source: BinaryIO, member in _WrappedStreamingAead
|
H A D | _streaming_aead_key_manager_test.py | 252 with primitive.new_decrypting_stream(ciphertext_source,
|
/aosp_15_r20/external/tink/testing/cross_language/ |
H A D | streaming_aead_test.py | 80 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 D | aes_gcm_hkdf_streaming_key_test.py | 205 saead.new_decrypting_stream( 254 saead_2.new_decrypting_stream( 342 saead.new_decrypting_stream(
|
H A D | aes_ctr_hmac_streaming_key_test.py | 315 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 D | testing_servers_test.py | 244 output_stream = streaming_aead_primitive.new_decrypting_stream( 249 streaming_aead_primitive.new_decrypting_stream(io.BytesIO(b'foo'),
|
H A D | _primitives.py | 249 def new_decrypting_stream(self, ciphertext: BinaryIO, member in StreamingAead
|
/aosp_15_r20/external/tink/python/examples/streaming_aead/ |
H A D | streaming_aead.py | 103 with primitive.new_decrypting_stream(input_file,
|
/aosp_15_r20/external/tink/python/tink/ |
H A D | tink_config_test.py | 105 with primitive.new_decrypting_stream(src, associated_data) as ds:
|
/aosp_15_r20/external/tink/testing/python/ |
H A D | services.py | 461 with p.new_decrypting_stream(stream, request.associated_data) as s:
|