美文网首页
iOS 签名 unsigned.mobileconfig 文件

iOS 签名 unsigned.mobileconfig 文件

作者: CNKCQ | 来源:发表于2020-12-14 20:36 被阅读0次

iOS 签名 unsigned.mobileconfig 文件

通过 Apple 开发者账号签名
  • 查看可用于签名的 id
security find-identity -v -p codesigning
  • result:
1) 4E8D512C8480FAC679947D6E50190AE9BAB3E825 "3rd Party Mac Developer Application: Developer Name (DUCNFCN445)"
2) 8B0EBBAE7E7230BB6AF5D69CA09B769663BC844D "Mac Developer: Developer Name (DUCNFCN445)"
3) 4E8D512C8480AAC67995D69CA09B769663BC844D "iPhone Developer: App Developer (DUCNFCN445)"
4) 65E24CDAF5B3E1E1480818CA4656210871214337 "Developer ID Application: App Developer (DUCNFCN445)"
   4 valid identities found
  • 通过 security 签名
security cms -S -N "iPhone Developer: App Developer (DUCNFCN445)" -i mdm_template_profile.mobileconfig -o signed.mobileconfig
python profile_signer.py -n "iPhone Developer: App Developer (DUCNFCN445)" sign mdm_template_profile.mobileconfig signed.mobileconfig
  • 通过 Apple Configurator 2Hancock 等工具签名
通过 openssl 签名
openssl smime -sign -in unsigned.mobileconfig -out signed.mobileconfig -signer server.crt -inkey server.key  -certfile ca.crt -outform der -nodetach
unsigned.mobileconfig 通过 openssl 签名

注意:如果 signercertfile 不一一对应,就会出现 红色的 “尚未验证”

例如:

MDM 证书 “MDM Vendor: Shanghai XXXXX Information Technology Co. Ltd.”

Apple Inc. Root Certificate

正确的关系应该是:

“MDM Vendor: Shanghai XXXXX Information Technology Co. Ltd.”

Apple Worldwide Developer Relations Certification Authority

更多 Apple 官方证书下载

Apple PKI

相关文章

  • iOS 签名 unsigned.mobileconfig 文件

    iOS 签名 unsigned.mobileconfig 文件 通过 Apple 开发者账号签名 查看可用于签名的...

  • iOS重签名了解一下

    什么是代码签名 签名: 确保被签名文件的有效性 代码签名:iOS里的代码签名,简单概括就是用Mac上的私钥,对ap...

  • iOS签名原理

    为什么要签名? 保证这个APP是经过苹果官方授权的 iOS签名原理 MAC端生成CSR文件(公钥M)创建CSR文件...

  • iOS开发逆向之应用签名!

    本文主要讲解什么是代码签名,以及iOS中的应用签名 代码签名 代码签名是对可执行文件或脚本进行数字签名.用来确认软...

  • Jenkins问题

    1. iOS编译签名文件找不到 Check dependenciesCode Sign error: No mat...

  • iOS App重签名步骤整理--记录要点

    对App重签名需要准备很多原理类的知识,知道iOS 的代码签名机制,熟悉证书与配置文件、 Mach-O 二进制文件...

  • 完善改写重签名Mac工具

    参考: iOS App 签名的原理 iOS企业重签名问题及经验 iOS重签名工具开发之路(介绍篇) ios-app...

  • iOS证书签名

    iOS证书签名。 在iOS的发布应用过程中,我们会遇到4个文件,和4个密钥。分别是CSR文件,p12文件,cer证...

  • fastlane脚本

    自动签名,并上传蒲公英 default_platform(:ios) #自动获取配置文件 get_provisi...

  • TF签名-适合自己的才是最好的

    使用百度检索-TF签名 铺天盖地全是ios签名广告比如:苹果企业签名-ios超级签名-TF签名-IPA线上签名-a...

网友评论

      本文标题:iOS 签名 unsigned.mobileconfig 文件

      本文链接:https://www.haomeiwen.com/subject/assbgktx.html