1 /*
2  * Copyright (C) 2023 The Android Open Source Project
3  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This code is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 only, as
8  * published by the Free Software Foundation.  Oracle designates this
9  * particular file as subject to the "Classpath" exception as provided
10  * by Oracle in the LICENSE file that accompanied this code.
11  *
12  * This code is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15  * version 2 for more details (a copy is included in the LICENSE file that
16  * accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License version
19  * 2 along with this work; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23  * or visit www.oracle.com if you need additional information or have any
24  * questions.
25  */
26 
27 
28 package javax.crypto;
29 
30 import static android.annotation.SystemApi.Client.MODULE_LIBRARIES;
31 
32 import android.annotation.SystemApi;
33 
34 import java.util.*;
35 import java.security.*;
36 import sun.security.jca.*;
37 
38 @SuppressWarnings({"unchecked", "deprecation", "all"})
39 public class KeyAgreement {
40 
KeyAgreement(javax.crypto.KeyAgreementSpi keyAgreeSpi, java.security.Provider provider, java.lang.String algorithm)41 protected KeyAgreement(javax.crypto.KeyAgreementSpi keyAgreeSpi, java.security.Provider provider, java.lang.String algorithm) { throw new RuntimeException("Stub!"); }
42 
getAlgorithm()43 public final java.lang.String getAlgorithm() { throw new RuntimeException("Stub!"); }
44 
getInstance(java.lang.String algorithm)45 public static final javax.crypto.KeyAgreement getInstance(java.lang.String algorithm) throws java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
46 
getInstance(java.lang.String algorithm, java.lang.String provider)47 public static final javax.crypto.KeyAgreement getInstance(java.lang.String algorithm, java.lang.String provider) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException { throw new RuntimeException("Stub!"); }
48 
getInstance(java.lang.String algorithm, java.security.Provider provider)49 public static final javax.crypto.KeyAgreement getInstance(java.lang.String algorithm, java.security.Provider provider) throws java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
50 
getProvider()51 public final java.security.Provider getProvider() { throw new RuntimeException("Stub!"); }
52 
init(java.security.Key key)53 public final void init(java.security.Key key) throws java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
54 
init(java.security.Key key, java.security.SecureRandom random)55 public final void init(java.security.Key key, java.security.SecureRandom random) throws java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
56 
init(java.security.Key key, java.security.spec.AlgorithmParameterSpec params)57 public final void init(java.security.Key key, java.security.spec.AlgorithmParameterSpec params) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
58 
init(java.security.Key key, java.security.spec.AlgorithmParameterSpec params, java.security.SecureRandom random)59 public final void init(java.security.Key key, java.security.spec.AlgorithmParameterSpec params, java.security.SecureRandom random) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
60 
doPhase(java.security.Key key, boolean lastPhase)61 public final java.security.Key doPhase(java.security.Key key, boolean lastPhase) throws java.lang.IllegalStateException, java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
62 
generateSecret()63 public final byte[] generateSecret() throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
64 
generateSecret(byte[] sharedSecret, int offset)65 public final int generateSecret(byte[] sharedSecret, int offset) throws java.lang.IllegalStateException, javax.crypto.ShortBufferException { throw new RuntimeException("Stub!"); }
66 
generateSecret(java.lang.String algorithm)67 public final javax.crypto.SecretKey generateSecret(java.lang.String algorithm) throws java.lang.IllegalStateException, java.security.InvalidKeyException, java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
68 
69 @SystemApi(client = MODULE_LIBRARIES)
getCurrentSpi()70 public javax.crypto.KeyAgreementSpi getCurrentSpi() { throw new RuntimeException("Stub!"); }
71 }
72 
73