Build Information
Successful build of swift-crypto, reference main (741676
), with Swift 6.1 for Linux on 27 Jun 2025 12:51:09 UTC.
Swift 6 data race errors: 41
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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 2>&1
Build Log
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[547/548] Compiling _CryptoExtras VOPRF+API.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[548/548] Compiling _CryptoExtras VOPRFClient.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
Build complete! (137.09s)
Build complete.
{
"cxx_language_standard" : "c++17",
"dependencies" : [
{
"identity" : "swift-asn1",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-asn1.git"
}
],
"manifest_display_name" : "swift-crypto",
"name" : "swift-crypto",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Crypto",
"targets" : [
"Crypto"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "_CryptoExtras",
"targets" : [
"_CryptoExtras"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "crypto-shasum",
"targets" : [
"crypto-shasum"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "crypto_shasum",
"module_type" : "SwiftTarget",
"name" : "crypto-shasum",
"path" : "Sources/crypto-shasum",
"product_memberships" : [
"crypto-shasum"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"Crypto"
],
"type" : "executable"
},
{
"c99name" : "_CryptoExtrasTests",
"module_type" : "SwiftTarget",
"name" : "_CryptoExtrasTests",
"path" : "Tests/_CryptoExtrasTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/_CryptoExtrasTests/ECToolbox/H2CVectors/P256_XMD-SHA-256_SSWU_RO_.json",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/_CryptoExtrasTests/ECToolbox/H2CVectors/P384_XMD-SHA-384_SSWU_RO_.json",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/_CryptoExtrasTests/OPRFs/OPRFVectors/OPRFVectors-VOPRFDraft19.json",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/_CryptoExtrasTests/OPRFs/OPRFVectors/OPRFVectors-VOPRFDraft8.json",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/_CryptoExtrasTests/OPRFs/OPRFVectors/OPRFVectors-edgecases.json",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AES Block Function Tests.swift",
"AES-GCM-SIV-Runner.swift",
"AES_CBCTests.swift",
"AES_CFBTests.swift",
"AES_CTRTests.swift",
"ARC/ARCAPITests.swift",
"ARC/ARCEncodingTests.swift",
"ARC/ARCPublicAPITests.swift",
"ARC/ARCTestVectors.swift",
"ARC/ARCTests.swift",
"ChaCha20CTRTests.swift",
"ECToolbox/HashToCurveTests.swift",
"MLDSATests.swift",
"MLKEMTests.swift",
"OPRFs/ECVOPRFTests.swift",
"OPRFs/VOPRFAPITests.swift",
"OPRFs/VOPRFPublicAPITests.swift",
"PBKDF2Tests.swift",
"ScryptTests.swift",
"TestRSABlindSigning.swift",
"TestRSABlindSigningAPI.swift",
"TestRSAEncryption.swift",
"TestRSASigning.swift",
"Util/IntegerEncodingTests.swift",
"Utils/BytesUtil.swift",
"Utils/RFCVector.swift",
"Utils/SplitData.swift",
"Utils/Wycheproof.swift",
"Utils/XCTestUtils.swift",
"ZKPs/ZKPToolbox.swift"
],
"target_dependencies" : [
"_CryptoExtras"
],
"type" : "test"
},
{
"c99name" : "_CryptoExtras",
"module_type" : "SwiftTarget",
"name" : "_CryptoExtras",
"path" : "Sources/_CryptoExtras",
"product_dependencies" : [
"SwiftASN1"
],
"product_memberships" : [
"_CryptoExtras"
],
"sources" : [
"AES/AES_CBC.swift",
"AES/AES_CFB.swift",
"AES/AES_CTR.swift",
"AES/AES_GCM_SIV.swift",
"AES/Block Function.swift",
"AES/BoringSSL/AES_CFB_boring.swift",
"AES/BoringSSL/AES_CTR_boring.swift",
"AES/BoringSSL/AES_GCM_SIV_boring.swift",
"ARC/ARC+API.swift",
"ARC/ARC.swift",
"ARC/ARCCredential.swift",
"ARC/ARCEncoding.swift",
"ARC/ARCPrecredential.swift",
"ARC/ARCPresentation.swift",
"ARC/ARCRequest.swift",
"ARC/ARCResponse.swift",
"ARC/ARCServer.swift",
"ChaCha20CTR/BoringSSL/ChaCha20CTR_boring.swift",
"ChaCha20CTR/ChaCha20CTR.swift",
"ECToolbox/BoringSSL/ECToolbox_boring.swift",
"ECToolbox/ECToolbox.swift",
"H2G/HashToField.swift",
"Key Derivation/KDF.swift",
"Key Derivation/PBKDF2/BoringSSL/PBKDF2_boring.swift",
"Key Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto.swift",
"Key Derivation/PBKDF2/PBKDF2.swift",
"Key Derivation/Scrypt/BoringSSL/Scrypt_boring.swift",
"Key Derivation/Scrypt/Scrypt.swift",
"MLDSA/MLDSA_boring.swift",
"MLKEM/MLKEM_boring.swift",
"OPRFs/OPRF.swift",
"OPRFs/OPRFClient.swift",
"OPRFs/OPRFServer.swift",
"OPRFs/VOPRF+API.swift",
"OPRFs/VOPRFClient.swift",
"OPRFs/VOPRFServer.swift",
"RSA/RSA+BlindSigning.swift",
"RSA/RSA.swift",
"RSA/RSA_boring.swift",
"RSA/RSA_security.swift",
"Util/BoringSSLHelpers.swift",
"Util/CryptoKitErrors_boring.swift",
"Util/Data+Extensions.swift",
"Util/DigestType.swift",
"Util/Error.swift",
"Util/I2OSP.swift",
"Util/IntegerEncoding.swift",
"Util/Optional+withUnsafeBytes.swift",
"Util/PEMDocument.swift",
"Util/PrettyBytes.swift",
"Util/SubjectPublicKeyInfo.swift",
"ZKPs/DLEQ.swift",
"ZKPs/Prover.swift",
"ZKPs/Verifier.swift",
"ZKPs/ZKPToolbox.swift"
],
"target_dependencies" : [
"CCryptoBoringSSL",
"CCryptoBoringSSLShims",
"CryptoBoringWrapper",
"Crypto"
],
"type" : "library"
},
{
"c99name" : "CryptoTests",
"module_type" : "SwiftTarget",
"name" : "CryptoTests",
"path" : "Tests/CryptoTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/CryptoTests/HPKE/hpke-test-vectors.json",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"ASN1/ASN1Tests.swift",
"ASN1/GeneralizedTimeTests.swift",
"Authenticated Encryption/AES-GCM-Runner.swift",
"Authenticated Encryption/ChaChaPoly-Runner.swift",
"Digests/DigestsTests.swift",
"ECDH/BoringSSL/ASN1.swift",
"ECDH/BoringSSL/secpECDH_Runner_boring.swift",
"ECDH/X25519-Runner.swift",
"ECDH/secpECDH_Runner.swift",
"Encodings/BoringSSL/DERTests_boring.swift",
"Encodings/DERTests.swift",
"Encodings/ECKeyEncodingsTests.swift",
"HPKE/HPKETests-TestVectors.swift",
"HPKE/HPKETests.swift",
"Key Derivation/ECprivateKeysFromSeeds.swift",
"Key Derivation/HKDFTests.swift",
"Key Derivation/SharedSecretTests.swift",
"Key Derivation/X963KDFTests.swift",
"Key Wrapping/KeyWrapping.swift",
"MAC/HMACTests.swift",
"SecureBytes/SecureBytesTests.swift",
"Signatures/ECDSA/ECDSASignatureTests.swift",
"Signatures/ECDSA/RawECDSASignaturesTests.swift",
"Signatures/EdDSA/Ed25519-Runner.swift",
"Utils/PrettyBytes.swift",
"Utils/RFCVector.swift",
"Utils/SplitData.swift",
"Utils/Wycheproof.swift",
"Utils/XCTestUtils.swift"
],
"target_dependencies" : [
"Crypto"
],
"type" : "test"
},
{
"c99name" : "CryptoBoringWrapperTests",
"module_type" : "SwiftTarget",
"name" : "CryptoBoringWrapperTests",
"path" : "Tests/CryptoBoringWrapperTests",
"sources" : [
"ArbitraryPrecisionIntegerTests.swift",
"EllipticCurvePointTests.swift",
"FiniteFieldArithmeticTests.swift"
],
"target_dependencies" : [
"CryptoBoringWrapper"
],
"type" : "test"
},
{
"c99name" : "CryptoBoringWrapper",
"module_type" : "SwiftTarget",
"name" : "CryptoBoringWrapper",
"path" : "Sources/CryptoBoringWrapper",
"product_memberships" : [
"Crypto",
"_CryptoExtras",
"crypto-shasum"
],
"sources" : [
"AEAD/BoringSSLAEAD.swift",
"CryptoKitErrors_boring.swift",
"EC/EllipticCurve.swift",
"EC/EllipticCurvePoint.swift",
"Util/ArbitraryPrecisionInteger.swift",
"Util/FiniteFieldArithmeticContext.swift",
"Util/RandomBytes.swift"
],
"target_dependencies" : [
"CCryptoBoringSSL",
"CCryptoBoringSSLShims"
],
"type" : "library"
},
{
"c99name" : "Crypto",
"module_type" : "SwiftTarget",
"name" : "Crypto",
"path" : "Sources/Crypto",
"product_memberships" : [
"Crypto",
"_CryptoExtras",
"crypto-shasum"
],
"sources" : [
"AEADs/AES/GCM/AES-GCM.swift",
"AEADs/AES/GCM/BoringSSL/AES-GCM_boring.swift",
"AEADs/ChachaPoly/BoringSSL/ChaChaPoly_boring.swift",
"AEADs/ChachaPoly/ChaChaPoly.swift",
"AEADs/Cipher.swift",
"AEADs/Nonces.swift",
"ASN1/ASN1.swift",
"ASN1/Basic ASN1 Types/ASN1Any.swift",
"ASN1/Basic ASN1 Types/ASN1BitString.swift",
"ASN1/Basic ASN1 Types/ASN1Boolean.swift",
"ASN1/Basic ASN1 Types/ASN1Identifier.swift",
"ASN1/Basic ASN1 Types/ASN1Integer.swift",
"ASN1/Basic ASN1 Types/ASN1Null.swift",
"ASN1/Basic ASN1 Types/ASN1OctetString.swift",
"ASN1/Basic ASN1 Types/ASN1Strings.swift",
"ASN1/Basic ASN1 Types/ArraySliceBigint.swift",
"ASN1/Basic ASN1 Types/GeneralizedTime.swift",
"ASN1/Basic ASN1 Types/ObjectIdentifier.swift",
"ASN1/ECDSASignature.swift",
"ASN1/PEMDocument.swift",
"ASN1/PKCS8PrivateKey.swift",
"ASN1/SEC1PrivateKey.swift",
"ASN1/SubjectPublicKeyInfo.swift",
"CryptoKitErrors.swift",
"Digests/BoringSSL/Digest_boring.swift",
"Digests/Digest.swift",
"Digests/Digests.swift",
"Digests/HashFunctions.swift",
"Digests/HashFunctions_SHA2.swift",
"HPKE/Ciphersuite/HPKE-AEAD.swift",
"HPKE/Ciphersuite/HPKE-Ciphersuite.swift",
"HPKE/Ciphersuite/HPKE-KDF.swift",
"HPKE/Ciphersuite/HPKE-KexKeyDerivation.swift",
"HPKE/Ciphersuite/HPKE-LabeledExtract.swift",
"HPKE/Ciphersuite/HPKE-Utils.swift",
"HPKE/Ciphersuite/KEM/Conformances/DHKEM.swift",
"HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift",
"HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift",
"HPKE/Ciphersuite/KEM/HPKE-KEM.swift",
"HPKE/HPKE-Errors.swift",
"HPKE/HPKE.swift",
"HPKE/Key Schedule/HPKE-Context.swift",
"HPKE/Key Schedule/HPKE-KeySchedule.swift",
"HPKE/Modes/HPKE-Modes.swift",
"Insecure/Insecure.swift",
"Insecure/Insecure_HashFunctions.swift",
"KEM/KEM.swift",
"Key Agreement/BoringSSL/ECDH_boring.swift",
"Key Agreement/DH.swift",
"Key Agreement/ECDH.swift",
"Key Derivation/HKDF.swift",
"Key Wrapping/AESWrap.swift",
"Key Wrapping/BoringSSL/AESWrap_boring.swift",
"Keys/EC/BoringSSL/Ed25519_boring.swift",
"Keys/EC/BoringSSL/NISTCurvesKeys_boring.swift",
"Keys/EC/BoringSSL/X25519Keys_boring.swift",
"Keys/EC/Curve25519.swift",
"Keys/EC/Ed25519Keys.swift",
"Keys/EC/NISTCurvesKeys.swift",
"Keys/EC/X25519Keys.swift",
"Keys/Symmetric/SymmetricKeys.swift",
"Message Authentication Codes/HMAC/HMAC.swift",
"Message Authentication Codes/MACFunctions.swift",
"Message Authentication Codes/MessageAuthenticationCode.swift",
"PRF/AES.swift",
"Signatures/BoringSSL/ECDSASignature_boring.swift",
"Signatures/BoringSSL/ECDSA_boring.swift",
"Signatures/BoringSSL/EdDSA_boring.swift",
"Signatures/ECDSA.swift",
"Signatures/Ed25519.swift",
"Signatures/Signature.swift",
"Util/BoringSSL/CryptoKitErrors_boring.swift",
"Util/BoringSSL/RNG_boring.swift",
"Util/BoringSSL/SafeCompare_boring.swift",
"Util/BoringSSL/Zeroization_boring.swift",
"Util/PrettyBytes.swift",
"Util/SafeCompare.swift",
"Util/SecureBytes.swift",
"Util/Zeroization.swift"
],
"target_dependencies" : [
"CCryptoBoringSSL",
"CCryptoBoringSSLShims",
"CryptoBoringWrapper"
],
"type" : "library"
},
{
"c99name" : "CCryptoBoringSSLShims",
"module_type" : "ClangTarget",
"name" : "CCryptoBoringSSLShims",
"path" : "Sources/CCryptoBoringSSLShims",
"product_memberships" : [
"Crypto",
"_CryptoExtras",
"crypto-shasum"
],
"sources" : [
"shims.c"
],
"target_dependencies" : [
"CCryptoBoringSSL"
],
"type" : "library"
},
{
"c99name" : "CCryptoBoringSSL",
"module_type" : "ClangTarget",
"name" : "CCryptoBoringSSL",
"path" : "Sources/CCryptoBoringSSL",
"product_memberships" : [
"Crypto",
"_CryptoExtras",
"crypto-shasum"
],
"sources" : [
"crypto/aes/aes.cc",
"crypto/asn1/a_bitstr.cc",
"crypto/asn1/a_bool.cc",
"crypto/asn1/a_d2i_fp.cc",
"crypto/asn1/a_dup.cc",
"crypto/asn1/a_gentm.cc",
"crypto/asn1/a_i2d_fp.cc",
"crypto/asn1/a_int.cc",
"crypto/asn1/a_mbstr.cc",
"crypto/asn1/a_object.cc",
"crypto/asn1/a_octet.cc",
"crypto/asn1/a_strex.cc",
"crypto/asn1/a_strnid.cc",
"crypto/asn1/a_time.cc",
"crypto/asn1/a_type.cc",
"crypto/asn1/a_utctm.cc",
"crypto/asn1/asn1_lib.cc",
"crypto/asn1/asn1_par.cc",
"crypto/asn1/asn_pack.cc",
"crypto/asn1/f_int.cc",
"crypto/asn1/f_string.cc",
"crypto/asn1/posix_time.cc",
"crypto/asn1/tasn_dec.cc",
"crypto/asn1/tasn_enc.cc",
"crypto/asn1/tasn_fre.cc",
"crypto/asn1/tasn_new.cc",
"crypto/asn1/tasn_typ.cc",
"crypto/asn1/tasn_utl.cc",
"crypto/base64/base64.cc",
"crypto/bio/bio.cc",
"crypto/bio/bio_mem.cc",
"crypto/bio/errno.cc",
"crypto/bio/fd.cc",
"crypto/bio/file.cc",
"crypto/bio/hexdump.cc",
"crypto/bio/pair.cc",
"crypto/bio/printf.cc",
"crypto/blake2/blake2.cc",
"crypto/bn/bn_asn1.cc",
"crypto/bn/convert.cc",
"crypto/bn/div.cc",
"crypto/bn/exponentiation.cc",
"crypto/bn/sqrt.cc",
"crypto/buf/buf.cc",
"crypto/bytestring/asn1_compat.cc",
"crypto/bytestring/ber.cc",
"crypto/bytestring/cbb.cc",
"crypto/bytestring/cbs.cc",
"crypto/bytestring/unicode.cc",
"crypto/chacha/chacha.cc",
"crypto/cipher/derive_key.cc",
"crypto/cipher/e_aesctrhmac.cc",
"crypto/cipher/e_aeseax.cc",
"crypto/cipher/e_aesgcmsiv.cc",
"crypto/cipher/e_chacha20poly1305.cc",
"crypto/cipher/e_des.cc",
"crypto/cipher/e_null.cc",
"crypto/cipher/e_rc2.cc",
"crypto/cipher/e_rc4.cc",
"crypto/cipher/e_tls.cc",
"crypto/cipher/get_cipher.cc",
"crypto/cipher/tls_cbc.cc",
"crypto/cms/cms.cc",
"crypto/conf/conf.cc",
"crypto/cpu_aarch64_apple.cc",
"crypto/cpu_aarch64_fuchsia.cc",
"crypto/cpu_aarch64_linux.cc",
"crypto/cpu_aarch64_openbsd.cc",
"crypto/cpu_aarch64_sysreg.cc",
"crypto/cpu_aarch64_win.cc",
"crypto/cpu_arm_freebsd.cc",
"crypto/cpu_arm_linux.cc",
"crypto/cpu_intel.cc",
"crypto/crypto.cc",
"crypto/curve25519/asm/x25519-asm-arm.S",
"crypto/curve25519/curve25519.cc",
"crypto/curve25519/curve25519_64_adx.cc",
"crypto/curve25519/spake25519.cc",
"crypto/des/des.cc",
"crypto/dh/dh_asn1.cc",
"crypto/dh/params.cc",
"crypto/digest/digest_extra.cc",
"crypto/dsa/dsa.cc",
"crypto/dsa/dsa_asn1.cc",
"crypto/ec/ec_asn1.cc",
"crypto/ec/ec_derive.cc",
"crypto/ec/hash_to_curve.cc",
"crypto/ecdh/ecdh.cc",
"crypto/ecdsa/ecdsa_asn1.cc",
"crypto/ecdsa/ecdsa_p1363.cc",
"crypto/engine/engine.cc",
"crypto/err/err.cc",
"crypto/evp/evp.cc",
"crypto/evp/evp_asn1.cc",
"crypto/evp/evp_ctx.cc",
"crypto/evp/p_dh.cc",
"crypto/evp/p_dh_asn1.cc",
"crypto/evp/p_dsa_asn1.cc",
"crypto/evp/p_ec.cc",
"crypto/evp/p_ec_asn1.cc",
"crypto/evp/p_ed25519.cc",
"crypto/evp/p_ed25519_asn1.cc",
"crypto/evp/p_hkdf.cc",
"crypto/evp/p_rsa.cc",
"crypto/evp/p_rsa_asn1.cc",
"crypto/evp/p_x25519.cc",
"crypto/evp/p_x25519_asn1.cc",
"crypto/evp/pbkdf.cc",
"crypto/evp/print.cc",
"crypto/evp/scrypt.cc",
"crypto/evp/sign.cc",
"crypto/ex_data.cc",
"crypto/fipsmodule/bcm.cc",
"crypto/fipsmodule/fips_shared_support.cc",
"crypto/fuzzer_mode.cc",
"crypto/hpke/hpke.cc",
"crypto/hrss/asm/poly_rq_mul.S",
"crypto/hrss/hrss.cc",
"crypto/kyber/kyber.cc",
"crypto/lhash/lhash.cc",
"crypto/md4/md4.cc",
"crypto/md5/md5.cc",
"crypto/mem.cc",
"crypto/mldsa/mldsa.cc",
"crypto/mlkem/mlkem.cc",
"crypto/obj/obj.cc",
"crypto/obj/obj_xref.cc",
"crypto/pem/pem_all.cc",
"crypto/pem/pem_info.cc",
"crypto/pem/pem_lib.cc",
"crypto/pem/pem_oth.cc",
"crypto/pem/pem_pk8.cc",
"crypto/pem/pem_pkey.cc",
"crypto/pem/pem_x509.cc",
"crypto/pem/pem_xaux.cc",
"crypto/pkcs7/pkcs7.cc",
"crypto/pkcs7/pkcs7_x509.cc",
"crypto/pkcs8/p5_pbev2.cc",
"crypto/pkcs8/pkcs8.cc",
"crypto/pkcs8/pkcs8_x509.cc",
"crypto/poly1305/poly1305.cc",
"crypto/poly1305/poly1305_arm.cc",
"crypto/poly1305/poly1305_arm_asm.S",
"crypto/poly1305/poly1305_vec.cc",
"crypto/pool/pool.cc",
"crypto/rand/deterministic.cc",
"crypto/rand/fork_detect.cc",
"crypto/rand/forkunsafe.cc",
"crypto/rand/getentropy.cc",
"crypto/rand/ios.cc",
"crypto/rand/passive.cc",
"crypto/rand/rand.cc",
"crypto/rand/trusty.cc",
"crypto/rand/urandom.cc",
"crypto/rand/windows.cc",
"crypto/rc4/rc4.cc",
"crypto/refcount.cc",
"crypto/rsa/rsa_asn1.cc",
"crypto/rsa/rsa_crypt.cc",
"crypto/rsa/rsa_extra.cc",
"crypto/rsa/rsa_print.cc",
"crypto/sha/sha1.cc",
"crypto/sha/sha256.cc",
"crypto/sha/sha512.cc",
"crypto/siphash/siphash.cc",
"crypto/slhdsa/slhdsa.cc",
"crypto/spake2plus/spake2plus.cc",
"crypto/stack/stack.cc",
"crypto/thread.cc",
"crypto/thread_none.cc",
"crypto/thread_pthread.cc",
"crypto/thread_win.cc",
"crypto/trust_token/pmbtoken.cc",
"crypto/trust_token/trust_token.cc",
"crypto/trust_token/voprf.cc",
"crypto/x509/a_digest.cc",
"crypto/x509/a_sign.cc",
"crypto/x509/a_verify.cc",
"crypto/x509/algorithm.cc",
"crypto/x509/asn1_gen.cc",
"crypto/x509/by_dir.cc",
"crypto/x509/by_file.cc",
"crypto/x509/i2d_pr.cc",
"crypto/x509/name_print.cc",
"crypto/x509/policy.cc",
"crypto/x509/rsa_pss.cc",
"crypto/x509/t_crl.cc",
"crypto/x509/t_req.cc",
"crypto/x509/t_x509.cc",
"crypto/x509/t_x509a.cc",
"crypto/x509/v3_akey.cc",
"crypto/x509/v3_akeya.cc",
"crypto/x509/v3_alt.cc",
"crypto/x509/v3_bcons.cc",
"crypto/x509/v3_bitst.cc",
"crypto/x509/v3_conf.cc",
"crypto/x509/v3_cpols.cc",
"crypto/x509/v3_crld.cc",
"crypto/x509/v3_enum.cc",
"crypto/x509/v3_extku.cc",
"crypto/x509/v3_genn.cc",
"crypto/x509/v3_ia5.cc",
"crypto/x509/v3_info.cc",
"crypto/x509/v3_int.cc",
"crypto/x509/v3_lib.cc",
"crypto/x509/v3_ncons.cc",
"crypto/x509/v3_ocsp.cc",
"crypto/x509/v3_pcons.cc",
"crypto/x509/v3_pmaps.cc",
"crypto/x509/v3_prn.cc",
"crypto/x509/v3_purp.cc",
"crypto/x509/v3_skey.cc",
"crypto/x509/v3_utl.cc",
"crypto/x509/x509.cc",
"crypto/x509/x509_att.cc",
"crypto/x509/x509_cmp.cc",
"crypto/x509/x509_d2.cc",
"crypto/x509/x509_def.cc",
"crypto/x509/x509_ext.cc",
"crypto/x509/x509_lu.cc",
"crypto/x509/x509_obj.cc",
"crypto/x509/x509_req.cc",
"crypto/x509/x509_set.cc",
"crypto/x509/x509_trs.cc",
"crypto/x509/x509_txt.cc",
"crypto/x509/x509_v3.cc",
"crypto/x509/x509_vfy.cc",
"crypto/x509/x509_vpm.cc",
"crypto/x509/x509cset.cc",
"crypto/x509/x509name.cc",
"crypto/x509/x509rset.cc",
"crypto/x509/x509spki.cc",
"crypto/x509/x_algor.cc",
"crypto/x509/x_all.cc",
"crypto/x509/x_attrib.cc",
"crypto/x509/x_crl.cc",
"crypto/x509/x_exten.cc",
"crypto/x509/x_name.cc",
"crypto/x509/x_pubkey.cc",
"crypto/x509/x_req.cc",
"crypto/x509/x_sig.cc",
"crypto/x509/x_spki.cc",
"crypto/x509/x_val.cc",
"crypto/x509/x_x509.cc",
"crypto/x509/x_x509a.cc",
"crypto/xwing/xwing.cc",
"gen/bcm/aes-gcm-avx2-x86_64-apple.S",
"gen/bcm/aes-gcm-avx2-x86_64-linux.S",
"gen/bcm/aes-gcm-avx512-x86_64-apple.S",
"gen/bcm/aes-gcm-avx512-x86_64-linux.S",
"gen/bcm/aesni-gcm-x86_64-apple.S",
"gen/bcm/aesni-gcm-x86_64-linux.S",
"gen/bcm/aesni-x86-apple.S",
"gen/bcm/aesni-x86-linux.S",
"gen/bcm/aesni-x86_64-apple.S",
"gen/bcm/aesni-x86_64-linux.S",
"gen/bcm/aesv8-armv7-linux.S",
"gen/bcm/aesv8-armv8-apple.S",
"gen/bcm/aesv8-armv8-linux.S",
"gen/bcm/aesv8-armv8-win.S",
"gen/bcm/aesv8-gcm-armv8-apple.S",
"gen/bcm/aesv8-gcm-armv8-linux.S",
"gen/bcm/aesv8-gcm-armv8-win.S",
"gen/bcm/armv4-mont-linux.S",
"gen/bcm/armv8-mont-apple.S",
"gen/bcm/armv8-mont-linux.S",
"gen/bcm/armv8-mont-win.S",
"gen/bcm/bn-586-apple.S",
"gen/bcm/bn-586-linux.S",
"gen/bcm/bn-armv8-apple.S",
"gen/bcm/bn-armv8-linux.S",
"gen/bcm/bn-armv8-win.S",
"gen/bcm/bsaes-armv7-linux.S",
"gen/bcm/co-586-apple.S",
"gen/bcm/co-586-linux.S",
"gen/bcm/ghash-armv4-linux.S",
"gen/bcm/ghash-neon-armv8-apple.S",
"gen/bcm/ghash-neon-armv8-linux.S",
"gen/bcm/ghash-neon-armv8-win.S",
"gen/bcm/ghash-ssse3-x86-apple.S",
"gen/bcm/ghash-ssse3-x86-linux.S",
"gen/bcm/ghash-ssse3-x86_64-apple.S",
"gen/bcm/ghash-ssse3-x86_64-linux.S",
"gen/bcm/ghash-x86-apple.S",
"gen/bcm/ghash-x86-linux.S",
"gen/bcm/ghash-x86_64-apple.S",
"gen/bcm/ghash-x86_64-linux.S",
"gen/bcm/ghashv8-armv7-linux.S",
"gen/bcm/ghashv8-armv8-apple.S",
"gen/bcm/ghashv8-armv8-linux.S",
"gen/bcm/ghashv8-armv8-win.S",
"gen/bcm/p256-armv8-asm-apple.S",
"gen/bcm/p256-armv8-asm-linux.S",
"gen/bcm/p256-armv8-asm-win.S",
"gen/bcm/p256-x86_64-asm-apple.S",
"gen/bcm/p256-x86_64-asm-linux.S",
"gen/bcm/p256_beeu-armv8-asm-apple.S",
"gen/bcm/p256_beeu-armv8-asm-linux.S",
"gen/bcm/p256_beeu-armv8-asm-win.S",
"gen/bcm/p256_beeu-x86_64-asm-apple.S",
"gen/bcm/p256_beeu-x86_64-asm-linux.S",
"gen/bcm/rdrand-x86_64-apple.S",
"gen/bcm/rdrand-x86_64-linux.S",
"gen/bcm/rsaz-avx2-apple.S",
"gen/bcm/rsaz-avx2-linux.S",
"gen/bcm/sha1-586-apple.S",
"gen/bcm/sha1-586-linux.S",
"gen/bcm/sha1-armv4-large-linux.S",
"gen/bcm/sha1-armv8-apple.S",
"gen/bcm/sha1-armv8-linux.S",
"gen/bcm/sha1-armv8-win.S",
"gen/bcm/sha1-x86_64-apple.S",
"gen/bcm/sha1-x86_64-linux.S",
"gen/bcm/sha256-586-apple.S",
"gen/bcm/sha256-586-linux.S",
"gen/bcm/sha256-armv4-linux.S",
"gen/bcm/sha256-armv8-apple.S",
"gen/bcm/sha256-armv8-linux.S",
"gen/bcm/sha256-armv8-win.S",
"gen/bcm/sha256-x86_64-apple.S",
"gen/bcm/sha256-x86_64-linux.S",
"gen/bcm/sha512-586-apple.S",
"gen/bcm/sha512-586-linux.S",
"gen/bcm/sha512-armv4-linux.S",
"gen/bcm/sha512-armv8-apple.S",
"gen/bcm/sha512-armv8-linux.S",
"gen/bcm/sha512-armv8-win.S",
"gen/bcm/sha512-x86_64-apple.S",
"gen/bcm/sha512-x86_64-linux.S",
"gen/bcm/vpaes-armv7-linux.S",
"gen/bcm/vpaes-armv8-apple.S",
"gen/bcm/vpaes-armv8-linux.S",
"gen/bcm/vpaes-armv8-win.S",
"gen/bcm/vpaes-x86-apple.S",
"gen/bcm/vpaes-x86-linux.S",
"gen/bcm/vpaes-x86_64-apple.S",
"gen/bcm/vpaes-x86_64-linux.S",
"gen/bcm/x86-mont-apple.S",
"gen/bcm/x86-mont-linux.S",
"gen/bcm/x86_64-mont-apple.S",
"gen/bcm/x86_64-mont-linux.S",
"gen/bcm/x86_64-mont5-apple.S",
"gen/bcm/x86_64-mont5-linux.S",
"gen/crypto/aes128gcmsiv-x86_64-apple.S",
"gen/crypto/aes128gcmsiv-x86_64-linux.S",
"gen/crypto/chacha-armv4-linux.S",
"gen/crypto/chacha-armv8-apple.S",
"gen/crypto/chacha-armv8-linux.S",
"gen/crypto/chacha-armv8-win.S",
"gen/crypto/chacha-x86-apple.S",
"gen/crypto/chacha-x86-linux.S",
"gen/crypto/chacha-x86_64-apple.S",
"gen/crypto/chacha-x86_64-linux.S",
"gen/crypto/chacha20_poly1305_armv8-apple.S",
"gen/crypto/chacha20_poly1305_armv8-linux.S",
"gen/crypto/chacha20_poly1305_armv8-win.S",
"gen/crypto/chacha20_poly1305_x86_64-apple.S",
"gen/crypto/chacha20_poly1305_x86_64-linux.S",
"gen/crypto/err_data.cc",
"gen/crypto/md5-586-apple.S",
"gen/crypto/md5-586-linux.S",
"gen/crypto/md5-x86_64-apple.S",
"gen/crypto/md5-x86_64-linux.S",
"third_party/fiat/asm/fiat_curve25519_adx_mul.S",
"third_party/fiat/asm/fiat_curve25519_adx_square.S",
"third_party/fiat/asm/fiat_p256_adx_mul.S",
"third_party/fiat/asm/fiat_p256_adx_sqr.S"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:2e2b3aca8600f890617c2faa770b70e33c1dfd303d6f92b308423b89ef6bde64
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/apple/swift-crypto/main
Repository: apple/swift-crypto
Swift version used: 6.1
Target: Crypto
Initialized empty Git repository in /host/spi-builder-workspace/swift-docc-render-artifact/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'Crypto'...
Finished extracting symbol information for 'Crypto'. (37.67s)
Building documentation for 'Crypto'...
warning: 'AES.GCM.Nonce()' doesn't exist at '/Crypto/AES/GCM/seal(_:using:nonce:authenticating:)'
--> ../AEADs/AES/GCM/AES-GCM.swift:44:142-44:157
42 | /// - message: The plaintext data to seal.
43 | /// - key: A cryptographic key used to seal the message.
44 + /// - nonce: The nonce the sealing process requires. If you don't provide a nonce, the method generates a random one by invoking ``AES.GCM.Nonce()``.
45 | /// - authenticatedData: Additional data to be authenticated.
46 | ///
warning: 'AES.GCM.Nonce()' doesn't exist at '/Crypto/AES/GCM/seal(_:using:nonce:)'
--> ../AEADs/AES/GCM/AES-GCM.swift:59:142-59:157
57 | /// - message: The plaintext data to seal.
58 | /// - key: A cryptographic key used to seal the message.
59 + /// - nonce: The nonce the sealing process requires. If you don't provide a nonce, the method generates a random one by invoking ``AES.GCM.Nonce()``.
60 | ///
61 | /// - Returns: The sealed message.
warning: 'ChaChaPoly.Nonce()' doesn't exist at '/Crypto/ChaChaPoly/seal(_:using:nonce:authenticating:)'
--> ../AEADs/ChachaPoly/ChaChaPoly.swift:42:138-42:156
40 | /// - message: The plaintext data to seal.
41 | /// - key: A cryptographic key used to seal the message.
42 + /// - nonce: The nonce the sealing process requires. If you don't provide a nonce, the method generates a random one by invoking ``ChaChaPoly.Nonce()``.
43 | /// - authenticatedData: Additional data to be authenticated.
44 | ///
warning: 'ChaChaPoly.Nonce()' doesn't exist at '/Crypto/ChaChaPoly/seal(_:using:nonce:)'
--> ../AEADs/ChachaPoly/ChaChaPoly.swift:57:138-57:156
55 | /// - message: The plaintext data to seal.
56 | /// - key: A cryptographic key used to seal the message.
57 + /// - nonce: The nonce the sealing process requires. If you don't provide a nonce, the method generates a random one by invoking ``ChaChaPoly.Nonce()``.
58 | ///
59 | /// - Returns: The sealed message.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/Digests.swift:78:14-78:68
76 | ///
77 | /// This method is part of the digest’s conformance to Swift standard library’s
78 + /// <doc://com.apple.documentation/documentation/swift/hashable> protocol, making
79 | /// it possible to compare digests. Don’t confuse that hashing with the
80 | /// cryptographically secure hashing that you use to create the digest in the
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/Digests.swift:151:14-151:68
149 | ///
150 | /// This method is part of the digest’s conformance to Swift standard library’s
151 + /// <doc://com.apple.documentation/documentation/swift/hashable> protocol, making
152 | /// it possible to compare digests. Don’t confuse that hashing with the
153 | /// cryptographically secure hashing that you use to create the digest in the
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/Digests.swift:226:14-226:68
224 | ///
225 | /// This method is part of the digest’s conformance to Swift standard library’s
226 + /// <doc://com.apple.documentation/documentation/swift/hashable> protocol, making
227 | /// it possible to compare digests. Don’t confuse that hashing with the
228 | /// cryptographically secure hashing that you use to create the digest in the
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/Digests.swift:297:14-297:68
295 | ///
296 | /// This method is part of the digest’s conformance to Swift standard library’s
297 + /// <doc://com.apple.documentation/documentation/swift/hashable> protocol, making
298 | /// it possible to compare digests. Don’t confuse that hashing with the
299 | /// cryptographically secure hashing that you use to create the digest in the
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/Digests.swift:367:14-367:68
365 | ///
366 | /// This method is part of the digest’s conformance to Swift standard library’s
367 + /// <doc://com.apple.documentation/documentation/swift/hashable> protocol, making
368 | /// it possible to compare digests. Don’t confuse that hashing with the
369 | /// cryptographically secure hashing that you use to create the digest in the
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:77:16-77:71
75 | ///
76 | /// - Note: Typically, it’s safer to use an instance of
77 + /// <doc://com.apple.documentation/documentation/foundation/data>, or some
78 | /// other type that conforms to the
79 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:79:16-79:79
77 | /// <doc://com.apple.documentation/documentation/foundation/data>, or some
78 | /// other type that conforms to the
79 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
80 | /// to hold your data. When possible, use the ``HashFunction/update(data:)``
81 | /// method instead.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:125:18-125:81
123 | /// - data: The data whose digest the hash function should compute. This can
124 | /// be any type that conforms to
125 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:125:18-125:81
123 | /// - data: The data whose digest the hash function should compute. This can
124 | /// be any type that conforms to
125 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:125:18-125:81
123 | /// - data: The data whose digest the hash function should compute. This can
124 | /// be any type that conforms to
125 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:125:18-125:81
123 | /// - data: The data whose digest the hash function should compute. This can
124 | /// be any type that conforms to
125 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:125:18-125:81
123 | /// - data: The data whose digest the hash function should compute. This can
124 | /// be any type that conforms to
125 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:125:18-125:81
123 | /// - data: The data whose digest the hash function should compute. This can
124 | /// be any type that conforms to
125 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:126:23-126:78
124 | /// be any type that conforms to
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:126:23-126:78
124 | /// be any type that conforms to
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:126:23-126:78
124 | /// be any type that conforms to
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:126:23-126:78
124 | /// be any type that conforms to
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:126:23-126:78
124 | /// be any type that conforms to
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:126:23-126:78
124 | /// be any type that conforms to
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:127:27-127:78
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
129 | ///
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:127:27-127:78
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
129 | ///
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:127:27-127:78
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
129 | ///
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:127:27-127:78
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
129 | ///
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:127:27-127:78
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
129 | ///
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:127:27-127:78
125 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
126 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
127 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
128 | /// instances.
129 | ///
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:148:18-148:81
146 | /// - data: The next block of data for the ongoing digest calculation. You
147 | /// can provide this as any type that conforms to
148 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:148:18-148:81
146 | /// - data: The next block of data for the ongoing digest calculation. You
147 | /// can provide this as any type that conforms to
148 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:148:18-148:81
146 | /// - data: The next block of data for the ongoing digest calculation. You
147 | /// can provide this as any type that conforms to
148 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:148:18-148:81
146 | /// - data: The next block of data for the ongoing digest calculation. You
147 | /// can provide this as any type that conforms to
148 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:148:18-148:81
146 | /// - data: The next block of data for the ongoing digest calculation. You
147 | /// can provide this as any type that conforms to
148 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:148:18-148:81
146 | /// - data: The next block of data for the ongoing digest calculation. You
147 | /// can provide this as any type that conforms to
148 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:149:23-149:78
147 | /// can provide this as any type that conforms to
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:149:23-149:78
147 | /// can provide this as any type that conforms to
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:149:23-149:78
147 | /// can provide this as any type that conforms to
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:149:23-149:78
147 | /// can provide this as any type that conforms to
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:149:23-149:78
147 | /// can provide this as any type that conforms to
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:149:23-149:78
147 | /// can provide this as any type that conforms to
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 + /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 | /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:150:27-150:78
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
152 | @inlinable
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:150:27-150:78
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
152 | @inlinable
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:150:27-150:78
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
152 | @inlinable
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:150:27-150:78
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
152 | @inlinable
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:150:27-150:78
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
152 | @inlinable
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions.swift:150:27-150:78
148 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
149 | /// like <doc://com.apple.documentation/documentation/foundation/data> or an
150 + /// array of <doc://com.apple.documentation/documentation/swift/uint8>
151 | /// instances.
152 | @inlinable
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions_SHA2.swift:73:16-73:71
71 | ///
72 | /// - Note: Typically, it’s safer to use an instance of
73 + /// <doc://com.apple.documentation/documentation/foundation/data>, or some
74 | /// other type that conforms to the
75 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions_SHA2.swift:75:16-75:79
73 | /// <doc://com.apple.documentation/documentation/foundation/data>, or some
74 | /// other type that conforms to the
75 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
76 | /// to hold your data. When possible, use the ``update(data:)`` method
77 | /// instead.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions_SHA2.swift:157:16-157:71
155 | ///
156 | /// - Note: Typically, it’s safer to use an instance of
157 + /// <doc://com.apple.documentation/documentation/foundation/data>, or some
158 | /// other type that conforms to the
159 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions_SHA2.swift:159:16-159:79
157 | /// <doc://com.apple.documentation/documentation/foundation/data>, or some
158 | /// other type that conforms to the
159 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
160 | /// to hold your data. When possible, use the ``update(data:)`` method
161 | /// instead.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions_SHA2.swift:238:16-238:71
236 | ///
237 | /// - Note: Typically, it’s safer to use an instance of
238 + /// <doc://com.apple.documentation/documentation/foundation/data>, or some
239 | /// other type that conforms to the
240 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Digests/HashFunctions_SHA2.swift:240:16-240:79
238 | /// <doc://com.apple.documentation/documentation/foundation/data>, or some
239 | /// other type that conforms to the
240 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
241 | /// to hold your data. When possible, use the ``update(data:)`` method
242 | /// instead.
warning: 'CryptoKit' doesn't exist at '/Crypto/Curve25519/KeyAgreement/PublicKey/init(_:kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift:43:18-43:27
41 | /// - kem: The key encapsulation mechanism to use with the public key.
42 | ///
43 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
44 | public init<D>(_ serialization: D, kem: HPKE.KEM) throws where D: ContiguousBytes {
45 | try Self.validateCiphersuite(kem)
warning: 'CryptoKit' doesn't exist at '/Crypto/Curve25519/KeyAgreement/PublicKey/hpkeRepresentation(kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift:54:18-54:27
52 | /// - kem: The Key Encapsulation Mechanism to use with the public key.
53 | ///
54 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
55 | ///
56 | /// - Returns: The serialized representation of the public key.
warning: 'CryptoKit' doesn't exist at '/Crypto/P256/KeyAgreement/PublicKey/init(_:kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift:49:18-49:27
47 | /// - serialization: The serialized bytes of the public key.
48 | /// - kem: The key encapsulation mechanism to use with the public key.
49 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
50 | public init<D>(_ serialization: D, kem: HPKE.KEM) throws where D: ContiguousBytes {
51 | try Self.validatekem(kem)
warning: 'CryptoKit' doesn't exist at '/Crypto/P256/KeyAgreement/PublicKey/hpkeRepresentation(kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift:60:18-60:27
58 | /// - kem: The Key Encapsulation Mechanism to use with the public key.
59 | /// - Returns: The serialized representation of the public key.
60 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
61 | public func hpkeRepresentation(kem: HPKE.KEM) throws -> Data {
62 | try Self.validatekem(kem)
warning: 'CryptoKit' doesn't exist at '/Crypto/P384/KeyAgreement/PublicKey/init(_:kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift:100:18-100:27
98 | /// - kem: The Key Encapsulation Mechanism to use with the public key.
99 | ///
100 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
101 | public init<D>(_ serialization: D, kem: HPKE.KEM) throws where D: ContiguousBytes {
102 | try Self.validatekem(kem)
warning: 'CryptoKit' doesn't exist at '/Crypto/P384/KeyAgreement/PublicKey/hpkeRepresentation(kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift:113:18-113:27
111 | /// - Returns: The serialized representation of the public key.
112 | ///
113 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
114 | public func hpkeRepresentation(kem: HPKE.KEM) throws -> Data {
115 | try Self.validatekem(kem)
warning: 'CryptoKit' doesn't exist at '/Crypto/P521/KeyAgreement/PublicKey/init(_:kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift:150:18-150:27
148 | /// - kem: The Key Encapsulation Mechanism to use with the public key.
149 | ///
150 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
151 | public init<D>(_ serialization: D, kem: HPKE.KEM) throws where D: ContiguousBytes {
152 | try Self.validatekem(kem)
warning: 'CryptoKit' doesn't exist at '/Crypto/P521/KeyAgreement/PublicKey/hpkeRepresentation(kem:)'
--> ../HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift:163:18-163:27
161 | /// - Returns: The serialized representation of the public key.
162 | ///
163 + /// - Throws: ``CryptoKit/HPKE/Errors/inconsistentCiphersuiteAndKey`` if the key encapsulation mechanism requested is incompatible with this public key.
164 | public func hpkeRepresentation(kem: HPKE.KEM) throws -> Data {
165 | try Self.validatekem(kem)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Sender/init(recipientKey:ciphersuite:info:)'
--> ../HPKE/HPKE.swift:98:53-98:62
96 | /// - ciphersuite: The cipher suite that defines the cryptographic algorithms to use.
97 | /// - info: Data that the key derivation function uses to compute the symmetric key material. The sender and the recipient need to use the same `info` data.
98 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
99 | public init<PK: HPKEDiffieHellmanPublicKey>(recipientKey: PK, ciphersuite: Ciphersuite, info: Data) throws {
100 | self.context = try Context(senderRoleWithCiphersuite: ciphersuite, mode: .base, psk: nil, pskID: nil, pkR: recipientKey, info: info)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Sender/init(recipientKey:ciphersuite:info:presharedKey:presharedKeyIdentifier:)'
--> ../HPKE/HPKE.swift:117:53-117:62
115 | /// - psk: A preshared key (PSK) that the sender and the recipient both hold.
116 | /// - pskID: An identifier for the PSK.
117 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
118 | public init<PK: HPKEDiffieHellmanPublicKey>(recipientKey: PK, ciphersuite: Ciphersuite, info: Data, presharedKey psk: SymmetricKey, presharedKeyIdentifier pskID: Data) throws {
119 | self.context = try Context(senderRoleWithCiphersuite: ciphersuite, mode: .psk, psk: psk, pskID: pskID, pkR: recipientKey, info: info)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Sender/init(recipientKey:ciphersuite:info:authenticatedBy:)'
--> ../HPKE/HPKE.swift:133:53-133:62
131 | /// - info: Data that the key derivation function uses to compute the symmetric key material. The sender and the recipient need to use the same `info` data.
132 | /// - authenticationKey: The sender's private key for generating the HMAC.
133 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
134 | public init<SK: HPKEDiffieHellmanPrivateKey>(recipientKey: SK.PublicKey, ciphersuite: Ciphersuite, info: Data, authenticatedBy authenticationKey: SK) throws {
135 | self.context = try Context(senderRoleWithCiphersuite: ciphersuite, mode: .auth, psk: nil, pskID: nil, pkR: recipientKey, info: info, skS: authenticationKey)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Sender/init(recipientKey:ciphersuite:info:authenticatedBy:presharedKey:presharedKeyIdentifier:)'
--> ../HPKE/HPKE.swift:153:53-153:62
151 | /// - psk: A preshared key (PSK) that the sender and the recipient both hold.
152 | /// - pskID: An identifier for the PSK.
153 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
154 | public init<SK: HPKEDiffieHellmanPrivateKey>(recipientKey: SK.PublicKey, ciphersuite: Ciphersuite, info: Data, authenticatedBy authenticationKey: SK, presharedKey psk: SymmetricKey, presharedKeyIdentifier pskID: Data) throws {
155 | self.context = try Context(senderRoleWithCiphersuite: ciphersuite, mode: .auth_psk, psk: psk, pskID: pskID, pkR: recipientKey, info: info, skS: authenticationKey)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Sender/seal(_:authenticating:)'
--> ../HPKE/HPKE.swift:168:53-168:62
166 | /// - msg: The cleartext message to encrypt.
167 | /// - aad: Additional data that the `Sender` authenticates and adds to the message in cleartext.
168 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
169 | /// - Returns: The ciphertext for the recipient to decrypt.
170 | public mutating func seal<M: DataProtocol, AD: DataProtocol>(_ msg: M, authenticating aad: AD) throws -> Data {
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Sender/seal(_:)'
--> ../HPKE/HPKE.swift:182:53-182:62
180 | /// - Parameters:
181 | /// - msg: The cleartext message to encrypt.
182 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
183 | /// - Returns: The ciphertext for the recipient to decrypt.
184 | public mutating func seal<M: DataProtocol>(_ msg: M) throws -> Data {
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Recipient/init(privateKey:ciphersuite:info:encapsulatedKey:)'
--> ../HPKE/HPKE.swift:233:53-233:62
231 | /// - info: Data that the key derivation function uses to compute the symmetric key material. The sender and the recipient need to use the same `info` data.
232 | /// - encapsulatedKey: The encapsulated symmetric key that the sender provides.
233 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
234 | public init<SK: HPKEDiffieHellmanPrivateKey>(privateKey: SK, ciphersuite: Ciphersuite, info: Data, encapsulatedKey: Data) throws {
235 | self.context = try Context(recipientRoleWithCiphersuite: ciphersuite, mode: .base, enc: encapsulatedKey, psk: nil, pskID: nil, skR: privateKey, info: info, pkS: nil)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Recipient/init(privateKey:ciphersuite:info:encapsulatedKey:presharedKey:presharedKeyIdentifier:)'
--> ../HPKE/HPKE.swift:250:53-250:62
248 | /// - psk: A preshared key (PSK) that the sender and the recipient both hold.
249 | /// - pskID: An identifier for the PSK.
250 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
251 | public init<SK: HPKEDiffieHellmanPrivateKey>(privateKey: SK, ciphersuite: Ciphersuite, info: Data, encapsulatedKey: Data, presharedKey psk: SymmetricKey, presharedKeyIdentifier pskID: Data) throws {
252 | self.context = try Context(recipientRoleWithCiphersuite: ciphersuite, mode: .psk, enc: encapsulatedKey, psk: psk, pskID: pskID, skR: privateKey, info: info, pkS: nil)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Recipient/init(privateKey:ciphersuite:info:encapsulatedKey:authenticatedBy:)'
--> ../HPKE/HPKE.swift:266:53-266:62
264 | /// - encapsulatedKey: The encapsulated symmetric key that the sender provides.
265 | /// - authenticationKey: The sender's public key for authenticating the messages.
266 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
267 | public init<SK: HPKEDiffieHellmanPrivateKey>(privateKey: SK, ciphersuite: Ciphersuite, info: Data, encapsulatedKey: Data, authenticatedBy authenticationKey: SK.PublicKey) throws {
268 | self.context = try Context(recipientRoleWithCiphersuite: ciphersuite, mode: .auth, enc: encapsulatedKey, psk: nil, pskID: nil, skR: privateKey, info: info, pkS: authenticationKey)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Recipient/init(privateKey:ciphersuite:info:encapsulatedKey:authenticatedBy:presharedKey:presharedKeyIdentifier:)'
--> ../HPKE/HPKE.swift:286:53-286:62
284 | /// - psk: A preshared key (PSK) that the sender and the recipient both hold.
285 | /// - pskID: An identifier for the PSK.
286 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
287 | public init<SK: HPKEDiffieHellmanPrivateKey>(privateKey: SK, ciphersuite: Ciphersuite, info: Data, encapsulatedKey: Data, authenticatedBy authenticationKey: SK.PublicKey, presharedKey psk: SymmetricKey, presharedKeyIdentifier pskID: Data) throws {
288 | self.context = try Context(recipientRoleWithCiphersuite: ciphersuite, mode: .auth_psk, enc: encapsulatedKey, psk: psk, pskID: pskID, skR: privateKey, info: info, pkS: authenticationKey)
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Recipient/open(_:authenticating:)'
--> ../HPKE/HPKE.swift:302:53-302:62
300 | /// - ciphertext: The ciphertext message to decrypt.
301 | /// - aad: Additional cleartext data to authenticate.
302 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
303 | /// - Returns: The resulting cleartext message if the message is authentic.
304 | public mutating func open<C: DataProtocol, AD: DataProtocol>(_ ciphertext: C, authenticating aad: AD) throws -> Data {
warning: 'CryptoKit' doesn't exist at '/Crypto/HPKE/Recipient/open(_:)'
--> ../HPKE/HPKE.swift:316:53-316:62
314 | /// - Parameters:
315 | /// - ciphertext: The ciphertext message to decrypt.
316 + /// - Note: The system throws errors from ``CryptoKit/HPKE/Errors`` when it encounters them.
317 | /// - Returns: The resulting cleartext message if the message is authentic.
318 | public mutating func open<C: DataProtocol>(_ ciphertext: C) throws -> Data {
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Insecure/Insecure_HashFunctions.swift:81:20-81:75
79 | ///
80 | /// - Note: Typically, it’s safer to use an instance of
81 + /// <doc://com.apple.documentation/documentation/foundation/data>, or
82 | /// some other type that conforms to the
83 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Insecure/Insecure_HashFunctions.swift:83:20-83:83
81 | /// <doc://com.apple.documentation/documentation/foundation/data>, or
82 | /// some other type that conforms to the
83 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
84 | /// to hold your data. When possible, use the ``update(data:)`` method
85 | /// instead.
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Insecure/Insecure_HashFunctions.swift:169:20-169:75
167 | ///
168 | /// - Note: Typically, it’s safer to use an instance of
169 + /// <doc://com.apple.documentation/documentation/foundation/data>, or
170 | /// some other type that conforms to the
171 | /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
warning: No external resolver registered for 'com.apple.documentation'.
--> ../Insecure/Insecure_HashFunctions.swift:171:20-171:83
169 | /// <doc://com.apple.documentation/documentation/foundation/data>, or
170 | /// some other type that conforms to the
171 + /// <doc://com.apple.documentation/documentation/foundation/dataprotocol>,
172 | /// to hold your data. When possible, use the ``update(data:)`` method
173 | /// instead.
Finished building documentation for 'Crypto' (8.86s)
Generated documentation archive at:
/host/spi-builder-workspace/.docs/apple/swift-crypto/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Updating https://github.com/apple/swift-asn1.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.73s)
Updated https://github.com/apple/swift-asn1.git (0.26s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (1.95s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.4 (0.96s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3418] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.58s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.42s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/9] Write sources
[3/9] Write swift-version-24593BA9C3E375BF.txt
[5/53] Compiling Snippets Snippet.swift
[6/53] Emitting module Snippets
[7/53] Compiling Snippets SnippetParser.swift
[8/54] Compiling SymbolKit SourceOrigin.swift
[9/54] Compiling SymbolKit GenericConstraints.swift
[10/54] Compiling SymbolKit Swift.swift
[11/54] Compiling SymbolKit SemanticVersion.swift
[12/54] Compiling SymbolKit AccessControl.swift
[13/54] Compiling SymbolKit Availability.swift
[14/59] Wrapping AST for Snippets for debugging
[16/59] Compiling SymbolKit FunctionSignature.swift
[17/59] Compiling SymbolKit Identifier.swift
[18/59] Compiling SymbolKit KindIdentifier.swift
[19/59] Compiling SymbolKit Location.swift
[20/59] Compiling SymbolKit Mutability.swift
[21/59] Compiling SymbolKit Names.swift
[22/59] Emitting module SymbolKit
[23/59] Compiling SymbolKit AvailabilityItem.swift
[24/59] Compiling SymbolKit Domain.swift
[25/59] Compiling SymbolKit DeclarationFragments.swift
[26/59] Compiling SymbolKit Fragment.swift
[27/59] Compiling SymbolKit FragmentKind.swift
[28/59] Compiling SymbolKit FunctionParameter.swift
[29/59] Compiling SymbolKit SPI.swift
[30/59] Compiling SymbolKit Snippet.swift
[31/59] Compiling SymbolKit Extension.swift
[32/59] Compiling SymbolKit GenericConstraint.swift
[33/59] Compiling SymbolKit GenericParameter.swift
[34/59] Compiling SymbolKit Generics.swift
[35/59] Compiling SymbolKit Namespace.swift
[36/59] Compiling SymbolKit Symbol.swift
[37/59] Compiling SymbolKit SymbolKind.swift
[38/59] Compiling SymbolKit SymbolGraph.swift
[39/59] Compiling SymbolKit Mixin+Equals.swift
[40/59] Compiling SymbolKit Mixin+Hash.swift
[41/59] Compiling SymbolKit Mixin.swift
[42/59] Compiling SymbolKit LineList.swift
[43/59] Compiling SymbolKit Position.swift
[44/59] Compiling SymbolKit SourceRange.swift
[45/59] Compiling SymbolKit Metadata.swift
[46/59] Compiling SymbolKit Module.swift
[47/59] Compiling SymbolKit OperatingSystem.swift
[48/59] Compiling SymbolKit Platform.swift
[49/59] Compiling SymbolKit Relationship.swift
[50/59] Compiling SymbolKit RelationshipKind.swift
[51/59] Compiling SymbolKit GraphCollector.swift
[52/59] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[53/59] Compiling SymbolKit UnifiedSymbol.swift
[54/59] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[55/59] Compiling SymbolKit UnifiedSymbolGraph.swift
[56/60] Wrapping AST for SymbolKit for debugging
[58/64] Compiling snippet_extract URL+Status.swift
[59/64] Emitting module snippet_extract
[60/64] Compiling snippet_extract SymbolGraph+Snippet.swift
[61/64] Compiling snippet_extract SnippetBuildCommand.swift
[62/65] Wrapping AST for snippet-extract for debugging
[63/65] Write Objects.LinkFileList
[64/65] Linking snippet-extract-tool
Build of product 'snippet-extract' complete! (10.17s)
Building for debugging...
[0/369] Compiling a_dup.cc
[1/369] Compiling a_i2d_fp.cc
[2/369] Write swift-version-24593BA9C3E375BF.txt
[3/369] Compiling a_d2i_fp.cc
[4/369] Compiling fiat_p256_adx_sqr.S
[5/369] Compiling fiat_p256_adx_mul.S
[6/369] Compiling fiat_curve25519_adx_square.S
[7/369] Compiling fiat_curve25519_adx_mul.S
[8/369] Compiling md5-x86_64-linux.S
[9/369] Compiling md5-x86_64-apple.S
[10/369] Compiling a_gentm.cc
[10/369] Compiling a_bool.cc
[11/369] Compiling CCryptoBoringSSLShims shims.c
[12/369] Compiling pem_pkey.cc
[14/369] Compiling pem_pk8.cc
[15/369] Compiling md5-586-linux.S
[16/369] Compiling md5-586-apple.S
[17/369] Compiling chacha20_poly1305_armv8-win.S
[18/369] Compiling chacha20_poly1305_x86_64-apple.S
[19/369] Compiling chacha20_poly1305_x86_64-linux.S
[20/369] Compiling chacha-x86_64-linux.S
[21/369] Compiling chacha-x86_64-apple.S
[21/369] Compiling chacha-x86-linux.S
[22/369] Compiling chacha20_poly1305_armv8-linux.S
[24/369] Compiling chacha20_poly1305_armv8-apple.S
[25/369] Compiling chacha-x86-apple.S
[26/369] Compiling chacha-armv8-apple.S
[27/369] Compiling chacha-armv4-linux.S
[28/369] Compiling chacha-armv8-win.S
[29/369] Compiling chacha-armv8-linux.S
[30/369] Compiling aes128gcmsiv-x86_64-apple.S
[31/369] Compiling aes128gcmsiv-x86_64-linux.S
[32/369] Compiling x86_64-mont5-linux.S
[33/369] Compiling err_data.cc
[34/369] Compiling x86_64-mont5-apple.S
[35/369] Compiling x86_64-mont-linux.S
[36/369] Compiling x86-mont-linux.S
[37/369] Compiling x86_64-mont-apple.S
[38/369] Compiling x86-mont-apple.S
[39/369] Compiling vpaes-x86_64-linux.S
[40/369] Compiling vpaes-x86-linux.S
[41/369] Compiling vpaes-x86_64-apple.S
[42/369] Compiling vpaes-x86-apple.S
[43/369] Compiling vpaes-armv8-linux.S
[44/369] Compiling vpaes-armv8-win.S
[45/369] Compiling vpaes-armv8-apple.S
[46/369] Compiling vpaes-armv7-linux.S
[47/369] Compiling sha512-armv8-linux.S
[48/369] Compiling sha512-x86_64-linux.S
[49/369] Compiling sha512-x86_64-apple.S
[50/369] Compiling sha512-armv8-win.S
[51/369] Compiling sha512-armv8-apple.S
[52/369] Compiling sha512-armv4-linux.S
[53/369] Compiling sha512-586-linux.S
[54/369] Compiling sha512-586-apple.S
[55/369] Compiling sha256-x86_64-apple.S
[56/369] Compiling sha256-armv4-linux.S
[57/369] Compiling sha256-armv8-win.S
[58/369] Compiling sha256-armv8-linux.S
[59/369] Compiling sha256-armv8-apple.S
[60/369] Compiling sha256-586-linux.S
[61/369] Compiling sha256-x86_64-linux.S
[62/369] Compiling sha256-586-apple.S
[63/369] Compiling sha1-armv8-win.S
[64/369] Compiling sha1-x86_64-apple.S
[65/369] Compiling sha1-armv8-linux.S
[66/369] Compiling sha1-armv8-apple.S
[67/369] Compiling sha1-armv4-large-linux.S
[68/369] Compiling sha1-586-linux.S
[69/369] Compiling sha1-x86_64-linux.S
[70/369] Compiling sha1-586-apple.S
[71/369] Compiling rsaz-avx2-linux.S
[72/369] Compiling rdrand-x86_64-apple.S
[73/369] Compiling rdrand-x86_64-linux.S
[74/369] Compiling rsaz-avx2-apple.S
[75/369] Compiling p256_beeu-x86_64-asm-linux.S
[76/369] Compiling p256_beeu-x86_64-asm-apple.S
[77/369] Compiling p256_beeu-armv8-asm-win.S
[78/369] Compiling p256_beeu-armv8-asm-linux.S
[79/369] Compiling p256_beeu-armv8-asm-apple.S
[80/369] Compiling p256-x86_64-asm-apple.S
[81/369] Compiling p256-armv8-asm-linux.S
[82/369] Compiling p256-armv8-asm-win.S
[83/369] Compiling p256-x86_64-asm-linux.S
[84/369] Compiling p256-armv8-asm-apple.S
[85/369] Compiling ghashv8-armv8-win.S
[86/369] Compiling ghashv8-armv8-apple.S
[87/369] Compiling ghashv8-armv8-linux.S
[88/369] Compiling ghashv8-armv7-linux.S
[89/369] Compiling ghash-x86_64-linux.S
[90/369] Compiling ghash-x86-apple.S
[91/369] Compiling ghash-x86_64-apple.S
[92/369] Compiling ghash-x86-linux.S
[93/369] Compiling ghash-ssse3-x86_64-linux.S
[94/369] Compiling ghash-ssse3-x86_64-apple.S
[95/369] Compiling ghash-ssse3-x86-linux.S
[96/369] Compiling ghash-ssse3-x86-apple.S
[97/369] Compiling ghash-neon-armv8-win.S
[98/369] Compiling ghash-neon-armv8-apple.S
[99/369] Compiling ghash-neon-armv8-linux.S
[100/369] Compiling ghash-armv4-linux.S
[101/369] Compiling co-586-linux.S
[102/369] Compiling bsaes-armv7-linux.S
[103/369] Compiling co-586-apple.S
[103/369] Compiling bn-armv8-win.S
[105/369] Compiling bn-armv8-linux.S
[106/369] Compiling bn-armv8-apple.S
[107/369] Compiling bn-586-linux.S
[108/369] Compiling bn-586-apple.S
[109/369] Compiling armv8-mont-win.S
[110/369] Compiling armv8-mont-linux.S
[111/369] Compiling armv4-mont-linux.S
[112/369] Compiling armv8-mont-apple.S
[113/369] Compiling aesv8-gcm-armv8-linux.S
[114/369] Compiling aesv8-gcm-armv8-win.S
[115/369] Compiling aesv8-armv8-win.S
[116/369] Compiling aesv8-gcm-armv8-apple.S
[117/369] Compiling aesv8-armv8-linux.S
[118/369] Compiling aesv8-armv7-linux.S
[119/369] Compiling aesv8-armv8-apple.S
[120/369] Compiling aesni-x86_64-linux.S
[121/369] Compiling aesni-x86_64-apple.S
[122/369] Compiling aesni-x86-linux.S
[123/369] Compiling aesni-x86-apple.S
[124/369] Compiling aesni-gcm-x86_64-linux.S
[125/369] Compiling aesni-gcm-x86_64-apple.S
[126/369] Compiling aes-gcm-avx512-x86_64-apple.S
[127/369] Compiling aes-gcm-avx512-x86_64-linux.S
[128/369] Compiling aes-gcm-avx2-x86_64-apple.S
[129/369] Compiling aes-gcm-avx2-x86_64-linux.S
[130/369] Compiling xwing.cc
[131/369] Compiling x_req.cc
[132/369] Compiling x_sig.cc
[133/369] Compiling x_val.cc
[134/369] Compiling x_x509a.cc
[135/369] Compiling x_spki.cc
[136/369] Compiling x_x509.cc
[137/369] Compiling x_pubkey.cc
[138/369] Compiling x_name.cc
[139/369] Compiling x_crl.cc
[140/369] Compiling x_exten.cc
[141/369] Compiling x_attrib.cc
[142/369] Compiling x_all.cc
[143/369] Compiling x509spki.cc
[144/369] Compiling x_algor.cc
[145/369] Compiling x509rset.cc
[146/369] Compiling x509name.cc
[147/369] Compiling x509cset.cc
[148/369] Compiling x509_txt.cc
[149/369] Compiling x509_trs.cc
[150/369] Compiling x509_v3.cc
[151/369] Compiling x509_vpm.cc
[152/369] Compiling x509_set.cc
[153/369] Compiling x509_vfy.cc
[154/369] Compiling x509_req.cc
[155/369] Compiling x509_def.cc
[156/369] Compiling x509_obj.cc
[157/369] Compiling x509_d2.cc
[158/369] Compiling x509_lu.cc
[159/369] Compiling x509_ext.cc
[160/369] Compiling x509_att.cc
[161/369] Compiling x509_cmp.cc
[162/369] Compiling x509.cc
[163/369] Compiling v3_skey.cc
[164/369] Compiling v3_utl.cc
[165/369] Compiling v3_prn.cc
[165/369] Compiling v3_purp.cc
[167/369] Compiling v3_pmaps.cc
[168/369] Compiling v3_ocsp.cc
[169/369] Compiling v3_pcons.cc
[170/369] Compiling v3_int.cc
[171/369] Compiling v3_lib.cc
[172/369] Compiling v3_ncons.cc
[173/369] Compiling v3_ia5.cc
[174/369] Compiling v3_info.cc
[175/369] Compiling v3_enum.cc
[176/369] Compiling v3_genn.cc
[177/369] Compiling v3_extku.cc
[178/369] Compiling v3_crld.cc
[179/369] Compiling v3_cpols.cc
[180/369] Compiling v3_bcons.cc
[181/369] Compiling v3_conf.cc
[182/369] Compiling v3_bitst.cc
[183/369] Compiling v3_akeya.cc
[184/369] Compiling v3_alt.cc
[185/369] Compiling v3_akey.cc
[186/369] Compiling t_x509.cc
[187/369] Compiling t_x509a.cc
[188/369] Compiling t_crl.cc
[189/369] Compiling t_req.cc
[190/369] Compiling rsa_pss.cc
[191/369] Compiling i2d_pr.cc
[192/369] Compiling policy.cc
[193/369] Compiling name_print.cc
[194/369] Compiling by_file.cc
[195/369] Compiling algorithm.cc
[196/369] Compiling by_dir.cc
[197/369] Compiling a_verify.cc
[198/369] Compiling asn1_gen.cc
[199/369] Compiling voprf.cc
[199/369] Compiling a_digest.cc
[201/369] Compiling thread_win.cc
[202/369] Compiling a_sign.cc
[203/369] Compiling trust_token.cc
[204/369] Compiling pmbtoken.cc
[205/369] Compiling thread.cc
[206/369] Compiling thread_none.cc
[207/369] Compiling thread_pthread.cc
[208/369] Compiling stack.cc
[209/369] Compiling siphash.cc
[210/369] Compiling sha512.cc
[211/369] Compiling slhdsa.cc
[212/369] Compiling sha256.cc
[213/369] Compiling sha1.cc
[214/369] Compiling rsa_extra.cc
[215/369] Compiling rsa_print.cc
[216/369] Compiling spake2plus.cc
[217/369] Compiling rsa_crypt.cc
[218/369] Compiling refcount.cc
[219/369] Compiling rc4.cc
[220/369] Compiling trusty.cc
[221/369] Compiling rsa_asn1.cc
[222/369] Compiling windows.cc
[223/369] Compiling rand.cc
[224/369] Compiling urandom.cc
[225/369] Compiling ios.cc
[226/369] Compiling getentropy.cc
[227/369] Compiling fork_detect.cc
[227/369] Compiling passive.cc
[228/369] Compiling deterministic.cc
[230/369] Compiling forkunsafe.cc
[231/369] Compiling poly1305_vec.cc
[232/369] Compiling poly1305_arm_asm.S
[233/369] Compiling pool.cc
[234/369] Compiling poly1305_arm.cc
[234/369] Compiling poly1305.cc
[236/369] Compiling pkcs7.cc
[237/369] Compiling pem_xaux.cc
[238/369] Compiling pkcs8.cc
[239/369] Compiling p5_pbev2.cc
[240/369] Compiling pkcs7_x509.cc
[241/369] Compiling pkcs8_x509.cc
[242/369] Compiling pem_oth.cc
[243/369] Compiling pem_x509.cc
[244/369] Compiling mlkem.cc
[245/369] Compiling mldsa.cc
[246/369] Compiling obj_xref.cc
[247/369] Compiling pem_lib.cc
[248/369] Compiling mem.cc
[249/369] Compiling obj.cc
[250/369] Compiling pem_info.cc
[251/369] Compiling poly_rq_mul.S
[252/369] Compiling pem_all.cc
[253/369] Compiling fips_shared_support.cc
[254/369] Compiling md5.cc
[255/369] Compiling lhash.cc
[256/369] Compiling md4.cc
[257/369] Compiling fuzzer_mode.cc
[258/369] Compiling hrss.cc
[259/369] Compiling kyber.cc
[260/369] Compiling ex_data.cc
[261/369] Compiling sign.cc
[262/369] Compiling hpke.cc
[263/369] Compiling scrypt.cc
[264/369] Compiling pbkdf.cc
[265/369] Compiling p_x25519.cc
[266/369] Compiling print.cc
[267/369] Compiling p_x25519_asn1.cc
[268/369] Compiling p_rsa_asn1.cc
[269/369] Compiling p_ed25519.cc
[270/369] Compiling p_hkdf.cc
[271/369] Compiling p_rsa.cc
[272/369] Compiling p_ed25519_asn1.cc
[273/369] Compiling p_ec.cc
[274/369] Compiling p_ec_asn1.cc
[275/369] Compiling p_dh_asn1.cc
[276/369] Compiling p_dh.cc
[277/369] Compiling p_dsa_asn1.cc
[278/369] Compiling err.cc
[279/369] Compiling evp.cc
[280/369] Compiling evp_ctx.cc
[281/369] Compiling engine.cc
[281/369] Compiling ecdsa_p1363.cc
[283/369] Compiling evp_asn1.cc
[284/369] Compiling ecdh.cc
[285/369] Compiling hash_to_curve.cc
[286/369] Compiling ec_derive.cc
[287/369] Compiling ecdsa_asn1.cc
[288/369] Compiling dsa.cc
[289/369] Compiling dsa_asn1.cc
[290/369] Compiling ec_asn1.cc
[291/369] Compiling params.cc
[292/369] Compiling x25519-asm-arm.S
[293/369] Compiling des.cc
[294/369] Compiling digest_extra.cc
[295/369] Compiling dh_asn1.cc
[296/369] Compiling crypto.cc
[297/369] Compiling spake25519.cc
[298/369] Compiling cpu_arm_linux.cc
[299/369] Compiling cpu_intel.cc
[300/369] Compiling curve25519.cc
[301/369] Compiling cpu_arm_freebsd.cc
[302/369] Compiling cpu_aarch64_win.cc
[303/369] Compiling cpu_aarch64_openbsd.cc
[304/369] Compiling cpu_aarch64_sysreg.cc
[305/369] Compiling cpu_aarch64_linux.cc
[306/369] Compiling cpu_aarch64_fuchsia.cc
[306/369] Compiling curve25519_64_adx.cc
[308/369] Compiling cpu_aarch64_apple.cc
[309/369] Compiling bcm.cc
[310/369] Compiling conf.cc
[311/369] Compiling get_cipher.cc
[312/369] Compiling tls_cbc.cc
[313/369] Compiling e_rc4.cc
[314/369] Compiling e_tls.cc
[315/369] Compiling e_rc2.cc
[316/369] Compiling e_null.cc
[317/369] Compiling e_des.cc
[318/369] Compiling e_chacha20poly1305.cc
[319/369] Compiling e_aesgcmsiv.cc
[320/369] Compiling e_aeseax.cc
[321/369] Compiling derive_key.cc
[322/369] Compiling cms.cc
[323/369] Compiling e_aesctrhmac.cc
[324/369] Compiling chacha.cc
[325/369] Compiling sqrt.cc
[326/369] Compiling buf.cc
[327/369] Compiling unicode.cc
[328/369] Compiling ber.cc
[329/369] Compiling exponentiation.cc
[330/369] Compiling cbb.cc
[331/369] Compiling asn1_compat.cc
[332/369] Compiling cbs.cc
[333/369] Compiling div.cc
[334/369] Compiling printf.cc
[335/369] Compiling blake2.cc
[336/369] Compiling bn_asn1.cc
[337/369] Compiling hexdump.cc
[338/369] Compiling pair.cc
[339/369] Compiling file.cc
[340/369] Compiling convert.cc
[341/369] Compiling fd.cc
[342/369] Compiling errno.cc
[343/369] Compiling bio_mem.cc
[344/369] Compiling base64.cc
[345/369] Compiling tasn_typ.cc
[345/369] Compiling bio.cc
[347/369] Compiling tasn_fre.cc
[348/369] Compiling tasn_utl.cc
[349/369] Compiling tasn_new.cc
[350/369] Compiling tasn_enc.cc
[351/369] Compiling posix_time.cc
[352/369] Compiling f_int.cc
[352/369] Compiling f_string.cc
[354/369] Compiling asn_pack.cc
[355/369] Compiling tasn_dec.cc
[356/369] Compiling asn1_par.cc
[357/369] Compiling a_utctm.cc
[358/369] Compiling a_type.cc
[359/369] Compiling asn1_lib.cc
[360/369] Compiling a_octet.cc
[361/369] Compiling a_time.cc
[362/369] Compiling a_strnid.cc
[363/369] Compiling a_strex.cc
[364/369] Compiling a_object.cc
[365/369] Compiling aes.cc
[366/369] Compiling a_mbstr.cc
[367/369] Compiling a_bitstr.cc
[368/369] Compiling a_int.cc
[370/377] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[371/377] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[372/377] Compiling CryptoBoringWrapper EllipticCurve.swift
[373/377] Emitting module CryptoBoringWrapper
[374/377] Compiling CryptoBoringWrapper RandomBytes.swift
[375/377] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[376/377] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[377/377] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[379/449] Compiling Crypto HPKE-Ciphersuite.swift
[380/449] Compiling Crypto HPKE-KDF.swift
[381/449] Compiling Crypto HPKE-KexKeyDerivation.swift
[382/449] Compiling Crypto HPKE-LabeledExtract.swift
[383/449] Compiling Crypto HPKE-Utils.swift
[384/449] Compiling Crypto DHKEM.swift
[385/449] Compiling Crypto HPKE-KEM-Curve25519.swift
[386/449] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[387/449] Compiling Crypto HPKE-KEM.swift
[388/449] Compiling Crypto HPKE-Errors.swift
[389/458] Compiling Crypto SymmetricKeys.swift
[390/458] Compiling Crypto HMAC.swift
[391/458] Compiling Crypto MACFunctions.swift
[392/458] Compiling Crypto MessageAuthenticationCode.swift
[393/458] Compiling Crypto AES.swift
[394/458] Compiling Crypto ECDSASignature_boring.swift
[395/458] Compiling Crypto ECDSA_boring.swift
[396/458] Compiling Crypto EdDSA_boring.swift
[397/458] Compiling Crypto ECDSA.swift
[398/458] Compiling Crypto Ed25519.swift
[399/458] Compiling Crypto HKDF.swift
[400/458] Compiling Crypto AESWrap.swift
[401/458] Compiling Crypto AESWrap_boring.swift
[402/458] Compiling Crypto Ed25519_boring.swift
[403/458] Compiling Crypto NISTCurvesKeys_boring.swift
[404/458] Compiling Crypto X25519Keys_boring.swift
[405/458] Compiling Crypto Curve25519.swift
[406/458] Compiling Crypto Ed25519Keys.swift
[407/458] Compiling Crypto NISTCurvesKeys.swift
[408/458] Compiling Crypto X25519Keys.swift
[409/458] Compiling Crypto HPKE.swift
[410/458] Compiling Crypto HPKE-Context.swift
[411/458] Compiling Crypto HPKE-KeySchedule.swift
[412/458] Compiling Crypto HPKE-Modes.swift
[413/458] Compiling Crypto Insecure.swift
[414/458] Compiling Crypto Insecure_HashFunctions.swift
[415/458] Compiling Crypto KEM.swift
[416/458] Compiling Crypto ECDH_boring.swift
[417/458] Compiling Crypto DH.swift
[418/458] Compiling Crypto ECDH.swift
[419/458] Compiling Crypto AES-GCM.swift
[420/458] Compiling Crypto AES-GCM_boring.swift
[421/458] Compiling Crypto ChaChaPoly_boring.swift
[422/458] Compiling Crypto ChaChaPoly.swift
[423/458] Compiling Crypto Cipher.swift
[424/458] Compiling Crypto Nonces.swift
[425/458] Compiling Crypto ASN1.swift
[426/458] Compiling Crypto ASN1Any.swift
[427/458] Compiling Crypto ASN1BitString.swift
[428/458] Compiling Crypto ASN1Boolean.swift
[429/458] Emitting module Crypto
[430/458] Compiling Crypto ASN1Identifier.swift
[431/458] Compiling Crypto ASN1Integer.swift
[432/458] Compiling Crypto ASN1Null.swift
[433/458] Compiling Crypto ASN1OctetString.swift
[434/458] Compiling Crypto ASN1Strings.swift
[435/458] Compiling Crypto ArraySliceBigint.swift
[436/458] Compiling Crypto GeneralizedTime.swift
[437/458] Compiling Crypto ObjectIdentifier.swift
[438/458] Compiling Crypto ECDSASignature.swift
[439/458] Compiling Crypto PEMDocument.swift
[440/458] Compiling Crypto PKCS8PrivateKey.swift
[441/458] Compiling Crypto SEC1PrivateKey.swift
[442/458] Compiling Crypto SubjectPublicKeyInfo.swift
[443/458] Compiling Crypto CryptoKitErrors.swift
[444/458] Compiling Crypto Digest_boring.swift
[445/458] Compiling Crypto Digest.swift
[446/458] Compiling Crypto Digests.swift
[447/458] Compiling Crypto HashFunctions.swift
[448/458] Compiling Crypto HashFunctions_SHA2.swift
[449/458] Compiling Crypto HPKE-AEAD.swift
[450/458] Compiling Crypto Signature.swift
[451/458] Compiling Crypto CryptoKitErrors_boring.swift
[452/458] Compiling Crypto RNG_boring.swift
[453/458] Compiling Crypto SafeCompare_boring.swift
[454/458] Compiling Crypto Zeroization_boring.swift
[455/458] Compiling Crypto PrettyBytes.swift
[456/458] Compiling Crypto SafeCompare.swift
[457/458] Compiling Crypto SecureBytes.swift
[458/458] Compiling Crypto Zeroization.swift
Build of target: 'Crypto' complete! (36.05s)
Target: _CryptoExtras
Extracting symbol information for '_CryptoExtras'...
Finished extracting symbol information for '_CryptoExtras'. (13.50s)
Building documentation for '_CryptoExtras'...
Finished building documentation for '_CryptoExtras' (5.74s)
Generated documentation archive at:
/host/spi-builder-workspace/.docs/apple/swift-crypto/main
Building for debugging...
[0/2] Write swift-version-24593BA9C3E375BF.txt
Build of product 'snippet-extract' complete! (2.87s)
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/18] Compiling SwiftASN1 ArraySliceBigint.swift
[3/18] Compiling SwiftASN1 GeneralizedTime.swift
[4/20] Compiling SwiftASN1 TimeUtilities.swift
[5/20] Compiling SwiftASN1 UTCTime.swift
[6/20] Compiling SwiftASN1 ASN1BitString.swift
[7/20] Compiling SwiftASN1 ASN1Boolean.swift
[8/20] Compiling SwiftASN1 ASN1Identifier.swift
[9/20] Compiling SwiftASN1 ASN1Integer.swift
[10/20] Compiling SwiftASN1 ASN1Null.swift
[11/20] Compiling SwiftASN1 ASN1OctetString.swift
[12/20] Compiling SwiftASN1 ASN1Strings.swift
[13/20] Compiling SwiftASN1 ObjectIdentifier.swift
[14/20] Compiling SwiftASN1 PEMDocument.swift
[15/20] Compiling SwiftASN1 ASN1.swift
[16/20] Compiling SwiftASN1 BER.swift
[17/20] Compiling SwiftASN1 ASN1Any.swift
[18/20] Compiling SwiftASN1 DER.swift
[19/20] Compiling SwiftASN1 Errors.swift
[20/20] Emitting module SwiftASN1
[22/71] Emitting module _CryptoExtras
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
[23/71] Compiling _CryptoExtras AES_CBC.swift
[24/71] Compiling _CryptoExtras AES_CFB.swift
[25/71] Compiling _CryptoExtras AES_CTR.swift
[26/71] Compiling _CryptoExtras AES_GCM_SIV.swift
[27/71] Compiling _CryptoExtras Block Function.swift
[28/71] Compiling _CryptoExtras AES_CFB_boring.swift
[29/71] Compiling _CryptoExtras AES_CTR_boring.swift
[30/77] Compiling _CryptoExtras AES_GCM_SIV_boring.swift
[31/77] Compiling _CryptoExtras ARC+API.swift
[32/77] Compiling _CryptoExtras ARC.swift
[33/77] Compiling _CryptoExtras ARCCredential.swift
[34/77] Compiling _CryptoExtras ARCEncoding.swift
[35/77] Compiling _CryptoExtras ARCPrecredential.swift
[36/77] Compiling _CryptoExtras ARCPresentation.swift
[37/77] Compiling _CryptoExtras ARCRequest.swift
[38/77] Compiling _CryptoExtras ARCResponse.swift
[39/77] Compiling _CryptoExtras ARCServer.swift
[40/77] Compiling _CryptoExtras ChaCha20CTR_boring.swift
[41/77] Compiling _CryptoExtras ChaCha20CTR.swift
[42/77] Compiling _CryptoExtras ECToolbox_boring.swift
[43/77] Compiling _CryptoExtras ECToolbox.swift
[44/77] Compiling _CryptoExtras VOPRFServer.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9: warning: no calls to throwing functions occur within 'try' expression
65 |
66 | func getKeyPrimitives() throws -> (n: Data, e: Data) {
67 | try self.backing.getKeyPrimitives()
| `- warning: no calls to throwing functions occur within 'try' expression
68 | }
69 | }
[45/77] Compiling _CryptoExtras RSA+BlindSigning.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9: warning: no calls to throwing functions occur within 'try' expression
65 |
66 | func getKeyPrimitives() throws -> (n: Data, e: Data) {
67 | try self.backing.getKeyPrimitives()
| `- warning: no calls to throwing functions occur within 'try' expression
68 | }
69 | }
[46/77] Compiling _CryptoExtras RSA.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9: warning: no calls to throwing functions occur within 'try' expression
65 |
66 | func getKeyPrimitives() throws -> (n: Data, e: Data) {
67 | try self.backing.getKeyPrimitives()
| `- warning: no calls to throwing functions occur within 'try' expression
68 | }
69 | }
[47/77] Compiling _CryptoExtras RSA_boring.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9: warning: no calls to throwing functions occur within 'try' expression
65 |
66 | func getKeyPrimitives() throws -> (n: Data, e: Data) {
67 | try self.backing.getKeyPrimitives()
| `- warning: no calls to throwing functions occur within 'try' expression
68 | }
69 | }
[48/77] Compiling _CryptoExtras RSA_security.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9: warning: no calls to throwing functions occur within 'try' expression
65 |
66 | func getKeyPrimitives() throws -> (n: Data, e: Data) {
67 | try self.backing.getKeyPrimitives()
| `- warning: no calls to throwing functions occur within 'try' expression
68 | }
69 | }
[49/77] Compiling _CryptoExtras BoringSSLHelpers.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9: warning: no calls to throwing functions occur within 'try' expression
65 |
66 | func getKeyPrimitives() throws -> (n: Data, e: Data) {
67 | try self.backing.getKeyPrimitives()
| `- warning: no calls to throwing functions occur within 'try' expression
68 | }
69 | }
[50/77] Compiling _CryptoExtras CryptoKitErrors_boring.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:24:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
22 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
23 | internal struct BoringSSLRSAPublicKey: Sendable {
24 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPublicKey' has non-sendable type 'BoringSSLRSAPublicKey.Backing'; this is an error in the Swift 6 language mode
25 |
26 | init(pemRepresentation: String) throws {
:
183 | extension BoringSSLRSAPublicKey {
184 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
185 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
186 | private let pointer: OpaquePointer
187 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:73:17: warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
71 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
72 | internal struct BoringSSLRSAPrivateKey: Sendable {
73 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'BoringSSLRSAPrivateKey' has non-sendable type 'BoringSSLRSAPrivateKey.Backing'; this is an error in the Swift 6 language mode
74 |
75 | init(pemRepresentation: String) throws {
:
554 | extension BoringSSLRSAPrivateKey {
555 | @available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
556 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
557 | private let pointer: OpaquePointer
558 |
/host/spi-builder-workspace/Sources/_CryptoExtras/RSA/RSA_boring.swift:67:9: warning: no calls to throwing functions occur within 'try' expression
65 |
66 | func getKeyPrimitives() throws -> (n: Data, e: Data) {
67 | try self.backing.getKeyPrimitives()
| `- warning: no calls to throwing functions occur within 'try' expression
68 | }
69 | }
[51/77] Compiling _CryptoExtras MLDSA_boring.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[52/77] Compiling _CryptoExtras MLKEM_boring.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[53/77] Compiling _CryptoExtras OPRF.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[54/77] Compiling _CryptoExtras OPRFClient.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[55/77] Compiling _CryptoExtras OPRFServer.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[56/77] Compiling _CryptoExtras VOPRF+API.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[57/77] Compiling _CryptoExtras VOPRFClient.swift
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-DSA-65 private key.
30 | public struct PrivateKey: Sendable {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA65.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-DSA-65 private key from a random seed.
:
79 | static let byteCount = Backing.byteCount
80 |
81 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
82 | fileprivate var key: MLDSA65_private_key
83 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:188:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
186 | /// A ML-DSA-65 public key.
187 | public struct PublicKey: Sendable {
188 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA65.PublicKey.Backing'; this is an error in the Swift 6 language mode
189 |
190 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
237 | static let byteCount = Backing.byteCount
238 |
239 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
240 | private var key: MLDSA65_public_key
241 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:337:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
335 | /// A ML-DSA-87 private key.
336 | public struct PrivateKey: Sendable {
337 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLDSA87.PrivateKey.Backing'; this is an error in the Swift 6 language mode
338 |
339 | /// Initialize a ML-DSA-87 private key from a random seed.
:
385 | static let byteCount = Backing.byteCount
386 |
387 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
388 | fileprivate var key: MLDSA87_private_key
389 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLDSA/MLDSA_boring.swift:494:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
492 | /// A ML-DSA-87 public key.
493 | public struct PublicKey: Sendable {
494 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLDSA87.PublicKey.Backing'; this is an error in the Swift 6 language mode
495 |
496 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
543 | static let byteCount = Backing.byteCount
544 |
545 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
546 | private var key: MLDSA87_public_key
547 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:31:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
29 | /// A ML-KEM-768 private key.
30 | public struct PrivateKey: Sendable, KEMPrivateKey {
31 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM768.PrivateKey.Backing'; this is an error in the Swift 6 language mode
32 |
33 | /// Initialize a ML-KEM-768 private key from a random seed.
:
73 | }
74 |
75 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
76 | var key: MLKEM768_private_key
77 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:177:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
175 | /// A ML-KEM-768 public key.
176 | public struct PublicKey: Sendable, KEMPublicKey {
177 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM768.PublicKey.Backing'; this is an error in the Swift 6 language mode
178 |
179 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
205 | static let byteCount = Backing.byteCount
206 |
207 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
208 | var key: MLKEM768_public_key
209 |
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:302:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
300 | /// A ML-KEM-1024 private key.
301 | public struct PrivateKey: Sendable, KEMPrivateKey {
302 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PrivateKey' has non-sendable type 'MLKEM1024.PrivateKey.Backing'; this is an error in the Swift 6 language mode
303 |
304 | /// Initialize a ML-KEM-1024 private key from a random seed.
:
344 | }
345 |
346 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
347 | var key: MLKEM1024_private_key
348 | var seed: Data
/host/spi-builder-workspace/Sources/_CryptoExtras/MLKEM/MLKEM_boring.swift:448:21: warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
446 | /// A ML-KEM-1024 public key.
447 | public struct PublicKey: Sendable, KEMPublicKey {
448 | private var backing: Backing
| `- warning: stored property 'backing' of 'Sendable'-conforming struct 'PublicKey' has non-sendable type 'MLKEM1024.PublicKey.Backing'; this is an error in the Swift 6 language mode
449 |
450 | fileprivate init(privateKeyBacking: PrivateKey.Backing) {
:
476 | static let byteCount = Backing.byteCount
477 |
478 | fileprivate final class Backing {
| `- note: class 'Backing' does not conform to the 'Sendable' protocol
479 | var key: MLKEM1024_public_key
480 |
[58/77] Compiling _CryptoExtras Data+Extensions.swift
[59/77] Compiling _CryptoExtras DigestType.swift
[60/77] Compiling _CryptoExtras Error.swift
[61/77] Compiling _CryptoExtras I2OSP.swift
[62/77] Compiling _CryptoExtras IntegerEncoding.swift
[63/77] Compiling _CryptoExtras Optional+withUnsafeBytes.swift
[64/77] Compiling _CryptoExtras PEMDocument.swift
[65/77] Compiling _CryptoExtras HashToField.swift
[66/77] Compiling _CryptoExtras KDF.swift
[67/77] Compiling _CryptoExtras PBKDF2_boring.swift
[68/77] Compiling _CryptoExtras PBKDF2_commoncrypto.swift
[69/77] Compiling _CryptoExtras PBKDF2.swift
[70/77] Compiling _CryptoExtras Scrypt_boring.swift
[71/77] Compiling _CryptoExtras Scrypt.swift
[72/77] Compiling _CryptoExtras PrettyBytes.swift
[73/77] Compiling _CryptoExtras SubjectPublicKeyInfo.swift
[74/77] Compiling _CryptoExtras DLEQ.swift
[75/77] Compiling _CryptoExtras Prover.swift
[76/77] Compiling _CryptoExtras Verifier.swift
[77/77] Compiling _CryptoExtras ZKPToolbox.swift
Build of target: '_CryptoExtras' complete! (8.51s)
Successfully merged into /host/spi-builder-workspace/.docs-staging/apple/swift-crypto/main/index/index.json
Successfully merged into /host/spi-builder-workspace/.docs-staging/apple/swift-crypto/main/linkable-paths.json
2476
22 /host/spi-builder-workspace/.docs/apple/swift-crypto/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/apple/swift-crypto/main
File count: 2476
Doc size: 22.0MB
Preparing doc bundle ...
Uploading prod-apple-swift-crypto-main-ac8bdfb3.zip to s3://spi-docs-inbox/prod-apple-swift-crypto-main-ac8bdfb3.zip
Copying... [11%]
Copying... [21%]
Copying... [30%]
Copying... [42%]
Copying... [51%]
Copying... [61%]
Copying... [70%]
Copying... [82%]
Copying... [91%]
Copying... [100%]
Done.