Home
last modified time | relevance | path

Searched refs:StreamDecryptor (Results 1 – 16 of 16) sorted by relevance

/dports/net/pichi/pichi-1.4.0/include/pichi/crypto/
H A Dstream.hpp61 template <CryptoMethod method> class StreamDecryptor { class
65 StreamDecryptor(StreamDecryptor const&) = delete;
66 StreamDecryptor(StreamDecryptor&&) = delete;
67 StreamDecryptor& operator=(StreamDecryptor const&) = delete;
68 StreamDecryptor& operator=(StreamDecryptor&&) = delete;
71 explicit StreamDecryptor(ConstBuffer<uint8_t> key);
72 ~StreamDecryptor();
H A Dmethod.hpp166 template <CryptoMethod method> class StreamDecryptor;
170 std::conditional_t<detail::isStream<method>(), StreamDecryptor<method>,
/dports/net/pichi/pichi-1.4.0/src/crypto/
H A Dstream.cpp264 template <CryptoMethod method> StreamDecryptor<method>::StreamDecryptor(ConstBuffer<uint8_t> key) in StreamDecryptor() function in pichi::crypto::StreamDecryptor
271 template <CryptoMethod method> StreamDecryptor<method>::~StreamDecryptor() in ~StreamDecryptor()
301 template class StreamDecryptor<CryptoMethod::RC4_MD5>; variable
302 template class StreamDecryptor<CryptoMethod::BF_CFB>; variable
304 template class StreamDecryptor<CryptoMethod::AES_128_CTR>; variable
305 template class StreamDecryptor<CryptoMethod::AES_192_CTR>; variable
306 template class StreamDecryptor<CryptoMethod::AES_256_CTR>; variable
307 template class StreamDecryptor<CryptoMethod::AES_128_CFB>; variable
308 template class StreamDecryptor<CryptoMethod::AES_192_CFB>; variable
313 template class StreamDecryptor<CryptoMethod::CHACHA20>; variable
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/vendor/github.com/miscreant/miscreant.go/
H A Dstream.go77 type StreamDecryptor struct { struct
88 func NewStreamDecryptor(alg string, key, nonce []byte) (*StreamDecryptor, error) {
100 return &StreamDecryptor{a: aead, n: nonceEncoder}, nil
105 func (d *StreamDecryptor) NonceSize() int { return streamNoncePrefixSize } argument
110 func (d *StreamDecryptor) Overhead() int { return d.a.Overhead() } argument
124 func (d *StreamDecryptor) Open(dst, ciphertext, aData []byte, lastBlock bool) ([]byte, error) { argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/media/cma/pipeline/
H A Dav_pipeline_impl.h83 virtual std::unique_ptr<StreamDecryptor> CreateDecryptor() = 0;
105 void OnBufferDecrypted(bool success, StreamDecryptor::BufferQueue buffers);
134 std::unique_ptr<StreamDecryptor> CreateStreamDecryptor(
175 StreamDecryptor::BufferQueue ready_buffers_;
189 std::unique_ptr<StreamDecryptor> decryptor_;
H A Dstream_decryptor.h19 class StreamDecryptor {
36 virtual ~StreamDecryptor() = default;
H A Dcdm_decryptor.h15 class CdmDecryptor : public StreamDecryptor {
H A Dbackend_decryptor.h23 class BackendDecryptor : public StreamDecryptor,
H A Daudio_pipeline_impl.h47 std::unique_ptr<StreamDecryptor> CreateDecryptor() override;
H A Dvideo_pipeline_impl.h48 std::unique_ptr<StreamDecryptor> CreateDecryptor() override;
H A Dav_pipeline_impl.cc283 StreamDecryptor::BufferQueue buffers) { in OnBufferDecrypted()
425 std::unique_ptr<StreamDecryptor> AvPipelineImpl::CreateStreamDecryptor( in CreateStreamDecryptor()
H A Daudio_pipeline_impl.cc86 std::unique_ptr<StreamDecryptor> AudioPipelineImpl::CreateDecryptor() { in CreateDecryptor()
H A Dvideo_pipeline_impl.cc127 std::unique_ptr<StreamDecryptor> VideoPipelineImpl::CreateDecryptor() { in CreateDecryptor()
/dports/devel/py-oci/oci-2.53.1/src/oci/encryption/
H A Dencryption.py5 from oci.encryption.internal.streaming import StreamEncryptor, StreamDecryptor
96 decryptor = StreamDecryptor(
181 return StreamDecryptor(
/dports/net/pichi/pichi-1.4.0/include/pichi/net/
H A Dssstream.hpp35 crypto::StreamDecryptor<method> decryptor_;
/dports/devel/py-oci/oci-2.53.1/src/oci/encryption/internal/
H A Dstreaming.py351 class StreamDecryptor(CryptoResultStream): class