From cc9209d525129483220374b4e28b1a2b98e00794 Mon Sep 17 00:00:00 2001 From: Rita Zerrizuela Date: Fri, 31 Jan 2025 00:18:14 +0000 Subject: [PATCH] Add `Sendable` conformance (#235) --- SimpleKeychain/Accessibility.swift | 2 +- SimpleKeychain/SimpleKeychain.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SimpleKeychain/Accessibility.swift b/SimpleKeychain/Accessibility.swift index 698cfb9..6af1fa7 100644 --- a/SimpleKeychain/Accessibility.swift +++ b/SimpleKeychain/Accessibility.swift @@ -1,7 +1,7 @@ import Security /// Represents the accessibility types of Keychain items. It's a mirror of `kSecAttrAccessible` values. -public enum Accessibility: RawRepresentable { +public enum Accessibility: RawRepresentable, @unchecked Sendable { /// The data in the Keychain item can be accessed only while the device is unlocked by the user. /// See [kSecAttrAccessibleWhenUnlocked](https://developer.apple.com/documentation/security/ksecattraccessiblewhenunlocked). diff --git a/SimpleKeychain/SimpleKeychain.swift b/SimpleKeychain/SimpleKeychain.swift index c9fe1ab..24191d5 100644 --- a/SimpleKeychain/SimpleKeychain.swift +++ b/SimpleKeychain/SimpleKeychain.swift @@ -1,7 +1,7 @@ import Foundation import Security #if canImport(LocalAuthentication) -import LocalAuthentication +@preconcurrency import LocalAuthentication #endif typealias RetrieveFunction = (_ query: CFDictionary, _ result: UnsafeMutablePointer?) -> OSStatus @@ -10,7 +10,7 @@ typealias RemoveFunction = (_ query: CFDictionary) -> OSStatus /// A simple Keychain wrapper for iOS, macOS, tvOS, and watchOS. /// Supports sharing credentials with an **access group** or through **iCloud**, and integrating /// **Touch ID / Face ID**. -public struct SimpleKeychain { +public struct SimpleKeychain: @unchecked Sendable { let service: String let accessGroup: String? let accessibility: Accessibility