Package org.bouncycastle.crypto
Interface NativeBlockCipherProvider
-
- All Superinterfaces:
NativeServiceProvider
public interface NativeBlockCipherProvider extends NativeServiceProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CBCModeCiphercreateCBC()CFBModeCiphercreateCFB(int bitSize)SkippingStreamCiphercreateCTR()GCMModeCiphercreateGCM()-
Methods inherited from interface org.bouncycastle.crypto.NativeServiceProvider
getAlgorithmName
-
-
-
-
Method Detail
-
createGCM
GCMModeCipher createGCM()
-
createCBC
CBCModeCipher createCBC()
-
createCFB
CFBModeCipher createCFB(int bitSize)
-
createCTR
SkippingStreamCipher createCTR()
-
-