HomeSort by relevance Sort by last modified time
    Searched full:keystore (Results 176 - 200 of 464) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/sync/protocol/
nigori_specifics.proto 33 // Once keystore migration is performed, we have to freeze the keybag so that
34 // older clients (that don't support keystore encryption) do not attempt to
91 // Keystore key encryption passphrase. Uses |keystore_bootstrap| to
102 // The keystore decryptor token blob. Encrypted with the keystore key, and
107 // The time (in epoch milliseconds) at which the keystore migration was
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 31 import java.security.KeyStore;
45 private KeyStore mockKeyStore;
154 assertTrue(ks instanceof KeyStore);
162 assertTrue(ks instanceof KeyStore);
174 private static class MyKeyStore extends KeyStore {
250 public void engineStore(KeyStore.LoadStoreParameter param){
  /external/chromium_org/sync/internal_api/
sync_encryption_handler_impl_unittest.cc 42 // The raw keystore key the server sends.
235 // and keystore key and initialize the encryption handler with it.
605 // Ensure setting the keystore key works, updates the bootstrap token, and
622 // Build a set of keystore keys.
657 // of list values containing the keystore keys).
692 // Ensure GetKeystoreDecryptor only updates the keystore decryptor token if it
716 // migrated, we should be in keystore passphrase state.
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
TestUtils.java 30 import java.security.KeyStore;
60 // The file name prefix to load keystore from
64 // The file name suffixes to load keystore from
65 // *.ks1 - keystore containing untrusted certificates only
66 // *.ks2 - keystore containing trusted certificates only
67 // *.ks3 - keystore containing both trusted and untrusted certificates
133 * Creates test <code>KeyStore</code> instance
136 * Do not initialize returned <code>KeyStore</code> if false
141 * 1 - <code>KeyStore</code> with untrusted certificates only<br>
142 * 2 - <code>KeyStore</code> with trusted certificates only<br
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
TrustManagerFactory1Test.java 23 import java.security.KeyStore;
376 KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
389 * Test for <code>init(KeyStore keyStore)</code>
393 KeyStore ksNull = null;
405 * Test for <code>init(KeyStore keyStore)</code>
409 KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType())
    [all...]
SSLServerSocketTest.java 27 import java.security.KeyStore;
327 * Defines the keystore contents for the server, BKS version. Holds just a
357 * Defines the keystore contents for the server, JKS version. Holds just a
389 * Loads a keystore from a base64-encoded String. Returns the KeyManager[]
397 KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
398 keyStore.load(inputStream, PASSWORD.toCharArray());
403 keyManagerFactory.init(keyStore, PASSWORD.toCharArray())
    [all...]
KeyManagerFactory1Test.java 22 import java.security.KeyStore;
435 * Test for <code>init(KeyStore keyStore, char[] password)</code> and
448 KeyStore ksNull = null;
457 KeyStore ks;
459 ks = KeyStore.getInstance(KeyStore.getDefaultType());
462 fail(e.toString() + "default KeyStore type is not supported");
504 KeyStore.ProtectionParameter pp = new ProtectionParameterImpl();
505 KeyStore.Builder bld = KeyStore.Builder.newInstance("testType", null, pp)
    [all...]
SSLContext1Test.java 22 import java.security.KeyStore;
457 KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
494 KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
532 KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType())
    [all...]
HandshakeCompletedEventTest.java 26 import java.security.KeyStore;
210 * Defines the keystore contents for the server, BKS version. Holds just a
240 * Defines the keystore contents for the server, JKS version. Holds just a
270 * Defines the keystore contents for the client, JKS version. Holds just a
300 * Defines the keystore contents for the client, BKS version. Holds just a
536 * Loads a keystore from a base64-encoded String. Returns the KeyManager[]
543 KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType())
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CredentialHelper.java 36 import java.security.KeyStore.PasswordProtection;
37 import java.security.KeyStore.PrivateKeyEntry;
38 import java.security.KeyStore;
326 java.security.KeyStore keystore = java.security.KeyStore.getInstance("PKCS12"); local
328 keystore.load(new ByteArrayInputStream(getData(KeyChain.EXTRA_PKCS12)),
331 Enumeration<String> aliases = keystore.aliases();
338 KeyStore.Entry entry = keystore.getEntry(alias, passwordProtection)
    [all...]
CertInstaller.java 32 import android.security.KeyStore;
49 * Installs certificates to the system keystore.
67 // key to KeyStore
74 private final KeyStore mKeyStore = KeyStore.getInstance();
277 if (!mKeyStore.put(PKEY_MAP_KEY, bytes, KeyStore.UID_SELF, KeyStore.FLAG_ENCRYPTED)) {
380 mCredentials.setInstallAsUid(KeyStore.UID_SELF);
411 // install everything to system keystore
460 // Note: one key takes about 1300 bytes in the keystore, so b
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 45 import java.security.KeyStore;
46 import java.security.KeyStore.PrivateKeyEntry;
191 KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
193 keyStore.load(fis, mWizard.getKeystorePassword().toCharArray());
195 PrivateKeyEntry entry = (KeyStore.PrivateKeyEntry)keyStore.getEntry(
197 new KeyStore.PasswordProtection
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
TrustManagerFactory.java 21 import java.security.KeyStore;
30 * The factory for {@code TrustManager}s based on {@code KeyStore} or provider
186 * Initializes this factory instance with the specified keystore as source
190 * the keystore or {@code null}.
194 public final void init(KeyStore ks) throws KeyStoreException {
  /packages/apps/CertInstaller/res/values/
strings.xml 37 <string name="p12_description">Certificates in PKCS12 keystore.</string>
39 <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE] -->
41 <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE] -->
43 <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE] -->
45 <!-- Item found in the PKCS12 keystore being investigated [CHAR LIMIT=NONE]-->
  /system/security/keystore/
keystore_cli.cpp 22 #include <keystore/IKeystoreService.h>
26 #include <keystore/keystore.h>
174 sp<IBinder> binder = sm->getService(String16("android.security.keystore"));
178 fprintf(stderr, "%s: error: could not connect to keystore service\n", argv[0]);
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties.h 41 #define KEYSTORE_SYSTEM_FILE_NAME "filesystem.keystore.fileName"
42 #define KEYSTORE_USER_FILE_NAME "filesystem.keystore.user.fileName"
  /system/security/softkeymaster/
module.cpp 22 #include <keystore/keystore.h>
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyChainTest.java 17 package android.keystore.cts;
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/BasicAndroidKeyStoreSample/src/main/java/com/example/android/basicandroidkeystore/
SecurityConstants.java 21 * This class should not be considered a complete list of the algorithms, keystore types,
  /developers/samples/android/
build.gradle 2 "security/keystore/BasicAndroidKeyStore",
  /developers/samples/android/security/keystore/BasicAndroidKeyStore/BasicAndroidKeyStoreSample/src/main/java/com/example/android/basicandroidkeystore/
SecurityConstants.java 21 * This class should not be considered a complete list of the algorithms, keystore types,
  /development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
SecurityConstants.java 21 * This class should not be considered a complete list of the algorithms, keystore types,
  /device/asus/grouper/self-extractors/nvidia/staging/
device-partial.mk 74 PRODUCT_PACKAGES += keystore.grouper
  /device/asus/grouper/self-extractors/nvidia/staging/keymaster/
Android.mk 22 LOCAL_MODULE := keystore.grouper
  /device/asus/tilapia/self-extractors/nvidia/staging/
device-partial.mk 74 PRODUCT_PACKAGES += keystore.grouper

Completed in 484 milliseconds

1 2 3 4 5 6 78 91011>>