/src/main/java/ch/ethz/ssh2/crypto/cipher/BlockCipherFactory.java

https://github.com/guitarpoet/iproxy · Java · 109 lines · 87 code · 15 blank · 7 comment · 7 complexity · 035a902cd41fd54b0ab9a52fad388bdc MD5 · raw file

  1. package ch.ethz.ssh2.crypto.cipher;
  2. import java.util.Vector;
  3. /**
  4. * BlockCipherFactory.
  5. *
  6. * @author Christian Plattner
  7. * @version 2.50, 03/15/10
  8. */
  9. @SuppressWarnings("unchecked")
  10. public class BlockCipherFactory {
  11. static class CipherEntry {
  12. String type;
  13. int blocksize;
  14. int keysize;
  15. String cipherClass;
  16. public CipherEntry(String type, int blockSize, int keySize,
  17. String cipherClass) {
  18. this.type = type;
  19. this.blocksize = blockSize;
  20. this.keysize = keySize;
  21. this.cipherClass = cipherClass;
  22. }
  23. }
  24. static Vector ciphers = new Vector();
  25. static {
  26. /* Higher Priority First */
  27. ciphers.addElement(new CipherEntry("aes256-ctr", 16, 32,
  28. "ch.ethz.ssh2.crypto.cipher.AES"));
  29. ciphers.addElement(new CipherEntry("aes192-ctr", 16, 24,
  30. "ch.ethz.ssh2.crypto.cipher.AES"));
  31. ciphers.addElement(new CipherEntry("aes128-ctr", 16, 16,
  32. "ch.ethz.ssh2.crypto.cipher.AES"));
  33. ciphers.addElement(new CipherEntry("blowfish-ctr", 8, 16,
  34. "ch.ethz.ssh2.crypto.cipher.BlowFish"));
  35. ciphers.addElement(new CipherEntry("aes256-cbc", 16, 32,
  36. "ch.ethz.ssh2.crypto.cipher.AES"));
  37. ciphers.addElement(new CipherEntry("aes192-cbc", 16, 24,
  38. "ch.ethz.ssh2.crypto.cipher.AES"));
  39. ciphers.addElement(new CipherEntry("aes128-cbc", 16, 16,
  40. "ch.ethz.ssh2.crypto.cipher.AES"));
  41. ciphers.addElement(new CipherEntry("blowfish-cbc", 8, 16,
  42. "ch.ethz.ssh2.crypto.cipher.BlowFish"));
  43. ciphers.addElement(new CipherEntry("3des-ctr", 8, 24,
  44. "ch.ethz.ssh2.crypto.cipher.DESede"));
  45. ciphers.addElement(new CipherEntry("3des-cbc", 8, 24,
  46. "ch.ethz.ssh2.crypto.cipher.DESede"));
  47. }
  48. public static String[] getDefaultCipherList() {
  49. String list[] = new String[ciphers.size()];
  50. for (int i = 0; i < ciphers.size(); i++) {
  51. CipherEntry ce = (CipherEntry) ciphers.elementAt(i);
  52. list[i] = new String(ce.type);
  53. }
  54. return list;
  55. }
  56. public static void checkCipherList(String[] cipherCandidates) {
  57. for (int i = 0; i < cipherCandidates.length; i++)
  58. getEntry(cipherCandidates[i]);
  59. }
  60. public static BlockCipher createCipher(String type, boolean encrypt,
  61. byte[] key, byte[] iv) {
  62. try {
  63. CipherEntry ce = getEntry(type);
  64. Class cc = Class.forName(ce.cipherClass);
  65. BlockCipher bc = (BlockCipher) cc.newInstance();
  66. if (type.endsWith("-cbc")) {
  67. bc.init(encrypt, key);
  68. return new CBCMode(bc, iv, encrypt);
  69. } else if (type.endsWith("-ctr")) {
  70. bc.init(true, key);
  71. return new CTRMode(bc, iv, encrypt);
  72. }
  73. throw new IllegalArgumentException("Cannot instantiate " + type);
  74. } catch (Exception e) {
  75. throw new IllegalArgumentException("Cannot instantiate " + type);
  76. }
  77. }
  78. private static CipherEntry getEntry(String type) {
  79. for (int i = 0; i < ciphers.size(); i++) {
  80. CipherEntry ce = (CipherEntry) ciphers.elementAt(i);
  81. if (ce.type.equals(type))
  82. return ce;
  83. }
  84. throw new IllegalArgumentException("Unkown algorithm " + type);
  85. }
  86. public static int getBlockSize(String type) {
  87. CipherEntry ce = getEntry(type);
  88. return ce.blocksize;
  89. }
  90. public static int getKeySize(String type) {
  91. CipherEntry ce = getEntry(type);
  92. return ce.keysize;
  93. }
  94. }