author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 45467 | jdk/test/sun/security/mscapi/SignatureOffsets.java@99c87a16a8e4 |
permissions | -rw-r--r-- |
30791 | 1 |
/* |
45288
58be10a068c2
8180805: move RandomFactory to the top level testlibrary
iignatyev
parents:
36440
diff
changeset
|
2 |
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. |
30791 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
24 |
import java.security.InvalidKeyException; |
|
25 |
import java.security.NoSuchAlgorithmException; |
|
26 |
import java.security.SignatureException; |
|
27 |
||
28 |
/* |
|
29 |
* @test |
|
30 |
* @bug 8050374 |
|
36440
6ce6aaa3af91
8151679: Mark SignatureOffsets.java as intermittently failing
darcy
parents:
33868
diff
changeset
|
31 |
* @key randomness intermittent |
30791 | 32 |
* @summary This test validates signature verification |
33 |
* Signature.verify(byte[], int, int). The test uses RandomFactory to |
|
34 |
* get random set of clear text data to sign. After the signature |
|
35 |
* generation, the test tries to verify signature with the above API |
|
36 |
* and passing in different signature offset (0, 33, 66, 99). |
|
45288
58be10a068c2
8180805: move RandomFactory to the top level testlibrary
iignatyev
parents:
36440
diff
changeset
|
37 |
* @library /test/lib |
45467
99c87a16a8e4
8181761: add explicit @build actions for jdk.test.lib classes in all :tier2 tests
iignatyev
parents:
45288
diff
changeset
|
38 |
* @build jdk.test.lib.RandomFactory |
30791 | 39 |
* @compile ../../../java/security/Signature/Offsets.java |
33868
9c1bde39fe18
8139436: sun.security.mscapi.KeyStore might load incomplete data
clanger
parents:
32427
diff
changeset
|
40 |
* @requires os.family == "windows" |
30791 | 41 |
* @run main SignatureOffsets SunMSCAPI NONEwithRSA |
42 |
* @run main SignatureOffsets SunMSCAPI MD2withRSA |
|
43 |
* @run main SignatureOffsets SunMSCAPI MD5withRSA |
|
44 |
* @run main SignatureOffsets SunMSCAPI SHA1withRSA |
|
45 |
* @run main SignatureOffsets SunMSCAPI SHA256withRSA |
|
46 |
* @run main SignatureOffsets SunMSCAPI SHA384withRSA |
|
47 |
* @run main SignatureOffsets SunMSCAPI SHA512withRSA |
|
48 |
*/ |
|
49 |
public class SignatureOffsets { |
|
50 |
||
51 |
public static void main(String[] args) throws NoSuchAlgorithmException, |
|
52 |
InvalidKeyException, SignatureException { |
|
53 |
Offsets.main(args); |
|
54 |
} |
|
32427
c22b7e41adf3
8134984: Text files should end in exactly one newline
martin
parents:
30791
diff
changeset
|
55 |
} |