File: KemTest.java

package info (click to toggle)
openjdk-24 24.0.2%2B12-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 831,900 kB
  • sloc: java: 5,677,020; cpp: 1,323,154; xml: 1,320,524; ansic: 486,889; asm: 405,131; objc: 21,025; sh: 15,221; javascript: 11,049; python: 8,222; makefile: 2,504; perl: 357; awk: 351; sed: 172; pascal: 103; exp: 54; jsp: 24; csh: 3
file content (319 lines) | stat: -rw-r--r-- 14,114 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/*
 * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

 /*
 * @test
 * @bug 8297878
 * @summary KEM API test
 * @library /test/lib
 * @run main/othervm -Djava.security.egd=file:/dev/urandom KemTest
 */
import java.security.InvalidAlgorithmParameterException;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.spec.ECGenParameterSpec;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.CompletionService;
import java.util.concurrent.ExecutorCompletionService;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import javax.crypto.KEM;
import javax.crypto.SecretKey;
import javax.crypto.DecapsulateException;
import jdk.test.lib.Asserts;

public class KemTest {

    private static final int THREAD_COUNT = 100;
    private static final int THREAD_POOL_SIZE = 20;
    private static final String ALGO = "DHKEM";
    private static final String PROVIDER = "SunJCE";

    public static void main(String[] args) throws Exception {
        KEM kem = KEM.getInstance(ALGO, PROVIDER);
        Asserts.assertEQ(kem.getAlgorithm(), ALGO);
        testSize(kem);
        testParallelEncapsulator(kem, "EC", "secp256r1");
        testParallelEncapsulate(kem, "EC", "secp256r1");
        testParallelDecapsulator(kem, "EC", "secp256r1");
        testParallelDecapsulate(kem, "EC", "secp256r1");
    }

    @FunctionalInterface
    interface GenKeyPair<A, C, K> {

        K gen(A a, C c);
    }
    private static final GenKeyPair<String, String, KeyPair> keyPair = (algo, curveId) -> {
        try {
            KeyPairGenerator kpg = KeyPairGenerator.getInstance(algo);
            if (curveId != null) {
                kpg.initialize(new ECGenParameterSpec(curveId));
            }
            return kpg.generateKeyPair();
        } catch (InvalidAlgorithmParameterException | NoSuchAlgorithmException e) {
            throw new RuntimeException(e);
        }
    };

    /*
     * As per https://www.rfc-editor.org/rfc/rfc9180#name-key-encapsulation-mechanism
     * Nsecret: The length in bytes of a KEM shared secret produced by this KEM.
     * Nenc: The length in bytes of an encapsulated key produced by this KEM.
     */
    private static void testSize(KEM kem) throws Exception {

        @FunctionalInterface
        interface LengthTest<A, C, S, E> {

            void test(A a, C c, S s, E e);
        }
        LengthTest<String, String, Integer, Integer> secretLen = (algo, curveId, nSecret, nEnc) -> {
            try {
                KeyPair kp = keyPair.gen(algo, curveId);
                KEM.Encapsulator encT = kem.newEncapsulator(kp.getPublic());
                Asserts.assertEQ(encT.providerName(), PROVIDER);
                KEM.Encapsulated enc = encT.encapsulate();
                KEM.Encapsulated enc1 = encT.encapsulate();

                KEM kem1 = KEM.getInstance(ALGO, PROVIDER);
                KEM.Encapsulator encT2 = kem1.newEncapsulator(kp.getPublic());
                KEM.Encapsulated enc2 = encT2.encapsulate();

                Asserts.assertEQ(enc.key().getEncoded().length, nSecret);
                Asserts.assertEQ(enc.encapsulation().length, nEnc);

                Asserts.assertTrue(Arrays.equals(enc.key().getEncoded(), enc.key().getEncoded()));
                Asserts.assertTrue(Arrays.equals(enc.encapsulation(), enc.encapsulation()));

                Asserts.assertFalse(Arrays.equals(enc.key().getEncoded(), enc1.key().getEncoded()));
                Asserts.assertFalse(Arrays.equals(enc.encapsulation(), enc1.encapsulation()));

                Asserts.assertFalse(Arrays.equals(enc.key().getEncoded(), enc2.key().getEncoded()));
                Asserts.assertFalse(Arrays.equals(enc.encapsulation(), enc2.encapsulation()));

                SecretKey sk = enc.key();
                KEM.Decapsulator decT = kem.newDecapsulator(kp.getPrivate());
                SecretKey dsk = decT.decapsulate(enc.encapsulation());
                Asserts.assertEQ(decT.providerName(), PROVIDER);
                Asserts.assertTrue(Arrays.equals(sk.getEncoded(), dsk.getEncoded()));
                Asserts.assertTrue(Arrays.equals(sk.getEncoded(),
                        decT.decapsulate(enc.encapsulation()).getEncoded()));
                Asserts.assertTrue(Arrays.equals(enc.key().getEncoded(),
                        decT.decapsulate(enc.encapsulation()).getEncoded()));

                Asserts.assertEQ(encT.encapsulationSize(), enc.encapsulation().length);
                Asserts.assertEQ(encT.encapsulationSize(), decT.encapsulationSize());
                Asserts.assertEQ(encT.secretSize(), enc.key().getEncoded().length);
                Asserts.assertEQ(encT.secretSize(), decT.secretSize());
                Asserts.assertEQ(decT.secretSize(), dsk.getEncoded().length);
                Asserts.assertEQ(decT.secretSize(),
                        decT.decapsulate(enc.encapsulation()).getEncoded().length);
                Asserts.assertEQ(decT.decapsulate(enc.encapsulation()).getEncoded().length,
                        enc.key().getEncoded().length);

                KEM.Encapsulated enc3 = encT.encapsulate(0, encT.secretSize(), "AES");
                KEM.Decapsulator decT1 = kem.newDecapsulator(kp.getPrivate());
                SecretKey dsk1 = decT1.decapsulate(
                        enc3.encapsulation(), 0, decT1.secretSize(), "AES");
                Asserts.assertTrue(Arrays.equals(dsk1.getEncoded(), enc3.key().getEncoded()));

                try {
                    decT.decapsulate(new byte[enc.encapsulation().length]);
                    throw new RuntimeException("Shouldn't reach here");
                } catch (DecapsulateException de) {
                    //de.printStackTrace();
                    System.out.println("Expected Failure: mismatched encapsulation");
                }

                System.out.println("KEM Secret length:" + algo + ":" + curveId
                        + ":nSecret:" + nSecret + ":nEnc:" + nEnc);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        };
        // Secret length in bytes.
        secretLen.test("EC", "secp256r1", 32, 65);
        secretLen.test("EC", "secp384r1", 48, 97);
        secretLen.test("EC", "secp521r1", 64, 133);
        secretLen.test("X25519", null, 32, 32);
        secretLen.test("X448", null, 64, 56);
        secretLen.test("XDH", null, 32, 32);
        try {
            secretLen.test("Ed25519", null, 32, 32);
        } catch (Exception e) {
            if (!e.getMessage().contains("java.security.InvalidKeyException")) {
                throw e;
            }
            System.out.println("Expected Exception: Bad Key type: Ed25519");
        }
        try {
            secretLen.test("RSA", null, 256, 256);
        } catch (Exception e) {
            if (!e.getMessage().contains("java.security.InvalidKeyException")) {
                throw e;
            }
            System.out.println("Expected Exception: Bad Key type: RSA");
        }
    }

    /*
     * As per JavaDoc API,
     * A KEM object is immutable. It is safe to call multiple newEncapsulator and
     * newDecapsulator methods on the same KEM object at the same time.
     */
    private static void testParallelEncapsulator(KEM kem, String algo, String curveId)
            throws Exception {
        KeyPair kp = keyPair.gen(algo, curveId);
        ExecutorService executor = null;
        try {
            executor = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
            CompletionService<KEM.Encapsulator> cs = new ExecutorCompletionService<>(executor);
            List<Future<KEM.Encapsulator>> futures = new ArrayList<>();

            for (int i = 0; i < THREAD_COUNT; i++) {
                Callable<KEM.Encapsulator> task = () -> kem.newEncapsulator(kp.getPublic());
                futures.add(cs.submit(task));
            }

            KEM.Decapsulator decT = kem.newDecapsulator(kp.getPrivate());
            for (Future<KEM.Encapsulator> future : futures) {
                KEM.Encapsulated enc = future.get().encapsulate();
                Asserts.assertTrue(Arrays.equals(
                        decT.decapsulate(enc.encapsulation()).getEncoded(),
                        enc.key().getEncoded()));
            }
        } finally {
            if (executor != null) {
                executor.shutdown();
            }
        }
        System.out.println("Parallel Encapsulator Test: Success");
    }

    /*
     * As per JavaDoc API,
     * Encapsulator and Decapsulator objects are also immutable.
     * It is safe to invoke multiple encapsulate and decapsulate methods on the same
     * Encapsulator or Decapsulator object at the same time.
     */
    private static void testParallelEncapsulate(KEM kem, String algo, String curveId)
            throws Exception {
        KeyPair kp = keyPair.gen(algo, curveId);
        ExecutorService executor = null;
        try {
            executor = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
            CompletionService<KEM.Encapsulated> cs = new ExecutorCompletionService<>(executor);
            List<Future<KEM.Encapsulated>> futures = new ArrayList<>();
            KEM.Encapsulator encT = kem.newEncapsulator(kp.getPublic());
            for (int i = 0; i < THREAD_COUNT; i++) {
                Callable<KEM.Encapsulated> task = () -> encT.encapsulate();
                futures.add(cs.submit(task));
            }
            KEM.Decapsulator decT = kem.newDecapsulator(kp.getPrivate());
            for (Future<KEM.Encapsulated> future : futures) {
                Asserts.assertTrue(Arrays.equals(
                        decT.decapsulate(future.get().encapsulation()).getEncoded(),
                        future.get().key().getEncoded()));
            }
        } finally {
            if (executor != null) {
                executor.shutdown();
            }
        }
        System.out.println("Parallel Encapsulate Test: Success");
    }

    /*
     * As per JavaDoc API,
     * Encapsulator and Decapsulator objects are also immutable.
     * It is safe to invoke multiple encapsulate and decapsulate methods on the same
     * Encapsulator or Decapsulator object at the same time.
     */
    private static void testParallelDecapsulator(KEM kem, String algo, String curveId)
            throws Exception {
        KeyPair kp = keyPair.gen(algo, curveId);
        ExecutorService executor = null;
        try {
            executor = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
            CompletionService<KEM.Decapsulator> cs = new ExecutorCompletionService<>(executor);
            List<Future<KEM.Decapsulator>> futures = new ArrayList<>();
            for (int i = 0; i < THREAD_COUNT; i++) {
                Callable<KEM.Decapsulator> task = () -> kem.newDecapsulator(kp.getPrivate());
                futures.add(cs.submit(task));
            }

            KEM.Encapsulated enc = kem.newEncapsulator(kp.getPublic()).encapsulate();
            for (Future<KEM.Decapsulator> decT : futures) {
                Asserts.assertTrue(Arrays.equals(
                        decT.get().decapsulate(enc.encapsulation()).getEncoded(),
                        enc.key().getEncoded()));
            }
        } finally {
            if (executor != null) {
                executor.shutdown();
            }
        }
        System.out.println("Parallel Decapsulator Test: Success");
    }

    /*
     * As per JavaDoc API,
     * Encapsulator and Decapsulator objects are also immutable.
     * It is safe to invoke multiple encapsulate and decapsulate methods on the same
     * Encapsulator or Decapsulator object at the same time.
     */
    private static void testParallelDecapsulate(KEM kem, String algo, String curveId)
            throws Exception {
        KeyPair kp = keyPair.gen(algo, curveId);
        ExecutorService executor = null;
        try {
            executor = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
            CompletionService<SecretKey> cs = new ExecutorCompletionService<>(executor);
            KEM.Encapsulator encT = kem.newEncapsulator(kp.getPublic());
            KEM.Encapsulated enc = encT.encapsulate();

            KEM.Decapsulator decT = kem.newDecapsulator(kp.getPrivate());
            List<Future<SecretKey>> futures = new ArrayList<>();
            for (int i = 0; i < THREAD_COUNT; i++) {
                Callable<SecretKey> task = () -> decT.decapsulate(enc.encapsulation());
                futures.add(cs.submit(task));
            }
            for (Future<SecretKey> future : futures) {
                Asserts.assertTrue(Arrays.equals(future.get().getEncoded(),
                        enc.key().getEncoded()));
            }
        } finally {
            if (executor != null) {
                executor.shutdown();
            }
        }
        System.out.println("Parallel Decapsulate Test: Success");
    }

}