Skip to content

翻訳 🌍

このページの翻訳を行ったり、改善したりすることができます。

コントリビュートする

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.