comparison src/com/trilead/ssh2/crypto/cipher/BlockCipher.java @ 0:0ce5cc452d02

initial version
author Carl Byington <carl@five-ten-sg.com>
date Thu, 22 May 2014 10:41:19 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0ce5cc452d02
1 package com.trilead.ssh2.crypto.cipher;
2
3 /**
4 * BlockCipher.
5 *
6 * @author Christian Plattner, plattner@trilead.com
7 * @version $Id: BlockCipher.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
8 */
9 public interface BlockCipher {
10 public void init(boolean forEncryption, byte[] key);
11
12 public int getBlockSize();
13
14 public void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff);
15 }