This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of CryptorECC with Swift 5.8 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4609320-0":/host -w "$PWD/checkout" registry.gitlab.com/finestructure/spi-images:basic-5.8-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.28.7
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Kitura/BlueECC.git
Reference: 1.2.201
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/Kitura/BlueECC
 * tag               1.2.201    -> FETCH_HEAD
HEAD is now at 1485268 Update podspec to specify Swift 5.2 as the minimum supported
Cloned https://github.com/Kitura/BlueECC.git
Revision (git rev-parse @):
1485268a54f8135435a825a855e733f026fa6cc8
SUCCESS checkout https://github.com/Kitura/BlueECC.git at 1.2.201
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.8
Building package at path:  $PWD/checkout
https://github.com/Kitura/BlueECC.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-0":/host -w "$PWD/checkout" registry.gitlab.com/finestructure/spi-images:basic-5.8-latest swift build 2>&1
Fetching https://github.com/Kitura/OpenSSL.git
[1/203] Fetching openssl
Fetched https://github.com/Kitura/OpenSSL.git (0.24s)
Computing version for https://github.com/Kitura/OpenSSL.git
Computed https://github.com/Kitura/OpenSSL.git at 2.3.1 (1.11s)
Creating working copy for https://github.com/Kitura/OpenSSL.git
Working copy of https://github.com/Kitura/OpenSSL.git resolved at 2.3.1
Building for debugging...
[1/11] Compiling CryptorECC EllipticCurve.swift
[2/12] Compiling CryptorECC ECPublicKey.swift
/host/spi-builder-workspace/Sources/CryptorECC/ECPublicKey.swift:58:14: warning: 'EC_KEY_free' is deprecated
    deinit { EC_KEY_free(.make(optional: self.nativeKey)) }
             ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPublicKey.swift:129:25: warning: 'EC_KEY_new_by_curve_name' is deprecated
            let ecKey = EC_KEY_new_by_curve_name(curve.nativeCurve)
                        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPublicKey.swift:130:27: warning: 'EC_KEY_get0_group' is deprecated
            let ecGroup = EC_KEY_get0_group(ecKey)
                          ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPublicKey.swift:135:13: warning: 'EC_POINT_bn2point' is deprecated
            EC_POINT_bn2point(ecGroup, bigNum, ecPoint, nil)
            ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPublicKey.swift:136:19: warning: 'EC_KEY_set_public_key' is deprecated
            guard EC_KEY_set_public_key(ecKey, ecPoint) == 1 else {
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPublicKey.swift:137:17: warning: 'EC_KEY_free' is deprecated
                EC_KEY_free(ecKey)
                ^
[3/12] Compiling CryptorECC ECSignature.swift
/host/spi-builder-workspace/Sources/CryptorECC/ECSignature.swift:93:15: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated
        guard EVP_PKEY_set1_EC_KEY(evp_key, .make(optional: ecPublicKey.nativeKey)) == 1 else {
              ^
[4/12] Compiling CryptorECC ECSignable.swift
/host/spi-builder-workspace/Sources/CryptorECC/ECSignable.swift:58:15: warning: 'EVP_PKEY_set1_EC_KEY' is deprecated
        guard EVP_PKEY_set1_EC_KEY(evp_key, .make(optional: key.nativeKey)) == 1 else {
              ^
[5/12] Compiling CryptorECC SSLPointerTricks.swift
[6/12] Compiling CryptorECC ECError.swift
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:58:18: warning: 'EC_KEY_free' is deprecated
        deinit { EC_KEY_free(.make(optional: self.nativeKey)) }
                 ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:259:22: warning: 'EC_KEY_new_by_curve_name' is deprecated
        let ec_key = EC_KEY_new_by_curve_name(curve.nativeCurve)
                     ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:260:9: warning: 'EC_KEY_generate_key' is deprecated
        EC_KEY_generate_key(ec_key)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:264:19: warning: 'EC_KEY_get0_public_key' is deprecated
        let pub = EC_KEY_get0_public_key(ec_key)
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:265:24: warning: 'EC_KEY_get0_group' is deprecated
        let ec_group = EC_KEY_get0_group(ec_key)
                       ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:267:9: warning: 'EC_POINT_point2bn' is deprecated
        EC_POINT_point2bn(ec_group, pub, POINT_CONVERSION_UNCOMPRESSED, pub_bn, pub_bn_ctx)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:322:19: warning: 'i2d_ECPrivateKey_bio' is deprecated
            guard i2d_ECPrivateKey_bio(asn1Bio, nativeKey) >= 0 else {
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:441:25: warning: 'EC_KEY_new_by_curve_name' is deprecated
            let ecKey = EC_KEY_new_by_curve_name(curve.nativeCurve)
                        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:442:19: warning: 'EC_KEY_set_private_key' is deprecated
            guard EC_KEY_set_private_key(ecKey, bigNum) == 1 else {
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:443:17: warning: 'EC_KEY_free' is deprecated
                EC_KEY_free(ecKey)
                ^
[7/12] Compiling CryptorECC ECPrivateKey.swift
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:58:18: warning: 'EC_KEY_free' is deprecated
        deinit { EC_KEY_free(.make(optional: self.nativeKey)) }
                 ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:259:22: warning: 'EC_KEY_new_by_curve_name' is deprecated
        let ec_key = EC_KEY_new_by_curve_name(curve.nativeCurve)
                     ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:260:9: warning: 'EC_KEY_generate_key' is deprecated
        EC_KEY_generate_key(ec_key)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:264:19: warning: 'EC_KEY_get0_public_key' is deprecated
        let pub = EC_KEY_get0_public_key(ec_key)
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:265:24: warning: 'EC_KEY_get0_group' is deprecated
        let ec_group = EC_KEY_get0_group(ec_key)
                       ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:267:9: warning: 'EC_POINT_point2bn' is deprecated
        EC_POINT_point2bn(ec_group, pub, POINT_CONVERSION_UNCOMPRESSED, pub_bn, pub_bn_ctx)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:322:19: warning: 'i2d_ECPrivateKey_bio' is deprecated
            guard i2d_ECPrivateKey_bio(asn1Bio, nativeKey) >= 0 else {
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:441:25: warning: 'EC_KEY_new_by_curve_name' is deprecated
            let ecKey = EC_KEY_new_by_curve_name(curve.nativeCurve)
                        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:442:19: warning: 'EC_KEY_set_private_key' is deprecated
            guard EC_KEY_set_private_key(ecKey, bigNum) == 1 else {
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECPrivateKey.swift:443:17: warning: 'EC_KEY_free' is deprecated
                EC_KEY_free(ecKey)
                ^
[8/12] Compiling CryptorECC ASN1.swift
[9/12] Compiling CryptorECC Data+Extensions.swift
[10/12] Emitting module CryptorECC
[11/12] Compiling CryptorECC ECDecryptable.swift
/host/spi-builder-workspace/Sources/CryptorECC/ECDecryptable.swift:47:24: warning: 'EC_KEY_get0_group' is deprecated
        let ec_group = EC_KEY_get0_group(key.nativeKey)
                       ^
/host/spi-builder-workspace/Sources/CryptorECC/ECDecryptable.swift:73:13: warning: 'EC_POINT_bn2point' is deprecated
            EC_POINT_bn2point(ec_group, pubk_bn, pubk_point, pubk_bn_ctx)
            ^
/host/spi-builder-workspace/Sources/CryptorECC/ECDecryptable.swift:80:9: warning: 'ECDH_compute_key' is deprecated
        ECDH_compute_key(symKey, skey_len, pubk_point, key.nativeKey, nil)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:59:22: warning: 'EC_KEY_new_by_curve_name' is deprecated
        let ec_key = EC_KEY_new_by_curve_name(key.curve.nativeCurve)
                     ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:61:13: warning: 'EC_KEY_free' is deprecated
            EC_KEY_free(ec_key)
            ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:63:9: warning: 'EC_KEY_generate_key' is deprecated
        EC_KEY_generate_key(ec_key)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:64:24: warning: 'EC_KEY_get0_group' is deprecated
        let ec_group = EC_KEY_get0_group(ec_key)
                       ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:67:9: warning: 'ECDH_compute_key' is deprecated
        ECDH_compute_key(symKey, symKey_len, EC_KEY_get0_public_key(key.nativeKey), ec_key, nil)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:67:46: warning: 'EC_KEY_get0_public_key' is deprecated
        ECDH_compute_key(symKey, symKey_len, EC_KEY_get0_public_key(key.nativeKey), ec_key, nil)
                                             ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:72:19: warning: 'EC_KEY_get0_public_key' is deprecated
        let pub = EC_KEY_get0_public_key(ec_key)
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:74:9: warning: 'EC_POINT_point2bn' is deprecated
        EC_POINT_point2bn(ec_group, pub, POINT_CONVERSION_UNCOMPRESSED, pub_bn, pub_bn_ctx)
        ^
[12/12] Compiling CryptorECC ECEncryptable.swift
/host/spi-builder-workspace/Sources/CryptorECC/ECDecryptable.swift:47:24: warning: 'EC_KEY_get0_group' is deprecated
        let ec_group = EC_KEY_get0_group(key.nativeKey)
                       ^
/host/spi-builder-workspace/Sources/CryptorECC/ECDecryptable.swift:73:13: warning: 'EC_POINT_bn2point' is deprecated
            EC_POINT_bn2point(ec_group, pubk_bn, pubk_point, pubk_bn_ctx)
            ^
/host/spi-builder-workspace/Sources/CryptorECC/ECDecryptable.swift:80:9: warning: 'ECDH_compute_key' is deprecated
        ECDH_compute_key(symKey, skey_len, pubk_point, key.nativeKey, nil)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:59:22: warning: 'EC_KEY_new_by_curve_name' is deprecated
        let ec_key = EC_KEY_new_by_curve_name(key.curve.nativeCurve)
                     ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:61:13: warning: 'EC_KEY_free' is deprecated
            EC_KEY_free(ec_key)
            ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:63:9: warning: 'EC_KEY_generate_key' is deprecated
        EC_KEY_generate_key(ec_key)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:64:24: warning: 'EC_KEY_get0_group' is deprecated
        let ec_group = EC_KEY_get0_group(ec_key)
                       ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:67:9: warning: 'ECDH_compute_key' is deprecated
        ECDH_compute_key(symKey, symKey_len, EC_KEY_get0_public_key(key.nativeKey), ec_key, nil)
        ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:67:46: warning: 'EC_KEY_get0_public_key' is deprecated
        ECDH_compute_key(symKey, symKey_len, EC_KEY_get0_public_key(key.nativeKey), ec_key, nil)
                                             ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:72:19: warning: 'EC_KEY_get0_public_key' is deprecated
        let pub = EC_KEY_get0_public_key(ec_key)
                  ^
/host/spi-builder-workspace/Sources/CryptorECC/ECEncryptable.swift:74:9: warning: 'EC_POINT_point2bn' is deprecated
        EC_POINT_point2bn(ec_group, pub, POINT_CONVERSION_UNCOMPRESSED, pub_bn, pub_bn_ctx)
        ^
Build complete! (10.16s)
Build complete.
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.