Build Information
Successful build of SwiftECC, reference master (85c529
), with Swift 6.0 for macOS (SPM) on 11 Apr 2025 19:01:15 UTC.
Swift 6 data race errors: 245
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP256t1"
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP256t1"
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.8")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.8")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
[87/92] Compiling SwiftECC BP224.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP160r1"
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP160r1: DomainP {
12 |
13 | static let name = "brainpoolP160r1"
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP160r1"
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.1")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.1")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.1")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP160t1"
32 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP160t1"
32 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.2")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.2")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP192r1"
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP192r1: DomainP {
12 |
13 | static let name = "brainpoolP192r1"
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP192r1"
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.3")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.3")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.3")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP192t1"
32 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP192t1"
32 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.4")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.4")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP224r1"
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP224r1: DomainP {
12 |
13 | static let name = "brainpoolP224r1"
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP224r1"
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.5")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.5")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.5")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP224t1"
32 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP224t1"
32 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.6")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.6")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP256r1"
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP256r1: DomainP {
12 |
13 | static let name = "brainpoolP256r1"
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP256r1"
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP256t1"
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP256t1"
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.8")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.8")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
[88/92] Compiling SwiftECC BP256.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP160r1"
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP160r1: DomainP {
12 |
13 | static let name = "brainpoolP160r1"
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP160r1"
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("340e7be2a280eb74e2be61bada745d97e8f7c300", radix: 16)!
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("1e589a8595423412134faa2dbdec95c8d8675e58", radix: 16)!
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc3", radix: 16)!
18 | static let gy = BInt("1667cb477a1a8ec338f94741669c976316da6321", radix: 16)!
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.1")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.1")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.1")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP160t1"
32 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP160t1"
32 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620f", radix: 16)!
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("e95e4a5f737059dc60dfc7ad95b3d8139515620c", radix: 16)!
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380", radix: 16)!
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("b199b13b9b34efc1397e64baeb05acc265ff2378", radix: 16)!
36 | static let gy = BInt("add6718b7c7c1961f0991b842443772152c9e0ad", radix: 16)!
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.2")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP160.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("e95e4a5f737059dc60df5991d45029409e60fc09", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.2")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP192r1"
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP192r1: DomainP {
12 |
13 | static let name = "brainpoolP192r1"
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP192r1"
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef", radix: 16)!
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9", radix: 16)!
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd6", radix: 16)!
18 | static let gy = BInt("14b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f", radix: 16)!
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.3")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.3")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.3")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP192t1"
32 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP192t1"
32 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86297", radix: 16)!
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("c302f41d932a36cda7a3463093d18db78fce476de1a86294", radix: 16)!
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79", radix: 16)!
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("3ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129", radix: 16)!
36 | static let gy = BInt("097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9", radix: 16)!
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.4")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP192.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.4")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP224r1"
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP224r1: DomainP {
12 |
13 | static let name = "brainpoolP224r1"
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP224r1"
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43", radix: 16)!
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b", radix: 16)!
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("0d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d", radix: 16)!
18 | static let gy = BInt("58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd", radix: 16)!
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.5")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.5")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.5")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP224t1"
32 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP224t1"
32 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff", radix: 16)!
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc", radix: 16)!
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d", radix: 16)!
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("6ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d580", radix: 16)!
36 | static let gy = BInt("0374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c", radix: 16)!
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.6")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP224.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.6")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:14:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | static let name = "brainpoolP256r1"
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
| `- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
7 |
8 | import ASN1
9 | import BigInt
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'BigInt'
10 |
11 | class BP256r1: DomainP {
12 |
13 | static let name = "brainpoolP256r1"
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:15:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
13 | static let name = "brainpoolP256r1"
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:16:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
14 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:17:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
15 | static let a = BInt("7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9", radix: 16)!
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:18:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
16 | static let b = BInt("26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6", radix: 16)!
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:19:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
17 | static let gx = BInt("8bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262", radix: 16)!
18 | static let gy = BInt("547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997", radix: 16)!
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:21:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
| `- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
6 | //
7 |
8 | import ASN1
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ASN1'
9 | import BigInt
10 |
:
19 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
20 | static let cofactor = 1
21 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.7")!
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:32:16: warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | static let name = "brainpoolP256t1"
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
| |- warning: static property 'p' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'p' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:33:16: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
31 | static let name = "brainpoolP256t1"
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
| |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:34:16: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
32 | static let p = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377", radix: 16)!
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
| |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:35:16: warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
33 | static let a = BInt("a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374", radix: 16)!
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
| |- warning: static property 'gx' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gx' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:36:16: warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
34 | static let b = BInt("662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04", radix: 16)!
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
| |- warning: static property 'gy' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'gy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
38 | static let cofactor = 1
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:37:16: warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
35 | static let gx = BInt("a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f4", radix: 16)!
36 | static let gy = BInt("2d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be", radix: 16)!
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
| |- warning: static property 'order' is not concurrency-safe because non-'Sendable' type 'BInt' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'order' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.8")!
/Users/admin/builder/spi-builder-workspace/.build/checkouts/BigInt/Sources/BigInt/BigInt.swift:31:15: note: struct 'BInt' does not conform to the 'Sendable' protocol
29 | infix operator ** : ExponentiationPrecedence
30 |
31 | public struct BInt: CustomStringConvertible, Comparable, Equatable, Hashable {
| `- note: struct 'BInt' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Constants
/Users/admin/builder/spi-builder-workspace/Sources/SwiftECC/DomainP/BP256.swift:39:16: warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
37 | static let order = BInt("a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7", radix: 16)!
38 | static let cofactor = 1
39 | static let oid = ASN1ObjectIdentifier("1.3.36.3.3.2.8.1.1.8")!
| |- warning: static property 'oid' is not concurrency-safe because non-'Sendable' type 'ASN1ObjectIdentifier' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'oid' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | init() {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ASN1/Sources/ASN1/ASN1ObjectIdentifier.swift:12:14: note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
10 |
11 | /// The `ASN1` ObjectIdentifier class
12 | public class ASN1ObjectIdentifier: ASN1SimpleType, CustomStringConvertible, Hashable {
| `- note: class 'ASN1ObjectIdentifier' does not conform to the 'Sendable' protocol
13 |
14 | // MARK: - Initializers
[89/92] Compiling SwiftECC AES.swift
[90/92] Compiling SwiftECC CBCCipher.swift
[91/92] Compiling SwiftECC CFBCipher.swift
[92/92] Compiling SwiftECC CTRCipher.swift
Build complete! (30.15s)
Build complete.
{
"dependencies" : [
{
"identity" : "asn1",
"requirement" : {
"range" : [
{
"lower_bound" : "2.7.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/leif-ibsen/ASN1"
},
{
"identity" : "bigint",
"requirement" : {
"range" : [
{
"lower_bound" : "1.21.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/leif-ibsen/BigInt"
},
{
"identity" : "digest",
"requirement" : {
"range" : [
{
"lower_bound" : "1.13.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/leif-ibsen/Digest"
}
],
"manifest_display_name" : "SwiftECC",
"name" : "SwiftECC",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "SwiftECC",
"targets" : [
"SwiftECC"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftECCTests",
"module_type" : "SwiftTarget",
"name" : "SwiftECCTests",
"path" : "Tests/SwiftECCTests",
"sources" : [
"BlueTest.swift",
"BrainpoolTest.swift",
"CipherTest.swift",
"CryptoKitTest.swift",
"DomainTest.swift",
"ECDHTest.swift",
"EciesAESGCMTest.swift",
"EciesChaChaTest.swift",
"EciesTest.swift",
"ExceptionTest.swift",
"FuzzTest.swift",
"GCMTest.swift",
"KeysEncryptedTest.swift",
"KeysTest.swift",
"PEMTest.swift",
"PointTest.swift",
"SignatureDetTest.swift",
"SignatureTest.swift",
"Test29.swift",
"Test4.swift",
"VerifyTest.swift",
"ZTest.swift"
],
"target_dependencies" : [
"SwiftECC"
],
"type" : "test"
},
{
"c99name" : "SwiftECC",
"module_type" : "SwiftTarget",
"name" : "SwiftECC",
"path" : "Sources/SwiftECC",
"product_dependencies" : [
"BigInt",
"ASN1",
"Digest"
],
"product_memberships" : [
"SwiftECC"
],
"sources" : [
"Cipher/AES.swift",
"Cipher/CBCCipher.swift",
"Cipher/CFBCipher.swift",
"Cipher/CTRCipher.swift",
"Cipher/Cipher.swift",
"Cipher/DeterministicK.swift",
"Cipher/ECBCipher.swift",
"Cipher/GCMCipher.swift",
"Cipher/OFBCipher.swift",
"Cipher/PBE.swift",
"Curve.swift",
"Domain.swift",
"Domain2/BitVector.swift",
"Domain2/Domain2.swift",
"Domain2/EC163.swift",
"Domain2/EC233.swift",
"Domain2/EC283.swift",
"Domain2/EC409.swift",
"Domain2/EC571.swift",
"Domain2/Point2.swift",
"DomainP/BP160.swift",
"DomainP/BP192.swift",
"DomainP/BP224.swift",
"DomainP/BP256.swift",
"DomainP/BP320.swift",
"DomainP/BP384.swift",
"DomainP/BP512.swift",
"DomainP/DomainP.swift",
"DomainP/EC192.swift",
"DomainP/EC224.swift",
"DomainP/EC256.swift",
"DomainP/EC384.swift",
"DomainP/EC521.swift",
"Exception.swift",
"Point.swift",
"PrivateKey.swift",
"PublicKey.swift",
"RP.swift",
"Signature.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.