jdk/test/sun/security/pkcs11/Signature/ByteBuffers.java
author valeriep
Thu, 18 Mar 2010 17:05:42 -0700
changeset 5155 d70c73fdc68e
parent 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris" Summary: Added checking for RSA key lengths in initSign and initVerify Reviewed-by: vinnie
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
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 4856966
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Test the Signature.update(ByteBuffer) method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @library ..
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.nio.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class ByteBuffers extends PKCS11Test {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        main(new ByteBuffers());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    public void main(Provider p) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        Random random = new Random();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        int n = 10 * 1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        byte[] t = new byte[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        random.nextBytes(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        kpg.initialize(512);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        KeyPair kp = kpg.generateKeyPair();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        Signature sig = Signature.getInstance("MD5withRSA", p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        sig.initSign(kp.getPrivate());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        sig.update(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        byte[] signature = sig.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        sig.initVerify(kp.getPublic());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        // test 1: ByteBuffer with an accessible backing array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        ByteBuffer b1 = ByteBuffer.allocate(n + 256);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        b1.position(random.nextInt(256));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        b1.limit(b1.position() + n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        ByteBuffer b2 = b1.slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        b2.put(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        b2.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        verify(sig, signature, b2, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        // test 2: direct ByteBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        ByteBuffer b3 = ByteBuffer.allocateDirect(t.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        b3.put(t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        b3.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        verify(sig, signature, b3, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        // test 3: ByteBuffer without an accessible backing array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        b2.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        ByteBuffer b4 = b2.asReadOnlyBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        verify(sig, signature, b4, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        System.out.println("All tests passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    private static void verify(Signature sig, byte[] signature, ByteBuffer b, Random random) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        int lim = b.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        b.limit(random.nextInt(lim));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        sig.update(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (b.hasRemaining()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            throw new Exception("Buffer not consumed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        b.limit(lim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        sig.update(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        if (b.hasRemaining()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            throw new Exception("Buffer not consumed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (sig.verify(signature) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            throw new Exception("Signature did not verify");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
}