Skip to content

Pure python3 implementation for ios developer certificate manager and re-signing ipa

License

Notifications You must be signed in to change notification settings

codematrixer/icertools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

icertools

纯Python3实现的iOS证书管理IPA重签名工具,无需提前登录苹果开发者网站 进行相关操作。原理参考XCode自动管理证书

没有这个工具前, 使用个人开发者账号对IPA重签时,需要进入苹果开发者网站(输入验证码登录),添加新设备,然后生成profile文件, 然后导出profile文件, 再用一些重签名工具进行重签, 非常麻烦。 现在有了这个工具,只需调用一个API即可完成重签,非常之高效。

English

Requirements

  • Python3.6+
  • MacOS

Features

  • IPA重签名
  • 添加注册设备
  • 查找设备列表
  • 查找证书列表
  • 查找BundleId列表
  • 创建BundleId
  • 查找Profile列表
  • 创建Profile
  • 删除证书

Usage

Auth

Code Example

import json
from icertools.api import Api
from icertools.resign import Resign

# Auth info
key_file = '/Users/xx/AuthKey_xxx.p8'  # replace with your key file path
key_id = "xxx"   # replace with your key id
issuer_id = "xxx"   # replace with your issuer id
user_id = "xxx"   # replace with your user id


api = Api(
    key_file=key_file,
    key_id=key_id,
    issuer_id=issuer_id,
    user_id=user_id)


# List Devices
data = api.list_devices()
print(json.dumps(data, indent=4))


# List Bundle ID
data = api.list_bundle_ids()
print(json.dumps(data, indent=4))


# Create Bundle ID
data = api.create_bundle_id("test", "*")
print(json.dumps(data, indent=4))


# List Certificates
data = api.list_certificates()
print(json.dumps(data, indent=4))


# Create Certificate
csr_path = "/Users/xx/CertificateSigningRequest.certSigningRequest"    # replace with your certSigningRequest path
data = api.create_certificate(csr_path)
print(json.dumps(data, indent=4))


# List Profiles
data = api.list_profiles()
print(json.dumps(data, indent=4))


# Delete Profile
api.delete_profile("8SX4Z2FBUL")


# Register Device
data = api.register_device("00008030-0004598921BB802E", "iPhone")
print(json.dumps(data, indent=4))


# Resign IPA
input_ipa_path = "/Users/develop/tmp/ios-test.ipa"
output_ipa_path = "/Users/develop/tmp/resgin/r-ios-test.ipa"
r = Resign(api, input_ipa_path, output_ipa_path)
r.resign_ipa()

Refer to

Releases

No releases published

Packages

No packages published

Languages