Package javax.crypto

Examples of javax.crypto.NullCipher


  private Cipher c;
 
    protected void setUp() throws Exception {
        super.setUp();
        c = new NullCipher();
    }
View Full Code Here


   * Class under test for byte[] update(byte[], int, int)
   */
  public void testUpdatebyteArrayintint2() {
      //Regression for HARMONY-758
        try {
            new NullCipher().update(new byte[1], 1, Integer.MAX_VALUE);
            fail("Expected IllegalArgumentException was not thrown");
        } catch (IllegalArgumentException e) {
        }
  }
View Full Code Here

   * Class under test for int doFinal(byte[], int, int, byte[])
   */
  public void testDoFinalbyteArrayintintbyteArray2() throws Exception {
      //Regression for HARMONY-758
        try {
            new NullCipher().update(new byte[1], 1, Integer.MAX_VALUE,
                    new byte[1]);
            fail("Expected IllegalArgumentException was not thrown");
        } catch (IllegalArgumentException e) {
        }
  }
View Full Code Here

   * Class under test for int doFinal(byte[], int, int, byte[])
   */
  public void testDoFinalbyteArrayintintbyteArray3() throws Exception {
      //Regression for HARMONY-758
        try {
            new NullCipher().update(new byte[1], 0, 1, new byte[0]);
            fail("Expected ArrayIndexOutOfBoundsException was not thrown");
        } catch (ArrayIndexOutOfBoundsException e) {
        }
  }
View Full Code Here

   * Class under test for int doFinal(byte[], int, int, byte[], int)
   */
  public void testDoFinalbyteArrayintintbyteArrayint2() throws Exception {
      //Regression for HARMONY-758
        try {
            new NullCipher().update(new byte[1], 1, Integer.MAX_VALUE,
                    new byte[1], 0);
            fail("Expected IllegalArgumentException was not thrown");
        } catch (IllegalArgumentException e) {
        }
  }
View Full Code Here

   * Class under test for int doFinal(byte[], int, int, byte[], int)
   */
  public void testDoFinalbyteArrayintintbyteArrayint3() throws Exception {
      //Regression for HARMONY-758
        try {
            new NullCipher().update(new byte[1], 0, 1,
                    new byte[0], 0);
            fail("Expected ArrayIndexOutOfBoundsException was not thrown");
        } catch (ArrayIndexOutOfBoundsException e) {
        }
  }
View Full Code Here

  public static Cipher getCipher(String cipherSuite) {
    Cipher cipher = null;
   
    if (cipherSuite.equals("NullCipher")) {
      cipher = new NullCipher();
    } else {
      try {
        cipher = Cipher.getInstance(cipherSuite);
      } catch (NoSuchAlgorithmException e) {
        log.error(String.format("Accumulo configuration file contained a cipher suite \"%s\" that was not recognized by any providers", cipherSuite));
View Full Code Here

   * @throws BadPaddingException
   * @throws IllegalBlockSizeException
   */
  @Test
  public final void testProcess() throws IllegalBlockSizeException, BadPaddingException, ShortBufferException {
    NullCipher nc = new NullCipher();
    byte[] input = "I am God.".getBytes();
    byte[] outup = CipherUtil.process(nc, 123, input);
    Assert.assertArrayEquals(input, outup);
  }
View Full Code Here

    static {
        new SecureRandom().nextBytes(BYTES);
    }

    public static void main(String[] args) throws Exception {
        NullCipher nc = new NullCipher();
        // testing init(...)
        nc.init(Cipher.ENCRYPT_MODE, (Certificate) null);
        nc.init(Cipher.ENCRYPT_MODE, (Certificate) null, (SecureRandom) null);
        nc.init(Cipher.ENCRYPT_MODE, (Key) null);
        nc.init(Cipher.ENCRYPT_MODE, (Key) null, (AlgorithmParameters) null);
        nc.init(Cipher.ENCRYPT_MODE, (Key) null, (AlgorithmParameterSpec) null);
        nc.init(Cipher.ENCRYPT_MODE, (Key) null, (AlgorithmParameterSpec) null,
            (SecureRandom) null);
        nc.init(Cipher.ENCRYPT_MODE, (Key) null, (AlgorithmParameters) null,
            (SecureRandom) null);
        nc.init(Cipher.ENCRYPT_MODE, (Key) null, (SecureRandom) null);
        // testing getBlockSize()
        if (nc.getBlockSize() != 1) {
            throw new Exception("Error with getBlockSize()");
        }
        // testing update(...)
        byte[] out = nc.update(BYTES);
        if (!Arrays.equals(out, BYTES)) {
            throw new Exception("Error with update(byte[])");
        }
        out = nc.update(BYTES, 0, BYTES.length);
        if (!Arrays.equals(out, BYTES)) {
            throw new Exception("Error with update(byte[], int, int)");
        }
        if (nc.update(BYTES, 0, BYTES.length, out) != BYTES.length) {
            throw new Exception("Error with update(byte[], int, int, byte[])");
        }
        if (nc.update(BYTES, 0, BYTES.length, out, 0) != BYTES.length) {
            throw new Exception(
                "Error with update(byte[], int, int, byte[], int)");
        }
        // testing doFinal(...)
        if (nc.doFinal() != null) {
            throw new Exception("Error with doFinal()");
        }
        if (nc.doFinal(out, 0) != 0) {
             throw new Exception("Error with doFinal(byte[], 0)");
        }
        out = nc.doFinal(BYTES);
        if (!Arrays.equals(out, BYTES)) {
            throw new Exception("Error with doFinal(byte[])");
        }
        out = nc.doFinal(BYTES, 0, BYTES.length);
        if (!Arrays.equals(out, BYTES)) {
            throw new Exception("Error with doFinal(byte[], int, int)");
        }
        if (nc.doFinal(BYTES, 0, BYTES.length, out) != BYTES.length) {
            throw new Exception(
                "Error with doFinal(byte[], int, int, byte[])");
        }
        if (nc.doFinal(BYTES, 0, BYTES.length, out, 0) != BYTES.length) {
            throw new Exception(
                "Error with doFinal(byte[], int, int, byte[], int)");
        }
        // testing getExemptionMechanism()
        if (nc.getExemptionMechanism() != null) {
            throw new Exception("Error with getExemptionMechanism()");
        }
        // testing getOutputSize(int)
        if (nc.getOutputSize(5) != 5) {
            throw new Exception("Error with getOutputSize()");
        }
        // testing getIV(), getParameters(), getAlgorithm(), etc.
        if (nc.getIV() == null) { // should've been null;
                                  // left it as is for backward-compatibility
            throw new Exception("Error with getIV()");
        }
        if (nc.getParameters() != null) {
            throw new Exception("Error with getParameters()");
        }
        if (nc.getAlgorithm() != null) {
            throw new Exception("Error with getAlgorithm()");
        }
        if (nc.getProvider() != null) { // not associated with any provider
            throw new Exception("Error with getProvider()");
        }
        System.out.println("Test Done");
    }
View Full Code Here

  synchronized void updateCrypto(Cipher cipher, Mac mac)
  {
    if (cipher != null) {
      this.cipher = cipher;
    } else {
      this.cipher = new NullCipher();
    }
    this.mac = mac;
  }
View Full Code Here

TOP

Related Classes of javax.crypto.NullCipher

Copyright © 2018 www.massapicom. 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.