Make AndroidKeyStoreLoadStoreParameter public

So other packages can load the keystore with namespace.

Test: build
Change-Id: I7de3e51df438b794adb3793a189396999bdd1b88
This commit is contained in:
Tianjie
2020-12-15 15:12:37 -08:00
parent 8ef2e0426a
commit c0e116a05c

View File

@@ -22,11 +22,11 @@ import java.security.KeyStore.ProtectionParameter;
/**
* @hide
*/
class AndroidKeyStoreLoadStoreParameter implements KeyStore.LoadStoreParameter {
public class AndroidKeyStoreLoadStoreParameter implements KeyStore.LoadStoreParameter {
private final int mNamespace;
AndroidKeyStoreLoadStoreParameter(int namespace) {
public AndroidKeyStoreLoadStoreParameter(int namespace) {
mNamespace = namespace;
}