Skip to content

Commit 5b0b8e8

Browse files
rozdgodrei
authored andcommitted
Apple Development & Apple Distribution certificate (#112)
Adds support for new types of Apple certificates introduced in Xcode 11
1 parent 3f16f92 commit 5b0b8e8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

codesign/certificates.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ const (
1919

2020
var (
2121
iOSCertificateNames = []string{
22-
"iPhone Developer", //type: "iOS Development"
22+
"iPhone Developer", // type: "iOS Development"
2323
"iPhone Distribution", // type: "iOS Distribution"
24+
"Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH"
25+
"Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE"
2426
}
2527

2628
macOSCertificateNames = []string{
@@ -32,6 +34,8 @@ var (
3234
macOSInstallerCertificateNames = []string{
3335
"3rd Party Mac Developer Installer", // type: "Mac Installer Distribution"
3436
"Developer ID Installer", // type: "Developer ID Installer"
37+
"Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH"
38+
"Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE"
3539
}
3640
)
3741

0 commit comments

Comments
 (0)