Skip to content

c0yax/amcs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

amcs(apple mobile config signature)

sign Apple’s mobileconfig file to solve the ‘unsigned’ problem

the project rely openssl

https://github.com/openssl/openssl

first step

  • to prepare a self-signed certificate
openssl genrsa -out ios.key 2048
openssl req -new -sha256 -key ios.key -out ios.csr

SSL certificate

  • You need to hold the crt and key files issued by the operator

how to use?

go get github.com/19byte/amcs

err := amcs.Sign(mobileconfigPath,outPath,sslKeyPath,sslCrtPath,iosCrtPath)
if err != nil {
    panic(err)
}

before signing

before signing

after signing

after signing

About

sign Apple’s mobileconfig file to solve the ‘unsigned’ problem

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Go 100.0%