Uses of Interface
org.bouncycastle.crypto.internal.StreamCipher
-
Packages that use StreamCipher Package Description org.bouncycastle.crypto.general Classes for general encryption algorithms and non-FIPS approved variants.org.bouncycastle.crypto.internal org.bouncycastle.crypto.internal.io org.bouncycastle.crypto.internal.modes -
-
Uses of StreamCipher in org.bouncycastle.crypto.general
Methods in org.bouncycastle.crypto.general that return StreamCipher Modifier and Type Method Description protected StreamCipher
ARC4.OperatorFactory. createCipher(boolean forEncryption, SymmetricKey key, ARC4.Parameters parameters, java.security.SecureRandom random)
protected StreamCipher
ChaCha20.OperatorFactory. createCipher(boolean forEncryption, SymmetricKey key, ChaCha20.Parameters parameters, java.security.SecureRandom random)
-
Uses of StreamCipher in org.bouncycastle.crypto.internal
Subinterfaces of StreamCipher in org.bouncycastle.crypto.internal Modifier and Type Interface Description interface
SkippingStreamCipher
General interface for a stream cipher that supports skipping.Classes in org.bouncycastle.crypto.internal that implement StreamCipher Modifier and Type Class Description class
StreamBlockCipher
A parent class for block cipher modes that do not require block aligned data to be processed, but can function in a streaming mode which produces -
Uses of StreamCipher in org.bouncycastle.crypto.internal.io
Constructors in org.bouncycastle.crypto.internal.io with parameters of type StreamCipher Constructor Description CipherInputStream(java.io.InputStream is, StreamCipher cipher)
CipherOutputStreamImpl(java.io.OutputStream out, StreamCipher cipher)
Constructs a CipherOutputStream from an OutputStream and a BufferedBlockCipher;. -
Uses of StreamCipher in org.bouncycastle.crypto.internal.modes
Classes in org.bouncycastle.crypto.internal.modes that implement StreamCipher Modifier and Type Class Description class
CFBBlockCipher
implements a Cipher-FeedBack (CFB) mode on top of a simple cipher.class
GCFBBlockCipher
An implementation of the GOST CFB mode with CryptoPro key meshing as described in RFC 4357.class
GOFBBlockCipher
implements the GOST 28147 OFB counter mode (GCTR).class
OFBBlockCipher
implements a Output-FeedBack (OFB) mode on top of a simple cipher.class
SICBlockCipher
Implements the Segmented Integer Counter (SIC) mode on top of a simple block cipher.
-