Skip to content

Translation 🌍

이 페이지를 번역하거나 기존 번역을 개선할 수 있습니다.

기여

ENUM

XCFrameworkSignature

Contents

  • Cases
    • unsigned
    • signedWithAppleCertificate(teamIdentifier:teamName:)
    • selfSigned(fingerprint:)
swift
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.

Cases

unsigned

swift
case unsigned

The XCFramework is not signed.

signedWithAppleCertificate(teamIdentifier:teamName:)

swift
case signedWithAppleCertificate(teamIdentifier: String, teamName: String)

The XCFramework is signed with an Apple Development certificate.

selfSigned(fingerprint:)

swift
case selfSigned(fingerprint: String)

The XCFramework is signed by a self issued code signing identity.

Released under the MIT License.