HomeSort by relevance Sort by last modified time
    Searched defs:Mac (Results 1 - 10 of 10) sorted by null

  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
Mac.java 7 public interface Mac
10 * Initialise the MAC.
12 * @param params the key and other data required by the MAC.
20 * Return the name of the algorithm the MAC implements.
22 * @return the name of the algorithm the MAC implements.
27 * Return the block size for this MAC (in bytes).
29 * @return the block size for this MAC in bytes.
34 * add a single byte to the mac for processing.
37 * @exception IllegalStateException if the MAC is not initialised.
46 * @exception IllegalStateException if the MAC is not initialised
    [all...]
  /dalvik/libcore/support/src/test/java/targets/
Mac.java 23 public interface Mac {
  /dalvik/libcore/crypto/src/main/java/javax/crypto/
Mac.java 36 * (MAC) algorithms.
38 public class Mac implements Cloneable {
41 private static final Engine engine = new Engine("Mac"); //$NON-NLS-1$
52 // Store Mac state (initialized or not initialized)
56 * Creates a new {@code Mac} instance.
63 * the name of the MAC algorithm.
65 protected Mac(MacSpi macSpi, Provider provider, String algorithm) {
73 * Returns the name of the MAC algorithm.
75 * @return the name of the MAC algorithm.
82 * Returns the provider of this {@code Mac} instance
427 Mac mac = new Mac(newSpiImpl, this.provider, this.algorithm); local
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java 40 import javax.crypto.Mac;
55 @TestTargetClass(Mac.class)
57 * Tests for Mac class constructors and methods
63 public static final String srvMac = "Mac";
73 private static final String NotSupportedMsg = "There is no suitable provider for Mac";
99 private Mac [] createMacs() {
105 Mac m [] = new Mac[3];
106 m[0] = Mac.getInstance(defaultAlgorithm);
107 m[1] = Mac.getInstance(defaultAlgorithm, defaultProvider)
159 Mac mac; local
255 Mac mac; local
338 Mac mac; local
1105 Mac mac = new myMac(spi, defaultProvider, defaultAlgorithm); local
1138 Mac mac; local
1155 Mac mac; local
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c 424 static S32 CuCmd_Str2MACAddr(PS8 str, PU8 mac)
430 mac[i] = (U8) os_strtoul(str, &str, 16);
614 os_error_printf(CU_MSG_INFO2, (PS8)" MAC Privacy Rssi Mode Channel SSID\n");
    [all...]
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
cu_cmd.c 407 static S32 CuCmd_Str2MACAddr(PS8 str, PU8 mac)
413 mac[i] = (U8) os_strtoul(str, &str, 16);
591 os_error_printf(CU_MSG_INFO2, (PS8)" MAC Privacy Rssi Mode Channel SSID\n");
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 245 milliseconds