Search in sources :

Example 41 with VerificationParams

use of android.content.pm.VerificationParams in project android_frameworks_base by crdroidandroid.

the class VerificationParamsTest method testHashCode_OriginatingUri_Failure.

public void testHashCode_OriginatingUri_Failure() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse("http://a.different.uri/"), Uri.parse(REFERRER_STRING), ORIGINATING_UID);
    assertFalse(params1.hashCode() == params2.hashCode());
}
Also used : VerificationParams(android.content.pm.VerificationParams)

Example 42 with VerificationParams

use of android.content.pm.VerificationParams in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testEquals_Originating_Uid_Failure.

public void testEquals_Originating_Uid_Failure() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse(ORIGINATING_URI_STRING), Uri.parse(REFERRER_STRING), 12345, new ManifestDigest(DIGEST_BYTES));
    assertFalse(params1.equals(params2));
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Example 43 with VerificationParams

use of android.content.pm.VerificationParams in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testHashCode_Referrer_Failure.

public void testHashCode_Referrer_Failure() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse(ORIGINATING_URI_STRING), null, ORIGINATING_UID, new ManifestDigest(DIGEST_BYTES));
    assertFalse(params1.hashCode() == params2.hashCode());
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Example 44 with VerificationParams

use of android.content.pm.VerificationParams in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testEquals_Success.

public void testEquals_Success() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse(ORIGINATING_URI_STRING), Uri.parse(REFERRER_STRING), ORIGINATING_UID, new ManifestDigest(DIGEST_BYTES));
    assertEquals(params1, params2);
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Example 45 with VerificationParams

use of android.content.pm.VerificationParams in project android_frameworks_base by ParanoidAndroid.

the class VerificationParamsTest method testHashCode_ManifestDigest_Failure.

public void testHashCode_ManifestDigest_Failure() throws Exception {
    VerificationParams params1 = new VerificationParams(VERIFICATION_URI, ORIGINATING_URI, REFERRER, ORIGINATING_UID, MANIFEST_DIGEST);
    VerificationParams params2 = new VerificationParams(Uri.parse(VERIFICATION_URI_STRING), Uri.parse(ORIGINATING_URI_STRING), Uri.parse(REFERRER_STRING), ORIGINATING_UID, new ManifestDigest("a different digest".getBytes()));
    assertFalse(params1.hashCode() == params2.hashCode());
}
Also used : VerificationParams(android.content.pm.VerificationParams) ManifestDigest(android.content.pm.ManifestDigest)

Aggregations

VerificationParams (android.content.pm.VerificationParams)82 ManifestDigest (android.content.pm.ManifestDigest)14 Parcel (android.os.Parcel)6 ContainerEncryptionParams (android.content.pm.ContainerEncryptionParams)1 IPackageInstallObserver (android.content.pm.IPackageInstallObserver)1 Uri (android.net.Uri)1 RemoteException (android.os.RemoteException)1 File (java.io.File)1 InvalidAlgorithmParameterException (java.security.InvalidAlgorithmParameterException)1 SecretKey (javax.crypto.SecretKey)1 IvParameterSpec (javax.crypto.spec.IvParameterSpec)1 SecretKeySpec (javax.crypto.spec.SecretKeySpec)1