Skip to content

Commit dcb2cd4

Browse files
committed
Fix issue where swift-crypto couldn't be found
1 parent 910adf6 commit dcb2cd4

File tree

9 files changed

+8
-9
lines changed

9 files changed

+8
-9
lines changed

Sources/ATCryptography/ATCryptography.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
//
77

88
import Foundation
9-
import CryptoKit
109
import Crypto
1110
import secp256k1
1211

Sources/ATCryptography/BaseRadix/Base58.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import Foundation
9-
import CryptoKit
9+
import Crypto
1010
import BigInt
1111

1212
/// Represents a Base58 encoding alphabet.

Sources/ATCryptography/Extensions/DataExtensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import Foundation
9-
import CryptoKit
9+
import Crypto
1010

1111
internal extension Data {
1212

Sources/ATCryptography/Extensions/ECDSASignatureExtensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
import Foundation
10-
import CryptoKit
10+
import Crypto
1111
import secp256k1
1212
import BigInt
1313

Sources/ATCryptography/SHA256Hasher.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import Foundation
9-
import CryptoKit
9+
import Crypto
1010

1111
/// A collection of utility methods for computing SHA-256 hashes.
1212
public struct SHA256Hasher: Sendable {

Sources/ATCryptography/SecureRandom.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import Foundation
9-
import CryptoKit
9+
import Crypto
1010

1111
/// A collection of utility methods for generating random data.
1212
public struct SecureRandom {

Sources/ATCryptography/p256/P256Encoding.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import Foundation
9-
import CryptoKit
9+
import Crypto
1010

1111
/// A collection of utility functions for handling p256 public key encoding.
1212
public struct P256Encoding {

Sources/ATCryptography/p256/P256Keypair.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import Foundation
9-
@preconcurrency import CryptoKit
9+
@preconcurrency import Crypto
1010

1111
/// A cryptographic keypair for p256.
1212
public struct P256Keypair: ExportableKeypair, Sendable {

Sources/ATCryptography/p256/P256Operations.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import Foundation
9-
import CryptoKit
9+
import Crypto
1010
import BigInt
1111

1212
/// A collection of cryptographic operations related to p256.

0 commit comments

Comments
 (0)