Java Code Examples for javax.crypto.NullCipher#getBlockSize()

The following examples show how to use javax.crypto.NullCipher#getBlockSize() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestNPE.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 2
Source File: TestNPE.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 3
Source File: TestNPE.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 4
Source File: TestNPE.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 5
Source File: TestNPE.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 6
Source File: TestNPE.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 7
Source File: TestNPE.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 8
Source File: TestNPE.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 9
Source File: TestNPE.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 10
Source File: TestNPE.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 11
Source File: TestNPE.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 12
Source File: TestNPE.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
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");
}
 
Example 13
Source File: TestNPE.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
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");
}