Searched defs:encryptionSpec (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DContainerEncryptionParams.java85 AlgorithmParameterSpec encryptionSpec, SecretKey encryptionKey)
87 this(encryptionAlgorithm, encryptionSpec, encryptionKey, null, null, null, null, -1, -1,
97 * @param encryptionSpec algorithm parameter specification
112 AlgorithmParameterSpec encryptionSpec, SecretKey encryptionKey, String macAlgorithm,
118 } else if (encryptionSpec == null) {
119 throw new NullPointerException("encryptionSpec == null");
130 if (!(encryptionSpec instanceof IvParameterSpec)) {
136 mEncryptionSpec = (IvParameterSpec) encryptionSpec;
84 ContainerEncryptionParams(String encryptionAlgorithm, AlgorithmParameterSpec encryptionSpec, SecretKey encryptionKey) argument
111 ContainerEncryptionParams(String encryptionAlgorithm, AlgorithmParameterSpec encryptionSpec, SecretKey encryptionKey, String macAlgorithm, AlgorithmParameterSpec macSpec, SecretKey macKey, byte[] macTag, long authenticatedDataStart, long encryptedDataStart, long dataEnd) argument

Completed in 39 milliseconds