Home
last modified time | relevance | path

Searched defs:StreamDecryptor (Results 1 – 4 of 4) sorted by relevance

/dports/net/pichi/pichi-1.4.0/src/crypto/
H A Dstream.cpp301 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
309 template class StreamDecryptor<CryptoMethod::AES_256_CFB>; variable
313 template class StreamDecryptor<CryptoMethod::CHACHA20>; variable
314 template class StreamDecryptor<CryptoMethod::SALSA20>; variable
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/vendor/github.com/miscreant/miscreant.go/
H A Dstream.go77 type StreamDecryptor struct { struct
79 a cipher.AEAD
82 n *nonceEncoder32
105 func (d *StreamDecryptor) NonceSize() int { return streamNoncePrefixSize }
110 func (d *StreamDecryptor) Overhead() int { return d.a.Overhead() }
124 func (d *StreamDecryptor) Open(dst, ciphertext, aData []byte, lastBlock bool) ([]byte, error) {
/dports/net/pichi/pichi-1.4.0/include/pichi/crypto/
H A Dstream.hpp61 template <CryptoMethod method> class StreamDecryptor { class
/dports/devel/py-oci/oci-2.53.1/src/oci/encryption/internal/
H A Dstreaming.py351 class StreamDecryptor(CryptoResultStream): class