annotate src/com/trilead/ssh2/crypto/cipher/BlockCipher.java @ 27:b29b39f386a4
tn5250
adding tn5250 files, native android logging
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Tue, 03 Jun 2014 12:29:12 -0700 |
parents |
0ce5cc452d02 |
children |
|
rev |
line source |
0
|
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 }
|