Русский (Russian)
Appearance
ENUM
XCFrameworkSignature
Contents
unsigned
signedWithAppleCertificate(teamIdentifier:teamName:)
selfSigned(fingerprint:)
public enum XCFrameworkSignature: Equatable, Hashable, Codable, Sendable
Expected signature for XCFramework. Can be used to verify the authenticity of the XCFramework against the actual signature calculated from it.
unsigned
case unsigned
The XCFramework is not signed.
signedWithAppleCertificate(teamIdentifier:teamName:)
case signedWithAppleCertificate(teamIdentifier: String, teamName: String)
The XCFramework is signed with an Apple Development certificate.
selfSigned(fingerprint:)
case selfSigned(fingerprint: String)
The XCFramework is signed by a self issued code signing identity.