Mercurial > 510Connectbot
annotate src/com/trilead/ssh2/crypto/cipher/BlockCipher.java @ 303:a218d9cd725b ganymed
add ecdsa key support everywhere
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 29 Jul 2014 20:24:24 -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 } |