python - 如何在 osx 上对 mac 应用程序进行代码签名

标签 python macos codesign code-signing-certificate osx-gatekeeper

我已经使用 python 2.7 在 osx 10.9 上创建了一个应用程序,所以没有使用 xcode。我用证书对它进行了代码签名,但是当使用 spctl 命令检查时,它显示为被拒绝

命令是:

codesign -s "3rd Party Mac Developer Application: Cloud Inc" -v -f /Applications/Cloud/logout.app/Contents/Frameworks/Python.framework/Versions/2.7
codesign -s "3rd Party Mac Developer Application: Cloud Inc" -v -f --entitlements /Users/Cloud/Desktop/app.entitlements /Applications/Cloud/logout.app/Contents/MacOS/python
codesign -s "3rd Party Mac Developer Application: Cloud Inc" -v -f --entitlements /Users/Cloud/Desktop/app.entitlements /Applications/Cloud/logout.app/Contents/MacOS/logout 
codesign -s "3rd Party Mac Developer Application: Cloud Inc" -v -f --entitlements /Users/Cloud/Desktop/app.entitlements /Applications/Cloud/logout.app
spctl --assess --type execute /Applications/Cloud/logout.app
/Applications/Cloud/logout.app: rejected

我的info.plist 文件是:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>English</string>
    <key>CFBundleDisplayName</key>
    <string>logout</string>
    <key>CFBundleExecutable</key>
    <string>logout</string>
    <key>CFBundleIconFile</key>
    <string>cc.icns</string>
    <key>CFBundleIdentifier</key>
    <string>com.cloud.macapp.logout</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>logout</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>4.4</string>
    <key>CFBundleSignature</key>
    <string>CC4B</string>
    <key>LSApplicationCategoryType</key>
    <string>public.app-category.reference</string>
    <key>CFBundleVersion</key>
    <string>4.4</string>
    <key>LSHasLocalizedDisplayName</key>
    <false/>
    <key>NSAppleScriptEnabled</key>
    <false/>
    <key>NSHumanReadableCopyright</key>
    <string>Copyright © 2014 Cloud, Inc.</string>
    <key>NSMainNibFile</key>
    <string>MainMenu</string>
    <key>NSPrincipalClass</key>
    <string>NSApplication</string>
    <key>PyMainFileNames</key>
    <array>
        <string>__boot__</string>
    </array>
    <key>PyOptions</key>
    <dict>
        <key>alias</key>
        <false/>
        <key>argv_emulation</key>
        <false/>
        <key>emulate_shell_environment</key>
        <false/>
        <key>no_chdir</key>
        <false/>
        <key>prefer_ppc</key>
        <false/>
        <key>site_packages</key>
        <false/>
        <key>use_faulthandler</key>
        <false/>
        <key>use_pythonpath</key>
        <false/>
        <key>verbose</key>
        <false/>
    </dict>
    <key>PyResourcePackages</key>
    <array>
    </array>
    <key>PyRuntimeLocations</key>
    <array>
        <string>@executable_path/../Frameworks/Python.framework/Versions/2.7/Python</string>
    </array>
    <key>PythonInfoDict</key>
    <dict>
        <key>PythonExecutable</key>
        <string>/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python</string>
        <key>PythonLongVersion</key>
        <string>2.7.8 (default, Jul  7 2014, 20:30:57) 
[GCC 4.2.1 (Apple Inc. build 5664)]</string>
        <key>PythonShortVersion</key>
        <string>2.7</string>
        <key>py2app</key>
        <dict>
            <key>alias</key>
            <false/>
            <key>template</key>
            <string>app</string>
            <key>version</key>
            <string>0.8</string>
        </dict>
    </dict>
</dict>
</plist>

app.entitlements 文件是:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>com.apple.security.app-sandbox</key>
    <true/>
</dict>
</plist>

请检查 info.plist 和 app.entitlements 和命令,建议一些补救措施来解决这个用 spctl 检查的被拒绝的东西。

最佳答案

我认为 Apple 文档在这方面有点欠缺。

据我了解,Apple 的文档中提到“第三方 Mac 应用程序开发人员”证书允许访问某些服务,尽管他们没有具体说明该文档中的这些服务是什么,但预计是这些 - iCloud存储、应用内购买、游戏中心、推送通知。

“第 3 方...”证书用于向 Apple 的 App Store 提交应用程序和安装程序,一旦被接受,Apple 将在其中添加自己的证书。

相比之下,“Developer ID...”证书用于在应用商店外部署。

spctl 工具是一个命令行工具,用于控制安全评估策略子系统,并与 Gatekeeper 联系在一起。

因为使用“第 3 方...”证书签名是为了发送给苹果商店,他们将剥离证书并用自己的证书重新签名,我从我的研究中得出结论,spctl 只会通过 Apple Store 或 Developer ID 证书接受返回。

阅读 this帖子,似乎也证实了这一点。

请注意,开发者 ID 证书只能由团队代理获得。

关于python - 如何在 osx 上对 mac 应用程序进行代码签名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26283847/

相关文章:

python - 识别 bool 数组/blob 的内部 - NumPy/Python

python - NumPy 数组索引

ios - Sierra : Keychain ignores access control settings and UI-prompts for permission 中的安全/代码设计

macos - codesigned kext 但为什么不在 Yosemite(10.10) 中加载

python - 不同数据库上的 Django MySQL

python - “int”对象不可下标 - 不知道如何修复

macos - Swift:调整嵌入式自定义 NSView 的大小

ruby-on-rails - 将 Rails 应用程序分发为 native 应用程序

macos - 关闭一个小型化的 NSWindow 然后恢复它

ios - xcode 6 无法处理应用程序。 bundle '*' 未使用苹果提交证书签名