Interface BlockCipher

All Known Implementing Classes:
AES, BlowFish, CBCMode, CTRMode, DES, DESede, NullCipher

public interface BlockCipher
BlockCipher.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
    void
    init(boolean forEncryption, byte[] key)
     
    void
    transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff)
     
  • Method Details

    • init

      void init(boolean forEncryption, byte[] key)
    • getBlockSize

      int getBlockSize()
    • transformBlock

      void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff)