Package gnu.testlet.gnu.javax.crypto.cipher

Source Code of gnu.testlet.gnu.javax.crypto.cipher.TestOfCast5

/* TestOfCast5.java --
   Copyright (C) 2006 Free Software Foundation, Inc.
This file is part of Mauve.

Mauve is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

Mauve is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with Mauve; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

*/

// Tags: GNU-CRYPTO JDK1.4
// Uses: BaseCipherTestCase

package gnu.testlet.gnu.javax.crypto.cipher;

import gnu.java.security.util.Util;
import gnu.javax.crypto.cipher.Cast5;
import gnu.javax.crypto.cipher.IBlockCipher;
import gnu.testlet.TestHarness;
import java.util.Arrays;
import java.util.HashMap;

/**
* Conformance test for the <code>CAST5</code> cipher. Test vectors are as
* per RFC-2144.
*/
public class TestOfCast5 extends BaseCipherTestCase
{
  /**
   * 128-bit key   = 01 23 45 67 12 34 56 78 23 45 67 89 34 56 78 9A
   *   plaintext   = 01 23 45 67 89 AB CD EF
   *   ciphertext  = 23 8B 4F E5 84 7E 44 B2
   * 80-bit  key   = 01 23 45 67 12 34 56 78 23 45
   *               = 01 23 45 67 12 34 56 78 23 45 00 00 00 00 00 00
   *   plaintext   = 01 23 45 67 89 AB CD EF
   *   ciphertext  = EB 6A 71 1A 2C 02 27 1B
   */
  private static final String[][] TV = {
      // key                                plaintext           ciphertext
      { "0123456712345678234567893456789A", "0123456789ABCDEF", "238B4FE5847E44B2" },
      { "01234567123456782345",             "0123456789ABCDEF", "EB6A711A2C02271B" } };

  public void test(TestHarness harness)
  {
    harness.checkPoint("TestOfCast5");
    cipher = new Cast5();
    HashMap attrib = new HashMap();
    attrib.put(IBlockCipher.CIPHER_BLOCK_SIZE, new Integer(8));
    attrib.put(IBlockCipher.KEY_MATERIAL, new byte[16]);
    try
      {
        harness.check(validityTest(), "validityTest()");
        harness.check(cloneabilityTest(), "cloneabilityTest()");
        harness.check(vectorsTest(), "vectorsTest()");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfCast5");
      }
  }

  /** Test cloneability. */
  protected boolean cloneabilityTest() throws Exception
  {
    int blockSize = cipher.defaultBlockSize();
    int keySize = cipher.defaultKeySize();

    byte[] pt = new byte[blockSize];
    byte[] ct1 = new byte[blockSize];
    byte[] ct2 = new byte[blockSize];
    byte[] kb = new byte[keySize];
    HashMap attributes = new HashMap();
    attributes.put(IBlockCipher.KEY_MATERIAL, kb);

    cipher.reset();
    cipher.init(attributes);

    cipher.encryptBlock(pt, 0, pt, 0);
    IBlockCipher thomas = (IBlockCipher) cipher.clone();
    thomas.init(attributes);
    cipher.encryptBlock(pt, 0, ct1, 0);
    thomas.encryptBlock(pt, 0, ct2, 0);

    return Arrays.equals(ct1, ct2);
  }

  protected boolean vectorsTest() throws Exception
  {
    HashMap attrib = new HashMap();
    byte[] kb, pt, ct1, ct2 = new byte[8], cpt = new byte[8];
    for (int i = 0; i < TV.length; i++)
      {
        kb = Util.toBytesFromString(TV[i][0]);
        pt = Util.toBytesFromString(TV[i][1]);
        ct1 = Util.toBytesFromString(TV[i][2]);
        attrib.put(IBlockCipher.KEY_MATERIAL, kb);
        cipher.reset();
        cipher.init(attrib);
        cipher.encryptBlock(pt, 0, ct2, 0);
        if (!Arrays.equals(ct1, ct2))
            return false;

        cipher.decryptBlock(ct2, 0, cpt, 0);
        if (!Arrays.equals(pt, cpt))
            return false;
      }
    return true;
  }
}
TOP

Related Classes of gnu.testlet.gnu.javax.crypto.cipher.TestOfCast5

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.