Class RC4EngineCompat
- java.lang.Object
-
- org.bouncycastle.crypto.engines.RC4Engine
-
- com.healthmarketscience.jackcess.crypt.util.RC4EngineCompat
-
- All Implemented Interfaces:
StreamCipherCompat,StreamCipher
public class RC4EngineCompat extends RC4Engine implements StreamCipherCompat
Simple Extension ofRC4Enginewhich implements StreamCipherCompat and allows jackcess-encrypt to work with 1.51+ versions of Bouncy Castle.- Author:
- James Ahlborn
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRC4EngineCompat.FactoryStreamCipherFactory for this engine
-
Constructor Summary
Constructors Constructor Description RC4EngineCompat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intprocessStreamBytes(byte[] in, int inOff, int len, byte[] out, int outOff)-
Methods inherited from class org.bouncycastle.crypto.engines.RC4Engine
getAlgorithmName, init, processBytes, reset, returnByte
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.healthmarketscience.jackcess.crypt.util.StreamCipherCompat
getAlgorithmName, init, reset, returnByte
-
-
-
-
Method Detail
-
processStreamBytes
public int processStreamBytes(byte[] in, int inOff, int len, byte[] out, int outOff)- Specified by:
processStreamBytesin interfaceStreamCipherCompat- See Also:
RC4Engine.processBytes(byte[], int, int, byte[], int)
-
-