HomeSort by relevance Sort by last modified time
    Searched refs:macKey (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLMac.java 46 private OpenSSLKey macKey;
81 macKey = ((OpenSSLKeyHolder) key).getOpenSSLKey();
88 macKey = new OpenSSLKey(NativeCrypto.EVP_PKEY_new_mac_key(evp_pkey_type, keyBytes));
97 NativeCrypto.EVP_DigestSignInit(ctx.getContext(), evp_md, macKey.getPkeyContext());
  /frameworks/base/core/java/android/content/pm/
ContainerEncryptionParams.java 101 * @param macKey key used for authentication (i.e., for the MAC tag)
113 AlgorithmParameterSpec macSpec, SecretKey macKey, byte[] macTag,
125 if (macKey == null) {
126 throw new NullPointerException("macKey == null");
141 mMacKey = macKey;
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 774 byte[] macKey = null;
824 } else if (opt.equals("--mackey")) {
825 macKey = hexToBytes(nextOptionData());
826 if (macKey == null) {
827 System.err.println("Error: must supply argument for --mackey");
855 if (algo != null || iv != null || key != null || macAlgo != null || macKey != null
862 if (macAlgo != null || macKey != null || tag != null) {
863 if (macAlgo == null || macKey == null || tag == null) {
864 System.err.println("Error: all of --macalgo, --mackey, and --tag must "
874 if (macKey == null || macKey.length == 0)
    [all...]

Completed in 653 milliseconds