The Swift Package Index logo.Swift Package Index

Build Information

Failed to build CryptoSwift, reference main (884e18), with Swift 6.1 for Android on 25 Apr 2026 07:40:34 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
28 |
29 |   @usableFromInline
30 |   static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'paddingRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
31 |
32 |   @usableFromInline
33 |   static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'useEncryptToDecrypt' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | }
35 |
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[117/120] Compiling CryptoSwift OFB.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
22 |
23 |   @usableFromInline
24 |   static let none = BlockModeOption(rawValue: 1 << 0)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
25 |
26 |   @usableFromInline
27 |   static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'initializationVectorRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
28 |
29 |   @usableFromInline
30 |   static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'paddingRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
31 |
32 |   @usableFromInline
33 |   static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'useEncryptToDecrypt' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | }
35 |
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[118/120] Compiling CryptoSwift PCBC.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
22 |
23 |   @usableFromInline
24 |   static let none = BlockModeOption(rawValue: 1 << 0)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
25 |
26 |   @usableFromInline
27 |   static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'initializationVectorRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
28 |
29 |   @usableFromInline
30 |   static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'paddingRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
31 |
32 |   @usableFromInline
33 |   static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'useEncryptToDecrypt' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | }
35 |
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[119/120] Compiling CryptoSwift Blowfish.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
22 |
23 |   @usableFromInline
24 |   static let none = BlockModeOption(rawValue: 1 << 0)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
25 |
26 |   @usableFromInline
27 |   static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'initializationVectorRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
28 |
29 |   @usableFromInline
30 |   static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'paddingRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
31 |
32 |   @usableFromInline
33 |   static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'useEncryptToDecrypt' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | }
35 |
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[120/120] Compiling CryptoSwift CBCMAC.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
22 |
23 |   @usableFromInline
24 |   static let none = BlockModeOption(rawValue: 1 << 0)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
25 |
26 |   @usableFromInline
27 |   static let initializationVectorRequired = BlockModeOption(rawValue: 1 << 1)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'initializationVectorRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
28 |
29 |   @usableFromInline
30 |   static let paddingRequired = BlockModeOption(rawValue: 1 << 2)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'paddingRequired' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |   @usableFromInline
/host/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
14 | //
15 |
16 | public struct BlockModeOption: OptionSet {
   |               `- note: consider making struct 'BlockModeOption' conform to the 'Sendable' protocol
17 |   public let rawValue: Int
18 |
   :
31 |
32 |   @usableFromInline
33 |   static let useEncryptToDecrypt = BlockModeOption(rawValue: 1 << 3)
   |              |- 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
   |              |- note: add '@MainActor' to make static property 'useEncryptToDecrypt' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | }
35 |
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/104] Compiling CryptoSwift CompactMap.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[5/104] Compiling CryptoSwift Cryptor.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[6/104] Compiling CryptoSwift Cryptors.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[7/104] Compiling CryptoSwift Digest.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[8/104] Compiling CryptoSwift DigestType.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[9/104] Compiling CryptoSwift AES+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[10/104] Compiling CryptoSwift Array+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[11/104] Compiling CryptoSwift Blowfish+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[12/104] Compiling CryptoSwift ChaCha20+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[13/104] Compiling CryptoSwift Data+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[14/104] Compiling CryptoSwift HMAC+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[15/104] Compiling CryptoSwift Rabbit+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[16/104] Compiling CryptoSwift String+FoundationExtension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[17/104] Compiling CryptoSwift Utils+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[18/118] Compiling CryptoSwift XChaCha20+Foundation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[19/118] Compiling CryptoSwift Generics.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[20/118] Compiling CryptoSwift HKDF.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[21/118] Compiling CryptoSwift HMAC.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[22/118] Compiling CryptoSwift ISO10126Padding.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[23/118] Compiling CryptoSwift ISO78164Padding.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[24/118] Compiling CryptoSwift Int+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[25/118] Compiling CryptoSwift MD5.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[26/118] Compiling CryptoSwift NoPadding.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[27/118] Compiling CryptoSwift Operators.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[28/118] Compiling CryptoSwift DER.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[29/118] Compiling CryptoSwift PBKDF1.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[30/118] Compiling CryptoSwift PBKDF2.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[31/118] Compiling CryptoSwift PKCS1v15.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[32/118] Compiling CryptoSwift BlockEncryptor.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[33/118] Compiling CryptoSwift BlockMode.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[34/118] Compiling CryptoSwift BlockModeOptions.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[35/118] Compiling CryptoSwift CBC.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[36/118] Compiling CryptoSwift CCM.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[37/118] Compiling CryptoSwift CFB.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[38/118] Compiling CryptoSwift CTR.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[39/118] Compiling CryptoSwift CipherModeWorker.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[40/118] Compiling CryptoSwift ECB.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[41/118] Compiling CryptoSwift GCM.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[42/118] Compiling CryptoSwift OCB.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[43/118] Compiling CryptoSwift OFB.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[44/118] Compiling CryptoSwift PCBC.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[45/118] Compiling CryptoSwift Blowfish.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[46/118] Compiling CryptoSwift CBCMAC.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[47/118] Compiling CryptoSwift Signature.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[48/118] Compiling CryptoSwift StreamDecryptor.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[49/118] Compiling CryptoSwift StreamEncryptor.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[50/118] Compiling CryptoSwift String+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[51/118] Compiling CryptoSwift UInt128.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[52/118] Compiling CryptoSwift UInt16+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[53/118] Compiling CryptoSwift UInt32+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[54/118] Compiling CryptoSwift UInt64+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[55/118] Compiling CryptoSwift UInt8+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[56/118] Compiling CryptoSwift Updatable.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[57/118] Compiling CryptoSwift Utils.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[58/118] Compiling CryptoSwift XChaCha20.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[59/118] Compiling CryptoSwift ZeroPadding.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[60/118] Compiling CryptoSwift resource_bundle_accessor.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[61/118] Compiling CryptoSwift Integer Conversion.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[62/118] Compiling CryptoSwift Multiplication.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[63/118] Compiling CryptoSwift Prime Test.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[64/118] Compiling CryptoSwift Random.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[65/118] Compiling CryptoSwift Shifts.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[66/118] Compiling CryptoSwift Square Root.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[67/118] Compiling CryptoSwift Strideable.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[68/118] Compiling CryptoSwift String Conversion.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[69/118] Compiling CryptoSwift Subtraction.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[70/118] Compiling CryptoSwift Words and Bits.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[71/118] Compiling CryptoSwift ChaCha20.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[72/118] Compiling CryptoSwift Checksum.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[73/118] Compiling CryptoSwift Cipher.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[74/118] Compiling CryptoSwift Collection+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[75/118] Emitting module CryptoSwift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[76/118] Compiling CryptoSwift CMAC.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[77/118] Compiling CryptoSwift Addition.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[78/118] Compiling CryptoSwift BigInt.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[79/118] Compiling CryptoSwift BigUInt.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[80/118] Compiling CryptoSwift Bitwise Ops.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[81/118] Compiling CryptoSwift CS.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[82/118] Compiling CryptoSwift Codable.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[83/118] Compiling CryptoSwift Comparable.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[84/118] Compiling CryptoSwift Data Conversion.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[85/118] Compiling CryptoSwift Division.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[86/118] Compiling CryptoSwift Exponentiation.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[87/118] Compiling CryptoSwift Floating Point Conversion.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[88/118] Compiling CryptoSwift GCD.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[89/118] Compiling CryptoSwift Hashable.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[90/118] Compiling CryptoSwift PKCS5.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[91/118] Compiling CryptoSwift PKCS7.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[92/118] Compiling CryptoSwift PKCS7Padding.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[93/118] Compiling CryptoSwift Padding.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[94/118] Compiling CryptoSwift Poly1305.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[95/118] Compiling CryptoSwift RSA+Cipher.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[96/118] Compiling CryptoSwift RSA+Signature.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[97/118] Compiling CryptoSwift RSA.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[98/118] Compiling CryptoSwift Rabbit.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[99/118] Compiling CryptoSwift SHA1.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[100/118] Compiling CryptoSwift SHA2.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[101/118] Compiling CryptoSwift SHA3.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[102/118] Compiling CryptoSwift Scrypt.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[103/118] Compiling CryptoSwift SecureBytes.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[104/118] Compiling CryptoSwift AEAD.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[105/118] Compiling CryptoSwift AEADChaCha20Poly1305.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[106/118] Compiling CryptoSwift AEADXChaCha20Poly1305.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[107/118] Compiling CryptoSwift AES.Cryptors.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[108/118] Compiling CryptoSwift AES.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[109/118] Compiling CryptoSwift ASN1.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[110/118] Compiling CryptoSwift ASN1Decoder.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[111/118] Compiling CryptoSwift ASN1Encoder.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[112/118] Compiling CryptoSwift ASN1Scanner.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[113/118] Compiling CryptoSwift Array+Extension.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[114/118] Compiling CryptoSwift Authenticator.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[115/118] Compiling CryptoSwift BatchedCollection.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[116/118] Compiling CryptoSwift Bit.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[117/118] Compiling CryptoSwift BlockCipher.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
[118/118] Compiling CryptoSwift BlockDecryptor.swift
/host/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
 30 |       }
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
 34 |
/host/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
 31 |
 32 |       internal fileprivate (set) var kind: Kind // Internal for testing only
 33 |       internal fileprivate (set) var storage: [Word] // Internal for testing only; stored separately to prevent COW copies
    |                           `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |       /// Initializes a new BigUInt with value 0.
BUILD FAILURE 6.1 android