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

  /frameworks/base/core/java/android/content/pm/
ContainerEncryptionParams.java 71 private final SecretKey mMacKey;
145 mMacKey = macKey;
174 return mMacKey;
225 || !isSecretKeyEqual(mMacKey, other.mMacKey)) {
270 hash += 17 * mMacKey.hashCode();
296 sb.append("mMacKey=");
297 sb.append(mMacKey.toString());
320 dest.writeSerializable(mMacKey);
338 mMacKey = (SecretKey) source.readSerializable()
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 90 private final SecretKey mMacKey;
116 mMacKey = macKey;
279 mMac.init(mMacKey);
321 mMac.init(mMacKey);
VaultProvider.java 93 /** Blob used to derive {@link #mMacKey} from our secret key. */
129 private SecretKey mMacKey;
200 mMacKey = new SecretKeySpec(rawMacKey, "HmacSHA256");
224 return new EncryptedDocument(docId, file, mDataKey, mMacKey);
  /development/samples/Vault/tests/src/com/example/android/vault/
EncryptedDocumentTest.java 52 private SecretKey mMacKey = new SecretKeySpec(new byte[] {
76 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey);
105 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey);
159 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey);
179 final EncryptedDocument doc1 = new EncryptedDocument(1, mFile, mDataKey, mMacKey);
180 final EncryptedDocument doc4 = new EncryptedDocument(4, mFile, mDataKey, mMacKey);
196 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey);
216 final EncryptedDocument doc = new EncryptedDocument(4, mFile, mDataKey, mMacKey);

Completed in 59 milliseconds