Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0e116a0 authored by Tianjie's avatar Tianjie
Browse files

Make AndroidKeyStoreLoadStoreParameter public

So other packages can load the keystore with namespace.

Test: build
Change-Id: I7de3e51df438b794adb3793a189396999bdd1b88
parent 8ef2e042
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
    }