/test/com/trilead/ssh2/crypto/cipher/BlockCipherTest.java

https://github.com/jenkinsci/trilead-ssh2 · Java · 95 lines · 81 code · 13 blank · 1 comment · 10 complexity · 170ab1c47c7f6539852e05270b904890 MD5 · raw file

  1. package com.trilead.ssh2.crypto.cipher;
  2. import java.security.SecureRandom;
  3. import javax.crypto.Cipher;
  4. import javax.crypto.spec.IvParameterSpec;
  5. import javax.crypto.spec.SecretKeySpec;
  6. import org.junit.Test;
  7. import static org.junit.Assert.assertArrayEquals;
  8. import static org.junit.Assert.assertEquals;
  9. public class BlockCipherTest {
  10. public void shouldMatchJreBehavior(String cipherName, int blokSize, int keySize) throws Exception {
  11. String algorithm = "";
  12. String jreCipherName = "";
  13. SecureRandom rng = new SecureRandom();
  14. byte[] iv = new byte[blokSize];
  15. rng.nextBytes(iv);
  16. byte[] key = new byte[keySize];
  17. rng.nextBytes(key);
  18. byte[] plaintext = new byte[256];
  19. rng.nextBytes(plaintext);
  20. byte[] ciphertext = new byte[plaintext.length];
  21. if(cipherName.startsWith("aes")){
  22. algorithm = "AES";
  23. } else if (cipherName.startsWith("3des")){
  24. algorithm = "DESede";
  25. } else if (cipherName.startsWith("blowfish")){
  26. algorithm = "Blowfish";
  27. }
  28. if(cipherName.endsWith("-ctr")){
  29. jreCipherName = algorithm + "/CTR/NoPadding";
  30. } else if (cipherName.endsWith("-cbc")){
  31. jreCipherName = algorithm + "/CBC/NoPadding";
  32. }
  33. BlockCipher bc = BlockCipherFactory.createCipher(cipherName, true, key, iv);
  34. for (int i = 0; i < plaintext.length; i += bc.getBlockSize()) {
  35. bc.transformBlock(plaintext, i, ciphertext, i);
  36. }
  37. Cipher jreCipher = Cipher.getInstance(jreCipherName);
  38. assertEquals(blokSize, jreCipher.getBlockSize());
  39. jreCipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(key, algorithm), new IvParameterSpec(iv));
  40. byte[] decrypted = jreCipher.doFinal(ciphertext);
  41. assertArrayEquals(plaintext, decrypted);
  42. // now the reverse
  43. rng.nextBytes(iv);
  44. rng.nextBytes(key);
  45. rng.nextBytes(plaintext);
  46. jreCipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(key, algorithm), new IvParameterSpec(iv));
  47. ciphertext = jreCipher.doFinal(plaintext);
  48. bc = BlockCipherFactory.createCipher(cipherName, false, key, iv);
  49. for (int i = 0; i < plaintext.length; i += bc.getBlockSize()) {
  50. bc.transformBlock(ciphertext, i, decrypted, i);
  51. }
  52. assertArrayEquals(plaintext, decrypted);
  53. }
  54. @Test
  55. public void testMatchBehaviorAesCtrNoPadding() throws Exception {
  56. shouldMatchJreBehavior("aes128-ctr", 16, 16);
  57. shouldMatchJreBehavior("aes192-ctr", 16, 24);
  58. shouldMatchJreBehavior("aes256-ctr", 16, 32);
  59. }
  60. @Test
  61. public void testMatchBehaviorAesCbcNoPadding() throws Exception {
  62. shouldMatchJreBehavior("aes128-cbc", 16, 16);
  63. shouldMatchJreBehavior("aes192-cbc", 16, 24);
  64. shouldMatchJreBehavior("aes256-cbc", 16, 32);
  65. }
  66. @Test
  67. public void testMatchBehaviorBlowfishCtrNoPaddingg() throws Exception {
  68. shouldMatchJreBehavior("blowfish-ctr", 8, 16);
  69. }
  70. @Test
  71. public void testMatchBehaviorBlowfishCbcNoPaddingg() throws Exception {
  72. shouldMatchJreBehavior("blowfish-cbc", 8, 16);
  73. }
  74. @Test
  75. public void testMatchBehaviorDESedeCtrNoPadding() throws Exception {
  76. shouldMatchJreBehavior("3des-ctr", 8, 24);
  77. }
  78. @Test
  79. public void testMatchBehaviorDESedeCbcNoPadding() throws Exception {
  80. shouldMatchJreBehavior("3des-cbc", 8, 24);
  81. }
  82. }