HomeSort by relevance Sort by last modified time
    Searched defs:createKey (Results 1 - 25 of 43) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java 54 public static AsymmetricKeyParameter createKey(byte[] privateKeyInfoData) throws IOException
56 return createKey(PrivateKeyInfo.getInstance(ASN1Primitive.fromByteArray(privateKeyInfoData)));
67 public static AsymmetricKeyParameter createKey(InputStream inStr) throws IOException
69 return createKey(PrivateKeyInfo.getInstance(new ASN1InputStream(inStr).readObject()));
79 public static AsymmetricKeyParameter createKey(PrivateKeyInfo keyInfo) throws IOException
PublicKeyFactory.java 62 public static AsymmetricKeyParameter createKey(byte[] keyInfoData) throws IOException
64 return createKey(SubjectPublicKeyInfo.getInstance(ASN1Primitive.fromByteArray(keyInfoData)));
74 public static AsymmetricKeyParameter createKey(InputStream inStr) throws IOException
76 return createKey(SubjectPublicKeyInfo.getInstance(new ASN1InputStream(inStr).readObject()));
86 public static AsymmetricKeyParameter createKey(SubjectPublicKeyInfo keyInfo) throws IOException
  /packages/apps/Calendar/src/com/android/calendar/event/
EventColorCache.java 48 mColorKeyMap.put(createKey(accountName, accountType, displayColor), colorKey);
49 String key = createKey(accountName, accountType);
62 ArrayList<Integer> colors = mColorPaletteMap.get(createKey(accountName, accountType));
77 return mColorKeyMap.get(createKey(accountName, accountType, displayColor));
96 private String createKey(String accountName, String accountType) {
103 private String createKey(String accountName, String accountType, int displayColor) {
104 return new StringBuilder(createKey(accountName, accountType))
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
ScreenLockBoundKeysTest.java 104 createKey();
111 private void createKey() {
139 * Tries to encrypt some data with the generated key in {@link #createKey} which is
162 createKey();
FingerprintBoundKeysTest.java 111 createKey();
127 private void createKey() {
146 Log.i(TAG, "createKey: [1]: done");
152 Log.i(TAG, "createKey: [2]: failed");
166 * Tries to encrypt some data with the generated key in {@link #createKey} which is
211 createKey();
  /developers/build/prebuilts/gradle/ConfirmCredential/Application/src/main/java/com/example/android/confirmcredential/
MainActivity.java 84 createKey();
95 * Tries to encrypt some data with the generated key in {@link #createKey} which is
137 private void createKey() {
  /developers/samples/android/security/ConfirmCredential/Application/src/main/java/com/example/android/confirmcredential/
MainActivity.java 84 createKey();
95 * Tries to encrypt some data with the generated key in {@link #createKey} which is
137 private void createKey() {
  /development/samples/browseable/ConfirmCredential/src/com.example.android.confirmcredential/
MainActivity.java 84 createKey();
95 * Tries to encrypt some data with the generated key in {@link #createKey} which is
137 private void createKey() {
  /external/icu/icu4c/source/common/
servls.cpp 73 ICUServiceKey* key = createKey(&locName, kind, status);
277 ICULocaleService::createKey(const UnicodeString* id, UErrorCode& status) const
283 ICULocaleService::createKey(const UnicodeString* id, int32_t kind, UErrorCode& status) const
serv.cpp 376 ICUServiceKey* key = createKey(&descriptor, status);
620 ICUServiceKey* fallbackKey = createKey(matchID, status);
705 ICUServiceKey* fallbackKey = createKey(&id, status);
786 ICUServiceKey* matchKey = createKey(matchID, status);
820 ICUServiceKey* key = createKey(&id, status);
924 ICUService::createKey(const UnicodeString* id, UErrorCode& status) const
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
LocalPreferences.java 47 return getPrefs(context).getInt(createKey(root), fallback);
65 getPrefs(context).edit().putInt(createKey(root), viewMode).apply();
72 private static String createKey(RootInfo root) {
  /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
MainActivity.java 145 createKey(DEFAULT_KEY_NAME, true);
146 createKey(KEY_NAME_NOT_INVALIDATED, false);
154 * {@link #createKey(String, boolean)} method.
205 * Tries to encrypt some data with the generated key in {@link #createKey} which is
233 public void createKey(String keyName, boolean invalidatedByBiometricEnrollment) {
FingerprintAuthenticationDialogFragment.java 184 mActivity.createKey(MainActivity.DEFAULT_KEY_NAME, true);
  /developers/samples/android/security/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
MainActivity.java 145 createKey(DEFAULT_KEY_NAME, true);
146 createKey(KEY_NAME_NOT_INVALIDATED, false);
154 * {@link #createKey(String, boolean)} method.
205 * Tries to encrypt some data with the generated key in {@link #createKey} which is
233 public void createKey(String keyName, boolean invalidatedByBiometricEnrollment) {
FingerprintAuthenticationDialogFragment.java 184 mActivity.createKey(MainActivity.DEFAULT_KEY_NAME, true);
  /development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/
MainActivity.java 145 createKey(DEFAULT_KEY_NAME, true);
146 createKey(KEY_NAME_NOT_INVALIDATED, false);
154 * {@link #createKey(String, boolean)} method.
205 * Tries to encrypt some data with the generated key in {@link #createKey} which is
233 public void createKey(String keyName, boolean invalidatedByBiometricEnrollment) {
FingerprintAuthenticationDialogFragment.java 184 mActivity.createKey(MainActivity.DEFAULT_KEY_NAME, true);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICULocaleService.java 64 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then
69 Key key = createKey(locale, kind);
609 public Key createKey(String id) {
613 public Key createKey(String id, int kind) {
617 public Key createKey(ULocale l, int kind) {
ICUService.java 343 * createKey to create a key for the provided descriptor.
346 return getKey(createKey(descriptor), null);
351 * createKey to create a key from the provided descriptor.
357 return getKey(createKey(descriptor), actualReturn);
563 * <p>matchID is passed to createKey to create a key. If the
570 Key fallbackKey = createKey(matchID);
646 Key key = createKey(id);
732 Key matchKey = createKey(matchID);
804 String canonicalID = createKey(id).canonicalID();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICULocaleService.java 60 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then
65 Key key = createKey(locale, kind);
605 public Key createKey(String id) {
609 public Key createKey(String id, int kind) {
613 public Key createKey(ULocale l, int kind) {
ICUService.java 341 * createKey to create a key for the provided descriptor.
344 return getKey(createKey(descriptor), null);
349 * createKey to create a key from the provided descriptor.
355 return getKey(createKey(descriptor), actualReturn);
561 * <p>matchID is passed to createKey to create a key. If the
568 Key fallbackKey = createKey(matchID);
644 Key key = createKey(id);
730 Key matchKey = createKey(matchID);
802 String canonicalID = createKey(id).canonicalID();
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 141 private PrivateKey createKey() throws Exception {
165 signer.initSign(createKey());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
AuthenticationBoundKeyTestActivity.java 159 createKey(LOCKSCREEN);
174 createKey(FINGERPRINT);
209 private void createKey(int testType) {
259 createKey(LOCKSCREEN);
278 createKey(FINGERPRINT);
  /external/guice/core/test/com/google/inject/
KeyTest.java 216 KeyTest.<Integer>createKey();
224 private static <T> Key<T> createKey() {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ICUServiceTest.java 107 public Key createKey(String id) {
    [all...]

Completed in 873 milliseconds

1 2