jdk/test/javax/crypto/Cipher/ByteBuffers.java
author coleenp
Fri, 25 Oct 2013 15:19:29 -0400
changeset 21188 d053e4e8f901
parent 5506 202f599c92aa
child 30046 cf2c86e1819e
permissions -rw-r--r--
8024927: Nashorn performance regression with CompressedOops Summary: Allocate compressed class space at end of Java heap. For small heap sizes, without CDS, save some space so compressed classes can have the same favorable compression as oops Reviewed-by: stefank, hseigel, goetz
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 4844847
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Test the Cipher.update/doFinal(ByteBuffer, ByteBuffer) methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.nio.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import javax.crypto.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import javax.crypto.spec.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
public class ByteBuffers {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        Provider p = Security.getProvider("SunJCE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
        Random random = new Random();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        int n = 10 * 1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        byte[] t = new byte[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        random.nextBytes(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        byte[] keyBytes = new byte[8];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        random.nextBytes(keyBytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        SecretKey key = new SecretKeySpec(keyBytes, "DES");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        Cipher cipher = Cipher.getInstance("DES/ECB/NoPadding");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        cipher.init(Cipher.ENCRYPT_MODE, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        byte[] outBytes = cipher.doFinal(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        // create ByteBuffers for input (i1, i2, i3) and fill them
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        ByteBuffer i0 = ByteBuffer.allocate(n + 256);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        i0.position(random.nextInt(256));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        i0.limit(i0.position() + n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        ByteBuffer i1 = i0.slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        i1.put(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        ByteBuffer i2 = ByteBuffer.allocateDirect(t.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        i2.put(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        i1.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        ByteBuffer i3 = i1.asReadOnlyBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        ByteBuffer o0 = ByteBuffer.allocate(n + 512);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        o0.position(random.nextInt(256));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        o0.limit(o0.position() + n + 256);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        ByteBuffer o1 = o0.slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        ByteBuffer o2 = ByteBuffer.allocateDirect(t.length + 256);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        crypt(cipher, i1, o1, outBytes, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        crypt(cipher, i2, o1, outBytes, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        crypt(cipher, i3, o1, outBytes, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        crypt(cipher, i1, o2, outBytes, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        crypt(cipher, i2, o2, outBytes, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        crypt(cipher, i3, o2, outBytes, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        System.out.println("All tests passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    private static void crypt(Cipher cipher, ByteBuffer in, ByteBuffer out, byte[] outBytes, Random random) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        in.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        out.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        out.put(new byte[out.remaining()]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        out.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        int lim = in.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        in.limit(random.nextInt(lim));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        cipher.update(in, out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (in.hasRemaining()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            throw new Exception("Buffer not consumed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        in.limit(lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        cipher.doFinal(in, out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        if (in.hasRemaining()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            throw new Exception("Buffer not consumed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        out.flip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        byte[] b = new byte[out.remaining()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        out.get(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        if (Arrays.equals(outBytes, b) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            throw new Exception("Encryption output mismatch");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
}