We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cb6113 commit 8fa345cCopy full SHA for 8fa345c
Sources/Crypto/Key Derivation/HKDF.swift
@@ -15,6 +15,9 @@
15
@_exported import CryptoKit
16
#else
17
import Foundation
18
+#if canImport(Android)
19
+import Android
20
+#endif
21
22
/// A standards-based implementation of an HMAC-based Key Derivation Function
23
/// (HKDF).
Sources/_CryptoExtras/Key Derivation/Scrypt/BoringSSL/Scrypt_boring.swift
@@ -21,6 +21,10 @@ import Foundation
@_implementationOnly import CCryptoBoringSSL
@_implementationOnly import CCryptoBoringSSLShims
24
25
26
27
+
28
internal struct BoringSSLScrypt {
29
/// Derives a secure key using the provided passphrase and salt.
30
///
0 commit comments