【如何在Android设备上安装证书链】人生难得几回搏,此时不搏待何时。这篇文章主要讲述如何在Android设备上安装证书链相关的知识,希望能为你提供帮助。
API 27上的android设备,我的应用程序是设备所有者。
使用DevicePolicyManager,有人可以提供一个installKeyPair功能的例子吗?
public boolean installKeyPair (ComponentName admin,
PrivateKey privKey,
Certificate[] certs,
String alias,
boolean requestAccess)
如何获取.pem文件(从.p12)到PrivateKey以及Certificate对象?
我似乎无法在网上找到任何例子......
答案如果您查看CertInstallerActivity的AOSP源代码,您将看到一个示例用法:
您需要将文件作为字符串读取,然后您似乎只需遵循其使用模式:
String alias = "alias_as_string";
String key = "pem_as_string";
String cert = "crt_as_string";
// create keySpec from the pem file
PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(
Base64.decode(key, Base64.DEFAULT));
// generate the RSP private key from the keySpec
KeyFactory kf = KeyFactory.getInstance("RSA");
PrivateKey privatekey = kf.generatePrivate(keySpec);
// generate the certificate object for the given content
Certificate certificate = CertificateFactory.getInstance("X.509")
.generateCertificate(
new Base64InputStream(new ByteArrayInputStream(cert.getBytes()),
Base64.DEFAULT));
然后实际调用DevicePolicyManager:
dpm.installKeyPair(null, privatekey, certificate,alias);
我从来没有用过这个,只是在阅读AOSP
另一答案如果您从.p12(PKCS12)文件开始,您可能还想查看
KeyChain.createInstallIntent
(documentation)。推荐阅读
- Appodeal Native广告错误()
- 如何从app config.xml中删除`key`和`string`以停止显示AdMob()
- 如何为Android应用设置Smart Banner()
- Android上的非页内AdMob中介
- Android和AdMob(何时调用AdView.loadAd)
- Android(如何在应用程序中集成admob())
- Admob集成到Android应用程序中
- 如果我在亚马逊,9apps和Getjar等其他商店上传应用程序而不是谷歌游戏商店,Admob会工作吗()
- Admob测试广告未在Android应用程序中显示