OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAC_KEY_LENGTH
(Results
1 - 2
of
2
) sorted by null
/development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java
81
public static final int
MAC_KEY_LENGTH
= 32;
109
if (macKey.getEncoded().length !=
MAC_KEY_LENGTH
) {
110
throw new IllegalArgumentException("Expected MAC key length " +
MAC_KEY_LENGTH
);
361
final byte[] mac = new byte[
MAC_KEY_LENGTH
];
VaultProvider.java
20
import static com.example.android.vault.EncryptedDocument.
MAC_KEY_LENGTH
;
193
final byte[] rawMacKey = new byte[
MAC_KEY_LENGTH
];
Completed in 34 milliseconds