You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/Valet/SecureEnclave.swift
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -31,16 +31,12 @@ public final class SecureEnclave: Sendable {
31
31
// To avoid prompting the user for Touch ID or passcode, create a Valet with our identifier and accessibility and ask it if it can access the keychain.
/// Creates a Valet with an explicitly set kSecAttrService.
61
+
/// Creates a Valet with an explicitly set kSecAttrService. This API is intended for use with macOS applications where service identifiers can be user-facing.
63
62
/// - Parameters:
64
63
/// - identifier: A non-empty string that uniquely identifies a Valet. Must be unique relative to other Valet identifiers.
65
64
/// - accessibility: The desired accessibility for the Valet.
@@ -70,7 +69,7 @@ public final class Valet: NSObject, Sendable {
/// Creates an iCloud Valet with an explicitly set kSecAttrService.
72
+
/// Creates an iCloud Valet with an explicitly set kSecAttrService. This API is intended for use with macOS applications where service identifiers can be user-facing.
74
73
/// - Parameters:
75
74
/// - identifier: A non-empty string that uniquely identifies a Valet. Must be unique relative to other Valet identifiers.
76
75
/// - accessibility: The desired accessibility for the Valet.
@@ -81,7 +80,7 @@ public final class Valet: NSObject, Sendable {
/// Creates a shared-access-group Valet with an explicitly set kSecAttrService.
83
+
/// Creates a shared-access-group Valet with an explicitly set kSecAttrService. This API is intended for use with macOS applications where service identifiers can be user-facing.
85
84
/// - Parameters:
86
85
/// - identifier: The identifier for the Valet's shared access group. Must correspond with the value for keychain-access-groups in your Entitlements file. Must be unique relative to other Valet identifiers.
87
86
/// - accessibility: The desired accessibility for the Valet.
@@ -92,7 +91,7 @@ public final class Valet: NSObject, Sendable {
/// Creates an iCloud-shared-access-group Valet with an explicitly set kSecAttrService.
94
+
/// Creates an iCloud-shared-access-group Valet with an explicitly set kSecAttrService. This API is intended for use with macOS applications where service identifiers can be user-facing.
96
95
/// - Parameters:
97
96
/// - identifier: The identifier for the Valet's shared access group. Must correspond with the value for keychain-access-groups in your Entitlements file. Must be unique relative to other Valet identifiers.
98
97
/// - accessibility: The desired accessibility for the Valet.
@@ -102,8 +101,7 @@ public final class Valet: NSObject, Sendable {
0 commit comments