Class StreamCipherFactory
- java.lang.Object
-
- com.healthmarketscience.jackcess.crypt.util.StreamCipherFactory
-
- Direct Known Subclasses:
RC4EngineCompat.Factory
public abstract class StreamCipherFactory extends Object
Factory for instantiatingStreamCipherCompatinstances. Bouncy Castle 1.51 made a binary incompatible change to the StreamCipher API. This factory enables jackcess-encrypt to function with both the pre 1.51 API as well as the 1.51+ API.- Author:
- James Ahlborn
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract StreamCipherCompatnewInstance()static StreamCipherCompatnewRC4Engine()
-
-
-
Method Detail
-
newRC4Engine
public static StreamCipherCompat newRC4Engine()
-
newInstance
public abstract StreamCipherCompat newInstance()
-
-