Home
last modified time | relevance | path

Searched refs:DecryptingInputStream (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/tink/cc/streamingaead/
H A Ddecrypting_input_stream.cc49 StatusOr<std::unique_ptr<InputStream>> DecryptingInputStream::New( in New()
53 std::unique_ptr<DecryptingInputStream> dec_stream( in New()
54 new DecryptingInputStream()); in New()
64 util::StatusOr<int> DecryptingInputStream::Next(const void** data) { in Next()
101 void DecryptingInputStream::BackUp(int count) { in BackUp()
108 int64_t DecryptingInputStream::Position() const { in Position()
H A Ddecrypting_input_stream.h39 class DecryptingInputStream : public crypto::tink::InputStream {
51 ~DecryptingInputStream() override = default;
57 DecryptingInputStream() {} in DecryptingInputStream() function
H A Ddecrypting_input_stream_test.cc162 DecryptingInputStream::New(saead_set, std::move(ct), aad); in TEST()
195 DecryptingInputStream::New(saead_set, std::move(ct), "wrong aad"); in TEST()
224 DecryptingInputStream::New(saead_set, std::move(wrong_ct), aad); in TEST()
H A Dstreaming_aead_wrapper.cc100 return {streamingaead::DecryptingInputStream::New( in NewDecryptingStream()