jdk/test/sun/security/mscapi/SignatureOffsets.java
author martin
Wed, 02 Sep 2015 14:11:50 -0700
changeset 32427 c22b7e41adf3
parent 30791 425c19d93347
child 33868 9c1bde39fe18
permissions -rw-r--r--
8134984: Text files should end in exactly one newline Summary: automated fixup of newlines at end-of-file via the usual perl one-liner Reviewed-by: chegar, sherman
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30791
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     1
/*
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     4
 *
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     7
 * published by the Free Software Foundation.
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     8
 *
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    13
 * accompanied this code).
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    14
 *
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    18
 *
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    21
 * questions.
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    22
 */
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    23
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    24
import java.security.InvalidKeyException;
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    25
import java.security.NoSuchAlgorithmException;
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    26
import java.security.SignatureException;
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    27
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    28
/*
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    29
 * @test
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    30
 * @bug 8050374
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    31
 * @key randomness
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    32
 * @summary This test validates signature verification
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    33
 *          Signature.verify(byte[], int, int). The test uses RandomFactory to
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    34
 *          get random set of clear text data to sign. After the signature
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    35
 *          generation, the test tries to verify signature with the above API
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    36
 *          and passing in different signature offset (0, 33, 66, 99).
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    37
 * @library /lib/testlibrary
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    38
 * @compile ../../../java/security/Signature/Offsets.java
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    39
 * @run main SignatureOffsets SunMSCAPI NONEwithRSA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    40
 * @run main SignatureOffsets SunMSCAPI MD2withRSA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    41
 * @run main SignatureOffsets SunMSCAPI MD5withRSA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    42
 * @run main SignatureOffsets SunMSCAPI SHA1withRSA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    43
 * @run main SignatureOffsets SunMSCAPI SHA256withRSA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    44
 * @run main SignatureOffsets SunMSCAPI SHA384withRSA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    45
 * @run main SignatureOffsets SunMSCAPI SHA512withRSA
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    46
 */
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    47
public class SignatureOffsets {
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    48
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    49
    public static void main(String[] args) throws NoSuchAlgorithmException,
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    50
            InvalidKeyException, SignatureException {
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    51
        Offsets.main(args);
425c19d93347 8050374: More Signature tests
asmotrak
parents:
diff changeset
    52
    }
32427
c22b7e41adf3 8134984: Text files should end in exactly one newline
martin
parents: 30791
diff changeset
    53
}