• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  * Copyright (c) 1998, 2014, 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 import java.nio.ByteBuffer;
38 import java.security.spec.AlgorithmParameterSpec;
39 
40 @SuppressWarnings({"unchecked", "deprecation", "all"})
41 public class Mac implements java.lang.Cloneable {
42 
Mac(javax.crypto.MacSpi macSpi, java.security.Provider provider, java.lang.String algorithm)43 protected Mac(javax.crypto.MacSpi macSpi, java.security.Provider provider, java.lang.String algorithm) { throw new RuntimeException("Stub!"); }
44 
getAlgorithm()45 public final java.lang.String getAlgorithm() { throw new RuntimeException("Stub!"); }
46 
getInstance(java.lang.String algorithm)47 public static final javax.crypto.Mac getInstance(java.lang.String algorithm) throws java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
48 
getInstance(java.lang.String algorithm, java.lang.String provider)49 public static final javax.crypto.Mac getInstance(java.lang.String algorithm, java.lang.String provider) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException { throw new RuntimeException("Stub!"); }
50 
getInstance(java.lang.String algorithm, java.security.Provider provider)51 public static final javax.crypto.Mac getInstance(java.lang.String algorithm, java.security.Provider provider) throws java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
52 
getProvider()53 public final java.security.Provider getProvider() { throw new RuntimeException("Stub!"); }
54 
getMacLength()55 public final int getMacLength() { throw new RuntimeException("Stub!"); }
56 
init(java.security.Key key)57 public final void init(java.security.Key key) throws java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
58 
init(java.security.Key key, java.security.spec.AlgorithmParameterSpec params)59 public final void init(java.security.Key key, java.security.spec.AlgorithmParameterSpec params) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
60 
update(byte input)61 public final void update(byte input) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
62 
update(byte[] input)63 public final void update(byte[] input) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
64 
update(byte[] input, int offset, int len)65 public final void update(byte[] input, int offset, int len) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
66 
update(java.nio.ByteBuffer input)67 public final void update(java.nio.ByteBuffer input) { throw new RuntimeException("Stub!"); }
68 
doFinal()69 public final byte[] doFinal() throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
70 
doFinal(byte[] output, int outOffset)71 public final void doFinal(byte[] output, int outOffset) throws java.lang.IllegalStateException, javax.crypto.ShortBufferException { throw new RuntimeException("Stub!"); }
72 
doFinal(byte[] input)73 public final byte[] doFinal(byte[] input) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
74 
reset()75 public final void reset() { throw new RuntimeException("Stub!"); }
76 
clone()77 public final java.lang.Object clone() throws java.lang.CloneNotSupportedException { throw new RuntimeException("Stub!"); }
78 
79 @libcore.api.CorePlatformApi(status = libcore.api.CorePlatformApi.Status.STABLE)
80 @SystemApi(client = MODULE_LIBRARIES)
getCurrentSpi()81 public javax.crypto.MacSpi getCurrentSpi() { throw new RuntimeException("Stub!"); }
82 }
83 
84