/j2ssh/transport/cipher/BlowfishCbc.java

https://github.com/rpernavas/sshtools · Java · 126 lines · 54 code · 13 blank · 59 comment · 1 complexity · 6d0fa0dee6443883c2e222f52788fb58 MD5 · raw file

  1. /*
  2. * SSHTools - Java SSH2 API
  3. *
  4. * Copyright (C) 2002 Lee David Painter.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Library General Public License
  8. * as published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * You may also distribute it and/or modify it under the terms of the
  12. * Apache style J2SSH Software License. A copy of which should have
  13. * been provided with the distribution.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * License document supplied with your distribution for more details.
  19. *
  20. */
  21. package com.sshtools.j2ssh.transport.cipher;
  22. import java.security.InvalidAlgorithmParameterException;
  23. import java.security.InvalidKeyException;
  24. import java.security.NoSuchAlgorithmException;
  25. import javax.crypto.Cipher;
  26. import javax.crypto.NoSuchPaddingException;
  27. import javax.crypto.spec.IvParameterSpec;
  28. import javax.crypto.spec.SecretKeySpec;
  29. import org.apache.commons.logging.Log;
  30. import org.apache.commons.logging.LogFactory;
  31. import com.sshtools.j2ssh.transport.AlgorithmOperationException;
  32. /**
  33. *
  34. *
  35. * @author $author$
  36. * @version $Revision: 1.21 $
  37. */
  38. public class BlowfishCbc
  39. extends SshCipher {
  40. private static Log log = LogFactory.getLog(BlowfishCbc.class);
  41. /** */
  42. protected static String algorithmName = "blowfish-cbc";
  43. Cipher cipher;
  44. /**
  45. * Creates a new BlowfishCbc object.
  46. */
  47. public BlowfishCbc() {
  48. }
  49. /**
  50. *
  51. *
  52. * @return
  53. */
  54. public int getBlockSize() {
  55. return cipher.getBlockSize();
  56. }
  57. /**
  58. *
  59. *
  60. * @param mode
  61. * @param iv
  62. * @param keydata
  63. *
  64. * @throws AlgorithmOperationException
  65. */
  66. public void init(int mode, byte[] iv, byte[] keydata) throws
  67. AlgorithmOperationException {
  68. try {
  69. cipher = Cipher.getInstance("Blowfish/CBC/NoPadding");
  70. // Create a 16 byte key
  71. byte[] actualKey = new byte[16];
  72. System.arraycopy(keydata, 0, actualKey, 0, actualKey.length);
  73. SecretKeySpec keyspec = new SecretKeySpec(actualKey, "Blowfish");
  74. // Create the cipher according to its algorithm
  75. cipher.init( ( (mode == ENCRYPT_MODE) ? Cipher.ENCRYPT_MODE
  76. : Cipher.DECRYPT_MODE),
  77. keyspec, new IvParameterSpec(iv, 0, cipher.getBlockSize()));
  78. }
  79. catch (NoSuchPaddingException nspe) {
  80. log.error("Blowfish initialization failed", nspe);
  81. throw new AlgorithmOperationException("No Padding not supported");
  82. }
  83. catch (NoSuchAlgorithmException nsae) {
  84. log.error("Blowfish initialization failed", nsae);
  85. throw new AlgorithmOperationException("Algorithm not supported");
  86. }
  87. catch (InvalidKeyException ike) {
  88. log.error("Blowfish initialization failed", ike);
  89. throw new AlgorithmOperationException("Invalid encryption key");
  90. /*} catch (InvalidKeySpecException ispe) {
  91. throw new AlgorithmOperationException("Invalid encryption key specification");*/
  92. }
  93. catch (InvalidAlgorithmParameterException ape) {
  94. log.error("Blowfish initialization failed", ape);
  95. throw new AlgorithmOperationException("Invalid algorithm parameter");
  96. }
  97. }
  98. /**
  99. *
  100. *
  101. * @param data
  102. * @param offset
  103. * @param len
  104. *
  105. * @return
  106. *
  107. * @throws AlgorithmOperationException
  108. */
  109. public byte[] transform(byte[] data, int offset, int len) throws
  110. AlgorithmOperationException {
  111. return cipher.update(data, offset, len);
  112. }
  113. }