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 java.util.*;
31 import java.security.*;
32 import sun.security.jca.*;
33 import java.nio.ByteBuffer;
34 import java.security.spec.AlgorithmParameterSpec;
35 
36 @SuppressWarnings({"unchecked", "deprecation", "all"})
37 public class Mac implements java.lang.Cloneable {
38 
Mac(javax.crypto.MacSpi macSpi, java.security.Provider provider, java.lang.String algorithm)39 protected Mac(javax.crypto.MacSpi macSpi, java.security.Provider provider, java.lang.String algorithm) { throw new RuntimeException("Stub!"); }
40 
getAlgorithm()41 public final java.lang.String getAlgorithm() { throw new RuntimeException("Stub!"); }
42 
getInstance(java.lang.String algorithm)43 public static final javax.crypto.Mac getInstance(java.lang.String algorithm) throws java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
44 
getInstance(java.lang.String algorithm, java.lang.String provider)45 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!"); }
46 
getInstance(java.lang.String algorithm, java.security.Provider provider)47 public static final javax.crypto.Mac getInstance(java.lang.String algorithm, java.security.Provider provider) throws java.security.NoSuchAlgorithmException { throw new RuntimeException("Stub!"); }
48 
getProvider()49 public final java.security.Provider getProvider() { throw new RuntimeException("Stub!"); }
50 
getMacLength()51 public final int getMacLength() { 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.spec.AlgorithmParameterSpec params)55 public final void init(java.security.Key key, java.security.spec.AlgorithmParameterSpec params) throws java.security.InvalidAlgorithmParameterException, java.security.InvalidKeyException { throw new RuntimeException("Stub!"); }
56 
update(byte input)57 public final void update(byte input) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
58 
update(byte[] input)59 public final void update(byte[] input) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
60 
update(byte[] input, int offset, int len)61 public final void update(byte[] input, int offset, int len) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
62 
update(java.nio.ByteBuffer input)63 public final void update(java.nio.ByteBuffer input) { throw new RuntimeException("Stub!"); }
64 
doFinal()65 public final byte[] doFinal() throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
66 
doFinal(byte[] output, int outOffset)67 public final void doFinal(byte[] output, int outOffset) throws java.lang.IllegalStateException, javax.crypto.ShortBufferException { throw new RuntimeException("Stub!"); }
68 
doFinal(byte[] input)69 public final byte[] doFinal(byte[] input) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
70 
reset()71 public final void reset() { throw new RuntimeException("Stub!"); }
72 
clone()73 public final java.lang.Object clone() throws java.lang.CloneNotSupportedException { throw new RuntimeException("Stub!"); }
74 
75 @libcore.api.CorePlatformApi
getCurrentSpi()76 public javax.crypto.MacSpi getCurrentSpi() { throw new RuntimeException("Stub!"); }
77 }
78 
79