Searched refs:CipherEntry (Results 1 – 1 of 1) sorted by relevance
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
D | BlockCipherFactory.java | 19 private static final class CipherEntry class in BlockCipherFactory 26 public CipherEntry(String type, int blockSize, int keySize, String cipherClass) in CipherEntry() method in BlockCipherFactory.CipherEntry 35 private static final List<CipherEntry> ciphers = new Vector<CipherEntry>(); 40 ciphers.add(new CipherEntry("aes128-ctr", 16, 16, "ch.ethz.ssh2.crypto.cipher.AES")); in ciphers.add() 41 ciphers.add(new CipherEntry("aes192-ctr", 16, 24, "ch.ethz.ssh2.crypto.cipher.AES")); in ciphers.add() 42 ciphers.add(new CipherEntry("aes256-ctr", 16, 32, "ch.ethz.ssh2.crypto.cipher.AES")); in ciphers.add() 43 ciphers.add(new CipherEntry("blowfish-ctr", 8, 16, "ch.ethz.ssh2.crypto.cipher.BlowFish")); in ciphers.add() 45 ciphers.add(new CipherEntry("aes128-cbc", 16, 16, "ch.ethz.ssh2.crypto.cipher.AES")); in ciphers.add() 46 ciphers.add(new CipherEntry("aes192-cbc", 16, 24, "ch.ethz.ssh2.crypto.cipher.AES")); in ciphers.add() 47 ciphers.add(new CipherEntry("aes256-cbc", 16, 32, "ch.ethz.ssh2.crypto.cipher.AES")); in ciphers.add() [all …]
|