All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.distrimind.bouncycastle.crypto.modes.CBCModeCipher Maven / Gradle / Ivy

The newest version!
package com.distrimind.bouncycastle.crypto.modes;

import com.distrimind.bouncycastle.crypto.BlockCipher;
import com.distrimind.bouncycastle.crypto.MultiBlockCipher;

public interface CBCModeCipher
    extends MultiBlockCipher
{
    /**
     * return the underlying block cipher that we are wrapping.
     *
     * @return the underlying block cipher that we are wrapping.
     */
    BlockCipher getUnderlyingCipher();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy