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

  /development/samples/Vault/tests/src/com/example/android/vault/
EncryptedDocumentTest.java 41 * Tests for {@link EncryptedDocument}.
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)
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 19 import static com.example.android.vault.EncryptedDocument.DATA_KEY_LENGTH;
20 import static com.example.android.vault.EncryptedDocument.MAC_KEY_LENGTH;
59 * Each document is stored as described by {@link EncryptedDocument} with
61 * {@link EncryptedDocument} instances without a content section, and a list of
220 private EncryptedDocument getDocument(long docId) throws GeneralSecurityException {
222 return new EncryptedDocument(docId, file, mDataKey, mMacKey);
230 final EncryptedDocument doc = getDocument(docId);
276 final EncryptedDocument parentDoc = getDocument(parentDocId);
298 final EncryptedDocument doc = getDocument(docId);
337 final EncryptedDocument doc = getDocument(docId)
    [all...]
EncryptedDocument.java 63 public class EncryptedDocument {
100 public EncryptedDocument(long docId, File file, SecretKey dataKey, SecretKey macKey)

Completed in 34 milliseconds