/src/com/trilead/ssh2/crypto/cipher/BlockCipherFactory.java

https://code.google.com/p/sshtunnel/ · Java · 109 lines · 86 code · 15 blank · 8 comment · 7 complexity · 03ca6f38e915e554e56440ffe8319c57 MD5 · raw file

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