Build Information
Successful build of CryptoSwift, reference 1.8.1 (884e18), with Swift 6.1 for iOS using Xcode 16.3 on 25 Apr 2026 07:34:01 UTC.
Swift 6 data race errors: 10
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CryptoSwift -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCapturesBuild Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bytehubio/CryptoSwift.git
Reference: 1.8.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/bytehubio/CryptoSwift
* tag 1.8.1 -> FETCH_HEAD
HEAD is now at 884e184 Merge pull request #1040 from CH3COOH/fix-privacy-info
Cloned https://github.com/bytehubio/CryptoSwift.git
Revision (git rev-parse @):
884e184bd41ad0a870d49ccc7131e7b0eb77f590
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/bytehubio/CryptoSwift.git at 1.8.1
========================================
Build
========================================
Selected platform: iOS
Swift version: 6.1
Building package at path: $PWD
https://github.com/bytehubio/CryptoSwift.git
https://github.com/bytehubio/CryptoSwift.git
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "CryptoSwift",
"name" : "CryptoSwift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "4.0"
}
],
"products" : [
{
"name" : "CryptoSwift",
"targets" : [
"CryptoSwift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "TestsPerformance",
"module_type" : "SwiftTarget",
"name" : "TestsPerformance",
"path" : "Tests/TestsPerformance",
"sources" : [
"TestsPerformance.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"CryptoSwift"
],
"type" : "test"
},
{
"c99name" : "CryptoSwiftTests",
"module_type" : "SwiftTarget",
"name" : "CryptoSwiftTests",
"path" : "Tests/CryptoSwiftTests",
"sources" : [
"AESCCMTests.swift",
"AESOCBTests.swift",
"AESTests.swift",
"AESTestsPerf.swift",
"ASN1Tests.swift",
"Access.swift",
"BlowfishTests.swift",
"CBCMacTests.swift",
"CMACTests.swift",
"ChaCha20Poly1305Tests.swift",
"ChaCha20Tests.swift",
"ChaCha20TestsPerf.swift",
"DigestTests.swift",
"DigestTestsPerf.swift",
"Error+Extension.swift",
"ExtensionsTest.swift",
"ExtensionsTestPerf.swift",
"HKDFTests.swift",
"HMACTests.swift",
"PBKDF.swift",
"PBKDFPerf.swift",
"PaddingTests.swift",
"Poly1305Tests.swift",
"RSASecKeyTests.swift",
"RSATests.swift",
"RabbitTests.swift",
"RabbitTestsPerf.swift",
"SHATestsPerf.swift",
"ScryptTests.swift",
"ScryptTestsPerf.swift",
"SignatureVerificationTests.swift",
"XCTestManifests.swift",
"XChaCha20Poly1305Tests.swift",
"XChaCha20Tests.swift"
],
"target_dependencies" : [
"CryptoSwift"
],
"type" : "test"
},
{
"c99name" : "CryptoSwift",
"module_type" : "SwiftTarget",
"name" : "CryptoSwift",
"path" : "Sources/CryptoSwift",
"product_memberships" : [
"CryptoSwift"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AEAD/AEAD.swift",
"AEAD/AEADChaCha20Poly1305.swift",
"AEAD/AEADXChaCha20Poly1305.swift",
"AES.Cryptors.swift",
"AES.swift",
"ASN1/ASN1.swift",
"ASN1/ASN1Decoder.swift",
"ASN1/ASN1Encoder.swift",
"ASN1/ASN1Scanner.swift",
"Array+Extension.swift",
"Authenticator.swift",
"BatchedCollection.swift",
"Bit.swift",
"BlockCipher.swift",
"BlockDecryptor.swift",
"BlockEncryptor.swift",
"BlockMode/BlockMode.swift",
"BlockMode/BlockModeOptions.swift",
"BlockMode/CBC.swift",
"BlockMode/CCM.swift",
"BlockMode/CFB.swift",
"BlockMode/CTR.swift",
"BlockMode/CipherModeWorker.swift",
"BlockMode/ECB.swift",
"BlockMode/GCM.swift",
"BlockMode/OCB.swift",
"BlockMode/OFB.swift",
"BlockMode/PCBC.swift",
"Blowfish.swift",
"CBCMAC.swift",
"CMAC.swift",
"CS_BigInt/Addition.swift",
"CS_BigInt/BigInt.swift",
"CS_BigInt/BigUInt.swift",
"CS_BigInt/Bitwise Ops.swift",
"CS_BigInt/CS.swift",
"CS_BigInt/Codable.swift",
"CS_BigInt/Comparable.swift",
"CS_BigInt/Data Conversion.swift",
"CS_BigInt/Division.swift",
"CS_BigInt/Exponentiation.swift",
"CS_BigInt/Floating Point Conversion.swift",
"CS_BigInt/GCD.swift",
"CS_BigInt/Hashable.swift",
"CS_BigInt/Integer Conversion.swift",
"CS_BigInt/Multiplication.swift",
"CS_BigInt/Prime Test.swift",
"CS_BigInt/Random.swift",
"CS_BigInt/Shifts.swift",
"CS_BigInt/Square Root.swift",
"CS_BigInt/Strideable.swift",
"CS_BigInt/String Conversion.swift",
"CS_BigInt/Subtraction.swift",
"CS_BigInt/Words and Bits.swift",
"ChaCha20.swift",
"Checksum.swift",
"Cipher.swift",
"Collection+Extension.swift",
"CompactMap.swift",
"Cryptor.swift",
"Cryptors.swift",
"Digest.swift",
"DigestType.swift",
"Foundation/AES+Foundation.swift",
"Foundation/Array+Foundation.swift",
"Foundation/Blowfish+Foundation.swift",
"Foundation/ChaCha20+Foundation.swift",
"Foundation/Data+Extension.swift",
"Foundation/HMAC+Foundation.swift",
"Foundation/Rabbit+Foundation.swift",
"Foundation/String+FoundationExtension.swift",
"Foundation/Utils+Foundation.swift",
"Foundation/XChaCha20+Foundation.swift",
"Generics.swift",
"HKDF.swift",
"HMAC.swift",
"ISO10126Padding.swift",
"ISO78164Padding.swift",
"Int+Extension.swift",
"MD5.swift",
"NoPadding.swift",
"Operators.swift",
"PEM/DER.swift",
"PKCS/PBKDF1.swift",
"PKCS/PBKDF2.swift",
"PKCS/PKCS1v15.swift",
"PKCS/PKCS5.swift",
"PKCS/PKCS7.swift",
"PKCS/PKCS7Padding.swift",
"Padding.swift",
"Poly1305.swift",
"RSA/RSA+Cipher.swift",
"RSA/RSA+Signature.swift",
"RSA/RSA.swift",
"Rabbit.swift",
"SHA1.swift",
"SHA2.swift",
"SHA3.swift",
"Scrypt.swift",
"SecureBytes.swift",
"Signature.swift",
"StreamDecryptor.swift",
"StreamEncryptor.swift",
"String+Extension.swift",
"UInt128.swift",
"UInt16+Extension.swift",
"UInt32+Extension.swift",
"UInt64+Extension.swift",
"UInt8+Extension.swift",
"Updatable.swift",
"Utils.swift",
"XChaCha20.swift",
"ZeroPadding.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
resolved source packages:
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "CryptoSwift",
"name" : "CryptoSwift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "4.0"
}
],
"products" : [
{
"name" : "CryptoSwift",
"targets" : [
"CryptoSwift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "TestsPerformance",
"module_type" : "SwiftTarget",
"name" : "TestsPerformance",
"path" : "Tests/TestsPerformance",
"sources" : [
"TestsPerformance.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"CryptoSwift"
],
"type" : "test"
},
{
"c99name" : "CryptoSwiftTests",
"module_type" : "SwiftTarget",
"name" : "CryptoSwiftTests",
"path" : "Tests/CryptoSwiftTests",
"sources" : [
"AESCCMTests.swift",
"AESOCBTests.swift",
"AESTests.swift",
"AESTestsPerf.swift",
"ASN1Tests.swift",
"Access.swift",
"BlowfishTests.swift",
"CBCMacTests.swift",
"CMACTests.swift",
"ChaCha20Poly1305Tests.swift",
"ChaCha20Tests.swift",
"ChaCha20TestsPerf.swift",
"DigestTests.swift",
"DigestTestsPerf.swift",
"Error+Extension.swift",
"ExtensionsTest.swift",
"ExtensionsTestPerf.swift",
"HKDFTests.swift",
"HMACTests.swift",
"PBKDF.swift",
"PBKDFPerf.swift",
"PaddingTests.swift",
"Poly1305Tests.swift",
"RSASecKeyTests.swift",
"RSATests.swift",
"RabbitTests.swift",
"RabbitTestsPerf.swift",
"SHATestsPerf.swift",
"ScryptTests.swift",
"ScryptTestsPerf.swift",
"SignatureVerificationTests.swift",
"XCTestManifests.swift",
"XChaCha20Poly1305Tests.swift",
"XChaCha20Tests.swift"
],
"target_dependencies" : [
"CryptoSwift"
],
"type" : "test"
},
{
"c99name" : "CryptoSwift",
"module_type" : "SwiftTarget",
"name" : "CryptoSwift",
"path" : "Sources/CryptoSwift",
"product_memberships" : [
"CryptoSwift"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AEAD/AEAD.swift",
"AEAD/AEADChaCha20Poly1305.swift",
"AEAD/AEADXChaCha20Poly1305.swift",
"AES.Cryptors.swift",
"AES.swift",
"ASN1/ASN1.swift",
"ASN1/ASN1Decoder.swift",
"ASN1/ASN1Encoder.swift",
"ASN1/ASN1Scanner.swift",
"Array+Extension.swift",
"Authenticator.swift",
"BatchedCollection.swift",
"Bit.swift",
"BlockCipher.swift",
"BlockDecryptor.swift",
"BlockEncryptor.swift",
"BlockMode/BlockMode.swift",
"BlockMode/BlockModeOptions.swift",
"BlockMode/CBC.swift",
"BlockMode/CCM.swift",
"BlockMode/CFB.swift",
"BlockMode/CTR.swift",
"BlockMode/CipherModeWorker.swift",
"BlockMode/ECB.swift",
"BlockMode/GCM.swift",
"BlockMode/OCB.swift",
"BlockMode/OFB.swift",
"BlockMode/PCBC.swift",
"Blowfish.swift",
"CBCMAC.swift",
"CMAC.swift",
"CS_BigInt/Addition.swift",
"CS_BigInt/BigInt.swift",
"CS_BigInt/BigUInt.swift",
"CS_BigInt/Bitwise Ops.swift",
"CS_BigInt/CS.swift",
"CS_BigInt/Codable.swift",
"CS_BigInt/Comparable.swift",
"CS_BigInt/Data Conversion.swift",
"CS_BigInt/Division.swift",
"CS_BigInt/Exponentiation.swift",
"CS_BigInt/Floating Point Conversion.swift",
"CS_BigInt/GCD.swift",
"CS_BigInt/Hashable.swift",
"CS_BigInt/Integer Conversion.swift",
"CS_BigInt/Multiplication.swift",
"CS_BigInt/Prime Test.swift",
"CS_BigInt/Random.swift",
"CS_BigInt/Shifts.swift",
"CS_BigInt/Square Root.swift",
"CS_BigInt/Strideable.swift",
"CS_BigInt/String Conversion.swift",
"CS_BigInt/Subtraction.swift",
"CS_BigInt/Words and Bits.swift",
"ChaCha20.swift",
"Checksum.swift",
"Cipher.swift",
"Collection+Extension.swift",
"CompactMap.swift",
"Cryptor.swift",
"Cryptors.swift",
"Digest.swift",
"DigestType.swift",
"Foundation/AES+Foundation.swift",
"Foundation/Array+Foundation.swift",
"Foundation/Blowfish+Foundation.swift",
"Foundation/ChaCha20+Foundation.swift",
"Foundation/Data+Extension.swift",
"Foundation/HMAC+Foundation.swift",
"Foundation/Rabbit+Foundation.swift",
"Foundation/String+FoundationExtension.swift",
"Foundation/Utils+Foundation.swift",
"Foundation/XChaCha20+Foundation.swift",
"Generics.swift",
"HKDF.swift",
"HMAC.swift",
"ISO10126Padding.swift",
"ISO78164Padding.swift",
"Int+Extension.swift",
"MD5.swift",
"NoPadding.swift",
"Operators.swift",
"PEM/DER.swift",
"PKCS/PBKDF1.swift",
"PKCS/PBKDF2.swift",
"PKCS/PKCS1v15.swift",
"PKCS/PKCS5.swift",
"PKCS/PKCS7.swift",
"PKCS/PKCS7Padding.swift",
"Padding.swift",
"Poly1305.swift",
"RSA/RSA+Cipher.swift",
"RSA/RSA+Signature.swift",
"RSA/RSA.swift",
"Rabbit.swift",
"SHA1.swift",
"SHA2.swift",
"SHA3.swift",
"Scrypt.swift",
"SecureBytes.swift",
"Signature.swift",
"StreamDecryptor.swift",
"StreamEncryptor.swift",
"String+Extension.swift",
"UInt128.swift",
"UInt16+Extension.swift",
"UInt32+Extension.swift",
"UInt64+Extension.swift",
"UInt8+Extension.swift",
"Updatable.swift",
"Utils.swift",
"XChaCha20.swift",
"ZeroPadding.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
{
"project" : {
"configurations" : [
"Debug",
"Release",
"Test"
],
"name" : "CryptoSwift",
"schemes" : [
"CryptoSwift",
"CryptoSwift-TestHostApp",
"Tests",
"TestsPerformance-iOS",
"TestsPerformance-Mac"
],
"targets" : [
"CryptoSwift",
"CryptoSwift-TestHostApp",
"CryptoSwiftTests",
"TestsPerformance-Mac",
"TestsPerformance-iOS"
]
}
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"CryptoSwift"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme CryptoSwift -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme CryptoSwift -destination generic/platform=iOS "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures"
Build settings from command line:
OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Resolve Package Graph
Resolve Package Graph
Resolved source packages:
CryptoSwift: /Users/admin/builder/spi-builder-workspace
SwiftDocCPlugin: https://github.com/apple/swift-docc-plugin @ 1.4.6
SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
Target 'CryptoSwift' in project 'CryptoSwift'
➜ Explicit dependency on target 'CryptoSwift' in project 'CryptoSwift'
➜ Explicit dependency on target 'CryptoSwift_CryptoSwift' in project 'CryptoSwift'
Target 'CryptoSwift' in project 'CryptoSwift'
➜ Explicit dependency on target 'CryptoSwift_CryptoSwift' in project 'CryptoSwift'
Target 'CryptoSwift_CryptoSwift' in project 'CryptoSwift' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: d094b1188ca0fd2af9ecf40d7e8f0029
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/d094b1188ca0fd2af9ecf40d7e8f0029.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks
MkDir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
/bin/mkdir -p /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/empty-CryptoSwift_CryptoSwift.plist (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/empty-CryptoSwift_CryptoSwift.plist
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/CryptoSwift_CryptoSwift.DependencyStaticMetadataFileList (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/CryptoSwift_CryptoSwift.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/CryptoSwift_CryptoSwift.DependencyMetadataFileList (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/CryptoSwift_CryptoSwift.DependencyMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources/resource_bundle_accessor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources/resource_bundle_accessor.swift
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_const_extract_protocols.json (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_const_extract_protocols.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftConstValuesFileList (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftConstValuesFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.LinkFileList (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-OutputFileMap.json (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-OutputFileMap.json
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.modulemap (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.modulemap
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.DependencyStaticMetadataFileList (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.DependencyMetadataFileList (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.DependencyMetadataFileList
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/empty-CryptoSwift_CryptoSwift.plist (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift_CryptoSwift.build/empty-CryptoSwift_CryptoSwift.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle/Info.plist
CpResource /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle/PrivacyInfo.xcprivacy /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PrivacyInfo.xcprivacy (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PrivacyInfo.xcprivacy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CryptoSwift.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.modulemap (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.modulemap /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle (in target 'CryptoSwift_CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift_CryptoSwift.bundle
SwiftDriver CryptoSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptoSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ BatchedCollection.swift,\ Bit.swift,\ BlockCipher.swift,\ BlockDecryptor.swift,\ BlockEncryptor.swift,\ BlockMode.swift,\ BlockModeOptions.swift,\ CBC.swift,\ CCM.swift,\ CFB.swift,\ CTR.swift,\ CipherModeWorker.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Bit.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockCipher.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockDecryptor.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockEncryptor.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CBC.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CFB.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CTR.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BatchedCollection.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Bit.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockCipher.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockDecryptor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockEncryptor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockMode.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:24:14: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let none = BlockModeOption(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:24:14: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
static let none = BlockModeOption(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:24:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let none = BlockModeOption(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:27:14: warning: static property 'initializationVectorRequired' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:27:14: note: add '@MainActor' to make static property 'initializationVectorRequired' part of global actor 'MainActor'
static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:27:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:30:14: warning: static property 'paddingRequired' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:30:14: note: add '@MainActor' to make static property 'paddingRequired' part of global actor 'MainActor'
static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:30:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:33:14: warning: static property 'useEncryptToDecrypt' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:33:14: note: add '@MainActor' to make static property 'useEncryptToDecrypt' part of global actor 'MainActor'
static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:33:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CBC.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CFB.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CTR.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CS.swift,\ Codable.swift,\ Comparable.swift,\ Data\ Conversion.swift,\ Division.swift,\ Exponentiation.swift,\ Floating\ Point\ Conversion.swift,\ GCD.swift,\ Hashable.swift,\ Integer\ Conversion.swift,\ Multiplication.swift,\ Prime\ Test.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/CS.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Comparable.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Data\ Conversion.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Division.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Exponentiation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Floating\ Point\ Conversion.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/GCD.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Hashable.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Integer\ Conversion.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime\ Test.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/CS.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Codable.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Comparable.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Data\ Conversion.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Division.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Exponentiation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Floating\ Point\ Conversion.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/GCD.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Hashable.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Integer\ Conversion.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: warning: static property 'directMultiplicationLimit' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var directMultiplicationLimit: Int = 1024
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: note: convert 'directMultiplicationLimit' to a 'let' constant to make 'Sendable' shared state immutable
public static var directMultiplicationLimit: Int = 1024
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: note: add '@MainActor' to make static property 'directMultiplicationLimit' part of global actor 'MainActor'
public static var directMultiplicationLimit: Int = 1024
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var directMultiplicationLimit: Int = 1024
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime\ Test.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime Test.swift:18:5: warning: let 'pseudoPrimes' is not concurrency-safe because non-'Sendable' type '[CS.BigUInt]' may have shared mutable state; this is an error in the Swift 6 language mode
let pseudoPrimes: [CS.BigUInt] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:18:17: note: consider making struct 'BigUInt' conform to the 'Sendable' protocol
public struct BigUInt: UnsignedInteger {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime Test.swift:18:5: note: add '@MainActor' to make let 'pseudoPrimes' part of global actor 'MainActor'
let pseudoPrimes: [CS.BigUInt] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime Test.swift:18:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let pseudoPrimes: [CS.BigUInt] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ NoPadding.swift,\ Operators.swift,\ DER.swift,\ PBKDF1.swift,\ PBKDF2.swift,\ PKCS1v15.swift,\ PKCS5.swift,\ PKCS7.swift,\ PKCS7Padding.swift,\ Padding.swift,\ Poly1305.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/NoPadding.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PEM/DER.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS1v15.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Padding.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Poly1305.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/NoPadding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Operators.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PEM/DER.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF1.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS1v15.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS5.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS7.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PKCS/PKCS7Padding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Padding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Poly1305.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ CryptoSwift (in target 'CryptoSwift' from project 'CryptoSwift')
EmitSwiftModule normal arm64 (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: warning: static property 'ivRange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var ivRange = Range<Int>(12...12)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: note: convert 'ivRange' to a 'let' constant to make 'Sendable' shared state immutable
public static var ivRange = Range<Int>(12...12)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: note: add '@MainActor' to make static property 'ivRange' part of global actor 'MainActor'
public static var ivRange = Range<Int>(12...12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var ivRange = Range<Int>(12...12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: warning: static property 'ivRange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var ivRange = Range<Int>(12...12)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: note: convert 'ivRange' to a 'let' constant to make 'Sendable' shared state immutable
public static var ivRange = Range<Int>(12...12)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: note: add '@MainActor' to make static property 'ivRange' part of global actor 'MainActor'
public static var ivRange = Range<Int>(12...12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var ivRange = Range<Int>(12...12)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:24:14: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let none = BlockModeOption(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:24:14: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
static let none = BlockModeOption(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:24:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let none = BlockModeOption(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:27:14: warning: static property 'initializationVectorRequired' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:27:14: note: add '@MainActor' to make static property 'initializationVectorRequired' part of global actor 'MainActor'
static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:27:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:30:14: warning: static property 'paddingRequired' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:30:14: note: add '@MainActor' to make static property 'paddingRequired' part of global actor 'MainActor'
static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:30:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:33:14: warning: static property 'useEncryptToDecrypt' is not concurrency-safe because non-'Sendable' type 'BlockModeOption' may have shared mutable state; this is an error in the Swift 6 language mode
static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:16:15: note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
public struct BlockModeOption: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:33:14: note: add '@MainActor' to make static property 'useEncryptToDecrypt' part of global actor 'MainActor'
static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift:33:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: warning: static property 'directMultiplicationLimit' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var directMultiplicationLimit: Int = 1024
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: note: convert 'directMultiplicationLimit' to a 'let' constant to make 'Sendable' shared state immutable
public static var directMultiplicationLimit: Int = 1024
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: note: add '@MainActor' to make static property 'directMultiplicationLimit' part of global actor 'MainActor'
public static var directMultiplicationLimit: Int = 1024
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Multiplication.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var directMultiplicationLimit: Int = 1024
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime Test.swift:18:5: warning: let 'pseudoPrimes' is not concurrency-safe because non-'Sendable' type '[CS.BigUInt]' may have shared mutable state; this is an error in the Swift 6 language mode
let pseudoPrimes: [CS.BigUInt] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:18:17: note: consider making struct 'BigUInt' conform to the 'Sendable' protocol
public struct BigUInt: UnsignedInteger {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime Test.swift:18:5: note: add '@MainActor' to make let 'pseudoPrimes' part of global actor 'MainActor'
let pseudoPrimes: [CS.BigUInt] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Prime Test.swift:18:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let pseudoPrimes: [CS.BigUInt] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Rabbit+Foundation.swift,\ String+FoundationExtension.swift,\ Utils+Foundation.swift,\ XChaCha20+Foundation.swift,\ Generics.swift,\ HKDF.swift,\ HMAC.swift,\ ISO10126Padding.swift,\ ISO78164Padding.swift,\ Int+Extension.swift,\ MD5.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/XChaCha20+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Generics.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/HMAC.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ISO10126Padding.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ISO78164Padding.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Int+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/MD5.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Utils+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/XChaCha20+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Generics.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/HMAC.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ISO10126Padding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ISO78164Padding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Int+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/MD5.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ StreamEncryptor.swift,\ String+Extension.swift,\ UInt128.swift,\ UInt16+Extension.swift,\ UInt32+Extension.swift,\ UInt64+Extension.swift,\ UInt8+Extension.swift,\ Updatable.swift,\ Utils.swift,\ XChaCha20.swift,\ ZeroPadding.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/StreamEncryptor.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/String+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt128.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt16+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt32+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt64+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt8+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Updatable.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/XChaCha20.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ZeroPadding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/StreamEncryptor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/String+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt128.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt16+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt32+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt64+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/UInt8+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Updatable.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Utils.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/XChaCha20.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ZeroPadding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CompactMap.swift,\ Cryptor.swift,\ Cryptors.swift,\ Digest.swift,\ DigestType.swift,\ AES+Foundation.swift,\ Array+Foundation.swift,\ Blowfish+Foundation.swift,\ ChaCha20+Foundation.swift,\ Data+Extension.swift,\ HMAC+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CompactMap.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Cryptor.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Cryptors.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Digest.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/DigestType.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CompactMap.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Cryptor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Cryptors.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Digest.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/DigestType.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/AES+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Array+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/Data+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ RSA+Cipher.swift,\ RSA+Signature.swift,\ RSA.swift,\ Rabbit.swift,\ SHA1.swift,\ SHA2.swift,\ SHA3.swift,\ Scrypt.swift,\ SecureBytes.swift,\ Signature.swift,\ StreamDecryptor.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/RSA/RSA+Cipher.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/RSA/RSA+Signature.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/RSA/RSA.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Rabbit.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SHA1.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SHA2.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SHA3.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Scrypt.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Signature.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/StreamDecryptor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/RSA/RSA+Cipher.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/RSA/RSA+Signature.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/RSA/RSA.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Rabbit.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SHA1.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SHA2.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SHA3.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Scrypt.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Signature.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/StreamDecryptor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ AEAD.swift,\ AEADChaCha20Poly1305.swift,\ AEADXChaCha20Poly1305.swift,\ AES.Cryptors.swift,\ AES.swift,\ ASN1.swift,\ ASN1Decoder.swift,\ ASN1Encoder.swift,\ ASN1Scanner.swift,\ Array+Extension.swift,\ Authenticator.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEAD.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AES.Cryptors.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AES.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1Decoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1Encoder.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1Scanner.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Array+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Authenticator.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources/resource_bundle_accessor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEAD.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: warning: static property 'ivRange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var ivRange = Range<Int>(12...12)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: note: convert 'ivRange' to a 'let' constant to make 'Sendable' shared state immutable
public static var ivRange = Range<Int>(12...12)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: note: add '@MainActor' to make static property 'ivRange' part of global actor 'MainActor'
public static var ivRange = Range<Int>(12...12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift:22:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var ivRange = Range<Int>(12...12)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: warning: static property 'ivRange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var ivRange = Range<Int>(12...12)
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: note: convert 'ivRange' to a 'let' constant to make 'Sendable' shared state immutable
public static var ivRange = Range<Int>(12...12)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: note: add '@MainActor' to make static property 'ivRange' part of global actor 'MainActor'
public static var ivRange = Range<Int>(12...12)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AEAD/AEADXChaCha20Poly1305.swift:28:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var ivRange = Range<Int>(12...12)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AES.Cryptors.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/AES.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1Decoder.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1Encoder.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ASN1/ASN1Scanner.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Array+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Authenticator.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ECB.swift,\ GCM.swift,\ OCB.swift,\ OFB.swift,\ PCBC.swift,\ Blowfish.swift,\ CBCMAC.swift,\ CMAC.swift,\ Addition.swift,\ BigInt.swift,\ BigUInt.swift,\ Bitwise\ Ops.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/ECB.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/GCM.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/OCB.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/OFB.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Blowfish.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CBCMAC.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CMAC.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Addition.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigInt.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Bitwise\ Ops.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/ECB.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/GCM.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/OCB.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/OFB.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/BlockMode/PCBC.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Blowfish.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CBCMAC.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CMAC.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Addition.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigInt.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Bitwise\ Ops.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Random.swift,\ Shifts.swift,\ Square\ Root.swift,\ Strideable.swift,\ String\ Conversion.swift,\ Subtraction.swift,\ Words\ and\ Bits.swift,\ ChaCha20.swift,\ Checksum.swift,\ Cipher.swift,\ Collection+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Random.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Shifts.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Square\ Root.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Strideable.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/String\ Conversion.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Subtraction.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Words\ and\ Bits.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ChaCha20.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Checksum.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Cipher.swift /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Collection+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Random.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:32:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var kind: Kind // Internal for testing only
^
/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/BigUInt.swift:33:27: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Shifts.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Square\ Root.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Strideable.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/String\ Conversion.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Subtraction.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/CS_BigInt/Words\ and\ Bits.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/ChaCha20.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Checksum.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Cipher.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/Collection+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling BatchedCollection.swift, Bit.swift, BlockCipher.swift, BlockDecryptor.swift, BlockEncryptor.swift, BlockMode.swift, BlockModeOptions.swift, CBC.swift, CCM.swift, CFB.swift, CTR.swift, CipherModeWorker.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling CompactMap.swift, Cryptor.swift, Cryptors.swift, Digest.swift, DigestType.swift, AES+Foundation.swift, Array+Foundation.swift, Blowfish+Foundation.swift, ChaCha20+Foundation.swift, Data+Extension.swift, HMAC+Foundation.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling NoPadding.swift, Operators.swift, DER.swift, PBKDF1.swift, PBKDF2.swift, PKCS1v15.swift, PKCS5.swift, PKCS7.swift, PKCS7Padding.swift, Padding.swift, Poly1305.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling StreamEncryptor.swift, String+Extension.swift, UInt128.swift, UInt16+Extension.swift, UInt32+Extension.swift, UInt64+Extension.swift, UInt8+Extension.swift, Updatable.swift, Utils.swift, XChaCha20.swift, ZeroPadding.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling Rabbit+Foundation.swift, String+FoundationExtension.swift, Utils+Foundation.swift, XChaCha20+Foundation.swift, Generics.swift, HKDF.swift, HMAC.swift, ISO10126Padding.swift, ISO78164Padding.swift, Int+Extension.swift, MD5.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling CS.swift, Codable.swift, Comparable.swift, Data Conversion.swift, Division.swift, Exponentiation.swift, Floating Point Conversion.swift, GCD.swift, Hashable.swift, Integer Conversion.swift, Multiplication.swift, Prime Test.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Emitting module for CryptoSwift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriver\ Compilation\ Requirements CryptoSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptoSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CryptoSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CryptoSwift-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.abi.json (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftdoc (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftsourceinfo (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, AEAD.swift, AEADChaCha20Poly1305.swift, AEADXChaCha20Poly1305.swift, AES.Cryptors.swift, AES.swift, ASN1.swift, ASN1Decoder.swift, ASN1Encoder.swift, ASN1Scanner.swift, Array+Extension.swift, Authenticator.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling ECB.swift, GCM.swift, OCB.swift, OFB.swift, PCBC.swift, Blowfish.swift, CBCMAC.swift, CMAC.swift, Addition.swift, BigInt.swift, BigUInt.swift, Bitwise Ops.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling Random.swift, Shifts.swift, Square Root.swift, Strideable.swift, String Conversion.swift, Subtraction.swift, Words and Bits.swift, ChaCha20.swift, Checksum.swift, Cipher.swift, Collection+Extension.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriverJobDiscovery normal arm64 Compiling RSA+Cipher.swift, RSA+Signature.swift, RSA.swift, Rabbit.swift, SHA1.swift, SHA2.swift, SHA3.swift, Scrypt.swift, SecureBytes.swift, Signature.swift, StreamDecryptor.swift (in target 'CryptoSwift' from project 'CryptoSwift')
SwiftDriver\ Compilation CryptoSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CryptoSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.o normal (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.o
ExtractAppIntentsMetadata (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CryptoSwift --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.CryptoSwift --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/CryptoSwift.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CryptoSwift.build/Debug-iphoneos/CryptoSwift.build/Objects-normal/arm64/CryptoSwift.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-25 00:34:00.680 appintentsmetadataprocessor[1029:6127] Starting appintentsmetadataprocessor export
2026-04-25 00:34:00.731 appintentsmetadataprocessor[1029:6127] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.o (in target 'CryptoSwift' from project 'CryptoSwift')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CryptoSwift.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "CryptoSwift",
"name" : "CryptoSwift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "4.0"
}
],
"products" : [
{
"name" : "CryptoSwift",
"targets" : [
"CryptoSwift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "TestsPerformance",
"module_type" : "SwiftTarget",
"name" : "TestsPerformance",
"path" : "Tests/TestsPerformance",
"sources" : [
"TestsPerformance.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"CryptoSwift"
],
"type" : "test"
},
{
"c99name" : "CryptoSwiftTests",
"module_type" : "SwiftTarget",
"name" : "CryptoSwiftTests",
"path" : "Tests/CryptoSwiftTests",
"sources" : [
"AESCCMTests.swift",
"AESOCBTests.swift",
"AESTests.swift",
"AESTestsPerf.swift",
"ASN1Tests.swift",
"Access.swift",
"BlowfishTests.swift",
"CBCMacTests.swift",
"CMACTests.swift",
"ChaCha20Poly1305Tests.swift",
"ChaCha20Tests.swift",
"ChaCha20TestsPerf.swift",
"DigestTests.swift",
"DigestTestsPerf.swift",
"Error+Extension.swift",
"ExtensionsTest.swift",
"ExtensionsTestPerf.swift",
"HKDFTests.swift",
"HMACTests.swift",
"PBKDF.swift",
"PBKDFPerf.swift",
"PaddingTests.swift",
"Poly1305Tests.swift",
"RSASecKeyTests.swift",
"RSATests.swift",
"RabbitTests.swift",
"RabbitTestsPerf.swift",
"SHATestsPerf.swift",
"ScryptTests.swift",
"ScryptTestsPerf.swift",
"SignatureVerificationTests.swift",
"XCTestManifests.swift",
"XChaCha20Poly1305Tests.swift",
"XChaCha20Tests.swift"
],
"target_dependencies" : [
"CryptoSwift"
],
"type" : "test"
},
{
"c99name" : "CryptoSwift",
"module_type" : "SwiftTarget",
"name" : "CryptoSwift",
"path" : "Sources/CryptoSwift",
"product_memberships" : [
"CryptoSwift"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/CryptoSwift/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AEAD/AEAD.swift",
"AEAD/AEADChaCha20Poly1305.swift",
"AEAD/AEADXChaCha20Poly1305.swift",
"AES.Cryptors.swift",
"AES.swift",
"ASN1/ASN1.swift",
"ASN1/ASN1Decoder.swift",
"ASN1/ASN1Encoder.swift",
"ASN1/ASN1Scanner.swift",
"Array+Extension.swift",
"Authenticator.swift",
"BatchedCollection.swift",
"Bit.swift",
"BlockCipher.swift",
"BlockDecryptor.swift",
"BlockEncryptor.swift",
"BlockMode/BlockMode.swift",
"BlockMode/BlockModeOptions.swift",
"BlockMode/CBC.swift",
"BlockMode/CCM.swift",
"BlockMode/CFB.swift",
"BlockMode/CTR.swift",
"BlockMode/CipherModeWorker.swift",
"BlockMode/ECB.swift",
"BlockMode/GCM.swift",
"BlockMode/OCB.swift",
"BlockMode/OFB.swift",
"BlockMode/PCBC.swift",
"Blowfish.swift",
"CBCMAC.swift",
"CMAC.swift",
"CS_BigInt/Addition.swift",
"CS_BigInt/BigInt.swift",
"CS_BigInt/BigUInt.swift",
"CS_BigInt/Bitwise Ops.swift",
"CS_BigInt/CS.swift",
"CS_BigInt/Codable.swift",
"CS_BigInt/Comparable.swift",
"CS_BigInt/Data Conversion.swift",
"CS_BigInt/Division.swift",
"CS_BigInt/Exponentiation.swift",
"CS_BigInt/Floating Point Conversion.swift",
"CS_BigInt/GCD.swift",
"CS_BigInt/Hashable.swift",
"CS_BigInt/Integer Conversion.swift",
"CS_BigInt/Multiplication.swift",
"CS_BigInt/Prime Test.swift",
"CS_BigInt/Random.swift",
"CS_BigInt/Shifts.swift",
"CS_BigInt/Square Root.swift",
"CS_BigInt/Strideable.swift",
"CS_BigInt/String Conversion.swift",
"CS_BigInt/Subtraction.swift",
"CS_BigInt/Words and Bits.swift",
"ChaCha20.swift",
"Checksum.swift",
"Cipher.swift",
"Collection+Extension.swift",
"CompactMap.swift",
"Cryptor.swift",
"Cryptors.swift",
"Digest.swift",
"DigestType.swift",
"Foundation/AES+Foundation.swift",
"Foundation/Array+Foundation.swift",
"Foundation/Blowfish+Foundation.swift",
"Foundation/ChaCha20+Foundation.swift",
"Foundation/Data+Extension.swift",
"Foundation/HMAC+Foundation.swift",
"Foundation/Rabbit+Foundation.swift",
"Foundation/String+FoundationExtension.swift",
"Foundation/Utils+Foundation.swift",
"Foundation/XChaCha20+Foundation.swift",
"Generics.swift",
"HKDF.swift",
"HMAC.swift",
"ISO10126Padding.swift",
"ISO78164Padding.swift",
"Int+Extension.swift",
"MD5.swift",
"NoPadding.swift",
"Operators.swift",
"PEM/DER.swift",
"PKCS/PBKDF1.swift",
"PKCS/PBKDF2.swift",
"PKCS/PKCS1v15.swift",
"PKCS/PKCS5.swift",
"PKCS/PKCS7.swift",
"PKCS/PKCS7Padding.swift",
"Padding.swift",
"Poly1305.swift",
"RSA/RSA+Cipher.swift",
"RSA/RSA+Signature.swift",
"RSA/RSA.swift",
"Rabbit.swift",
"SHA1.swift",
"SHA2.swift",
"SHA3.swift",
"Scrypt.swift",
"SecureBytes.swift",
"Signature.swift",
"StreamDecryptor.swift",
"StreamEncryptor.swift",
"String+Extension.swift",
"UInt128.swift",
"UInt16+Extension.swift",
"UInt32+Extension.swift",
"UInt64+Extension.swift",
"UInt8+Extension.swift",
"Updatable.swift",
"Utils.swift",
"XChaCha20.swift",
"ZeroPadding.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.