use of android.security.KeyStore in project android_frameworks_base by crdroidandroid.
the class LockSettingsService method unlockKeystore.
private void unlockKeystore(String password, int userHandle) {
if (DEBUG)
Slog.v(TAG, "Unlock keystore for user: " + userHandle);
final KeyStore ks = KeyStore.getInstance();
ks.unlock(userHandle, password);
}
Aggregations