The Swift Package Index logo.Swift Package Index

Build Information

Failed to build JOSE, reference main (c534dc), with Swift 6.3 for Android on 20 Apr 2026 19:32:51 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/proxyco/swift-jose.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.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/proxyco/swift-jose
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at c534dca Format
Cloned https://github.com/proxyco/swift-jose.git
Revision (git rev-parse @):
c534dcaa0f6dd7fc0efa52cee0e097b503f16cdf
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/proxyco/swift-jose.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/proxyco/swift-jose.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/krzyzanowskim/OpenSSL.git
Fetching https://github.com/krzyzanowskim/CryptoSwift.git
[1/13341] Fetching cryptoswift
[13342/23806] Fetching cryptoswift, openssl
Fetching https://github.com/GigaBitcoin/secp256k1.swift.git
Fetched https://github.com/krzyzanowskim/CryptoSwift.git from cache (102.58s)
[1/10391] Fetching secp256k1.swift
Fetched https://github.com/krzyzanowskim/OpenSSL.git from cache (105.67s)
Fetched https://github.com/GigaBitcoin/secp256k1.swift.git from cache (3.78s)
Computing version for https://github.com/krzyzanowskim/CryptoSwift.git
Computed https://github.com/krzyzanowskim/CryptoSwift.git at 1.7.2 (114.87s)
Computing version for https://github.com/GigaBitcoin/secp256k1.swift.git
Computed https://github.com/GigaBitcoin/secp256k1.swift.git at 0.12.2 (2.82s)
Computing version for https://github.com/krzyzanowskim/OpenSSL.git
Computed https://github.com/krzyzanowskim/OpenSSL.git at 1.1.2301 (5.09s)
Creating working copy for https://github.com/krzyzanowskim/CryptoSwift.git
Working copy of https://github.com/krzyzanowskim/CryptoSwift.git resolved at 1.7.2
Creating working copy for https://github.com/krzyzanowskim/OpenSSL.git
Working copy of https://github.com/krzyzanowskim/OpenSSL.git resolved at 1.1.2301
Creating working copy for https://github.com/GigaBitcoin/secp256k1.swift.git
Working copy of https://github.com/GigaBitcoin/secp256k1.swift.git resolved at 0.12.2
Building for debugging...
[0/8] Write sources
[3/8] Compiling Utility.c
[4/8] Write swift-version--4F562202D5529B1.txt
[5/8] Compiling precomputed_ecmult_gen.c
[6/66] Compiling secp256k1.c
[7/106] Compiling precomputed_ecmult.c
[9/126] Emitting module secp256k1
[10/128] Emitting module CryptoSwift
[11/141] Compiling CryptoSwift Hashable.swift
[12/141] Compiling CryptoSwift Integer Conversion.swift
[13/141] Compiling CryptoSwift Multiplication.swift
[14/141] Compiling CryptoSwift Prime Test.swift
[15/141] Compiling CryptoSwift Random.swift
[16/141] Compiling CryptoSwift Shifts.swift
[17/141] Compiling CryptoSwift Square Root.swift
[18/141] Compiling CryptoSwift Strideable.swift
[19/141] Compiling CryptoSwift String Conversion.swift
[20/141] Compiling CryptoSwift Subtraction.swift
[21/141] Compiling CryptoSwift Words and Bits.swift
[22/141] Compiling CryptoSwift ChaCha20.swift
[23/141] Compiling CryptoSwift Checksum.swift
[24/141] Compiling CryptoSwift Cipher.swift
[25/141] Compiling CryptoSwift Utils+Foundation.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[26/141] Compiling CryptoSwift Generics.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[27/141] Compiling CryptoSwift HKDF.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[28/141] Compiling CryptoSwift HMAC.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[29/141] Compiling CryptoSwift ISO10126Padding.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[30/141] Compiling CryptoSwift ISO78164Padding.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[31/141] Compiling CryptoSwift Int+Extension.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[32/141] Compiling CryptoSwift MD5.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[33/141] Compiling CryptoSwift NoPadding.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[34/141] Compiling CryptoSwift Operators.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[35/141] Compiling CryptoSwift DER.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[36/141] Compiling CryptoSwift PBKDF1.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[37/141] Compiling CryptoSwift PBKDF2.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[38/141] Compiling CryptoSwift PKCS1v15.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/HKDF.swift:57:25: error: cannot find 'ceil' in scope
55 |     let keyLengthFinal = Double(dkLen)
56 |     let hLen = Double(variant.digestLength)
57 |     let numBlocks = Int(ceil(keyLengthFinal / hLen)) // l = ceil(keyLength / hLen)
   |                         `- error: cannot find 'ceil' in scope
58 |     guard numBlocks <= 255 else {
59 |       throw Error.derivedKeyTooLong
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:64:28: error: cannot find 'pow' in scope
 62 |       let keyLengthFinal = Double(dkLen)
 63 |       let hLen = Double(prf.variant.digestLength)
 64 |       if keyLengthFinal > (pow(2, 32) - 1) * hLen {
    |                            `- error: cannot find 'pow' in scope
 65 |         throw Error.derivedKeyTooLong
 66 |       }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift:72:28: error: cannot find 'ceil' in scope
 70 |       self.prf = prf
 71 |
 72 |       self.numBlocks = Int(ceil(Double(keyLengthFinal) / hLen)) // l = ceil(keyLength / hLen)
    |                            `- error: cannot find 'ceil' in scope
 73 |     }
 74 |
[39/141] Compiling CryptoSwift SecureBytes.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[40/141] Compiling CryptoSwift Signature.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[41/141] Compiling CryptoSwift StreamDecryptor.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[42/141] Compiling CryptoSwift StreamEncryptor.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[43/141] Compiling CryptoSwift String+Extension.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[44/141] Compiling CryptoSwift UInt128.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[45/141] Compiling CryptoSwift UInt16+Extension.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[46/141] Compiling CryptoSwift UInt32+Extension.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[47/141] Compiling CryptoSwift UInt64+Extension.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[48/141] Compiling CryptoSwift UInt8+Extension.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[49/141] Compiling CryptoSwift Updatable.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[50/141] Compiling CryptoSwift Utils.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[51/141] Compiling CryptoSwift ZeroPadding.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:41:9: error: cannot find 'mlock' in scope
39 |         // not supported on WASI
40 |       #else
41 |         mlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'mlock' in scope
42 |       #endif
43 |     }
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift:53:9: error: cannot find 'munlock' in scope
51 |         // not supported on WASI
52 |       #else
53 |         munlock(pointer.baseAddress, pointer.count)
   |         `- error: cannot find 'munlock' in scope
54 |       #endif
55 |     }
[52/141] Compiling secp256k1 Errors.swift
[53/141] Compiling secp256k1 Exports.swift
[54/141] Compiling secp256k1 HashDigest.swift
[55/141] Compiling secp256k1 ECDH.swift
[56/141] Compiling secp256k1 ECDSA.swift
[57/141] Compiling secp256k1 EdDSA.swift
[58/141] Compiling secp256k1 Asymmetric.swift
[59/141] Compiling secp256k1 DH.swift
[60/141] Compiling secp256k1 Digest.swift
[61/141] Compiling secp256k1 Tweak.swift
[62/141] Compiling secp256k1 Utility.swift
[63/141] Compiling secp256k1 SecureBytes.swift
[64/141] Compiling secp256k1 Signature.swift
[65/141] Compiling secp256k1 Zeroization.swift
[66/141] Compiling secp256k1 secp256k1.swift
[67/141] Compiling secp256k1 SHA256.swift
[68/141] Compiling secp256k1 SafeCompare.swift
[69/141] Compiling secp256k1 Schnorr.swift
[70/141] Compiling secp256k1 PrettyBytes.swift
[71/141] Compiling secp256k1 RNG_boring.swift
[72/141] Compiling secp256k1 Recovery.swift
[73/142] Compiling CryptoSwift Collection+Extension.swift
[74/142] Compiling CryptoSwift CompactMap.swift
[75/142] Compiling CryptoSwift Cryptor.swift
[76/142] Compiling CryptoSwift Cryptors.swift
[77/142] Compiling CryptoSwift Digest.swift
[78/142] Compiling CryptoSwift DigestType.swift
[79/142] Compiling CryptoSwift AES+Foundation.swift
[80/142] Compiling CryptoSwift Array+Foundation.swift
[81/142] Compiling CryptoSwift Blowfish+Foundation.swift
[82/142] Compiling CryptoSwift ChaCha20+Foundation.swift
[83/142] Compiling CryptoSwift Data+Extension.swift
[84/142] Compiling CryptoSwift HMAC+Foundation.swift
[85/142] Compiling CryptoSwift Rabbit+Foundation.swift
[86/142] Compiling CryptoSwift String+FoundationExtension.swift
[94/142] Compiling CryptoSwift Codable.swift
[95/142] Compiling CryptoSwift Comparable.swift
[96/142] Compiling CryptoSwift Data Conversion.swift
[97/142] Compiling CryptoSwift Division.swift
[98/142] Compiling CryptoSwift Exponentiation.swift
[99/142] Compiling CryptoSwift Floating Point Conversion.swift
[100/142] Compiling CryptoSwift GCD.swift
[116/142] Compiling CryptoSwift PKCS5.swift
[117/142] Compiling CryptoSwift PKCS7.swift
[118/142] Compiling CryptoSwift PKCS7Padding.swift
[119/142] Compiling CryptoSwift Padding.swift
[120/142] Compiling CryptoSwift Poly1305.swift
[121/142] Compiling CryptoSwift RSA+Cipher.swift
[122/142] Compiling CryptoSwift RSA+Signature.swift
[123/142] Compiling CryptoSwift RSA.swift
[124/142] Compiling CryptoSwift Rabbit.swift
[125/142] Compiling CryptoSwift SHA1.swift
[126/142] Compiling CryptoSwift SHA2.swift
[127/142] Compiling CryptoSwift SHA3.swift
[128/142] Compiling CryptoSwift Scrypt.swift
[129/142] Compiling CryptoSwift BlockEncryptor.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[130/142] Compiling CryptoSwift BlockMode.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[131/142] Compiling CryptoSwift BlockModeOptions.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[132/142] Compiling CryptoSwift CBC.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[133/142] Compiling CryptoSwift CCM.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[134/142] Compiling CryptoSwift CFB.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[135/142] Compiling CryptoSwift CTR.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[136/142] Compiling CryptoSwift CipherModeWorker.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[137/142] Compiling CryptoSwift ECB.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[138/142] Compiling CryptoSwift GCM.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[139/142] Compiling CryptoSwift OCB.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[140/142] Compiling CryptoSwift OFB.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[141/142] Compiling CryptoSwift PCBC.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
[142/142] Compiling CryptoSwift Blowfish.swift
/host/spi-builder-workspace/.build/checkouts/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift:341:26: error: cannot find 'pow' in scope
339 |       // [a]32
340 |       return addPadding([0xFF, 0xFE] + a.bytes(totalBytes: 4) + aad, blockSize: 16)
341 |     case 4_294_967_296..<pow(2, 64): // 2^64
    |                          `- error: cannot find 'pow' in scope
342 |       // [a]64
343 |       return addPadding([0xFF, 0xFF] + a.bytes(totalBytes: 8) + aad, blockSize: 16)
BUILD FAILURE 6.3 android