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

  /frameworks/base/keystore/tests/src/android/security/keystore/
KeyGenParameterSpecTest.java 34 static final int KEY_PURPOSES = KeyProperties.PURPOSE_SIGN | KeyProperties.PURPOSE_VERIFY;
47 KeyGenParameterSpec spec = new KeyGenParameterSpec.Builder(ALIAS, KEY_PURPOSES).build();
51 assertThat(copiedSpec.getPurposes(), is(KEY_PURPOSES));
  /frameworks/base/keystore/tests/src/android/security/
ParcelableKeyGenParameterSpecTest.java 41 static final int KEY_PURPOSES = KeyProperties.PURPOSE_SIGN | KeyProperties.PURPOSE_VERIFY;
59 return new KeyGenParameterSpec.Builder(ALIAS, KEY_PURPOSES)
85 assertThat(spec.getPurposes(), is(KEY_PURPOSES));
132 new KeyGenParameterSpec.Builder(ALIAS, KEY_PURPOSES).build());
139 assertThat(fromParcel.getPurposes(), is(KEY_PURPOSES));
150 new KeyGenParameterSpec.Builder(ALIAS, KEY_PURPOSES)
169 new KeyGenParameterSpec.Builder(ALIAS, KEY_PURPOSES)

Completed in 67 milliseconds