
1.购买SSL证书验证(跟https认证一样)
2.iphone 签名.mobileconfig文件
- xxx.mobileconfig 未签名的mobileconfig文件
- server.crt 你的服务器SSL证书
- server.key 您的私钥
- ca-bundle.crt 你的根证书链
- signed.mobileconfig 签名过的mobileconfig名字
3.终端签名命令
1
|
openssl smime -sign - in xxx.mobileconfig -out signed.mobileconfig -signer server.crt -inkey server.key -certfile ca-bundle.crt -outform der -nodetach |
注意事项:
1.越狱设备选安装命令终端(可在加软件源https://aptso.cn)进行安装。
2.其次还需要在Cydia里安装openssl
3.完成以上两项注意事项才可执行上面的签名命令