IKeyStoreClient

public interface IKeyStoreClient

com.android.tradefed.util.keystore.IKeyStoreClient


用于访问密码或敏感数据的密钥库的界面。

摘要

公共方法

abstract boolean containsKey(String key)

一个用于检查密钥库是否包含给定键的方法。

abstract String fetchKey(String key)

一个用于提取密钥库内指定密钥的方法。

abstract boolean isAvailable()

一个用于检查是否具有可与其通信的有效密钥库的方法。

公共方法

包含键

public abstract boolean containsKey (String key)

一个用于检查密钥库是否包含给定键的方法。

参数
key String:检查是否存在。

返回
boolean 如果指定的键存在,则返回 true。

提取密钥

public abstract String fetchKey (String key)

一个用于提取密钥库内指定密钥的方法。

参数
key String:用于在密钥库内提取。

返回
String 键的 String 值。如果该键为一个键 。

可用

public abstract boolean isAvailable ()

一个用于检查是否具有可与其通信的有效密钥库的方法。

返回
boolean 如果拥有有效的密钥库,则返回 true,否则返回 false。