From e2afb92fbf02b3ebb2b084d7b8fdc214137d70be Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sat, 11 Mar 2023 17:48:54 -0800 Subject: [PATCH] Remove redundant --- .../SmartCardSecretKit/SmartCardStore.swift | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift b/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift index 200a5b4..15bc10b 100644 --- a/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift +++ b/Sources/Packages/Sources/SmartCardSecretKit/SmartCardStore.swift @@ -281,19 +281,3 @@ extension TKTokenWatcher { } } - -extension SmartCard { - - /// A wrapper around an error code reported by a Keychain API. - public struct KeychainError: Error { - /// The status code involved. - public let statusCode: OSStatus - } - - /// A signing-related error. - public struct SigningError: Error { - /// The underlying error reported by the API, if one was returned. - public let error: SecurityError? - } - -}