Attempt to fix ssh signing with rsa keys

This commit is contained in:
Maxwell Swadling
2023-03-12 15:03:37 +10:00
parent 1bd724c8bf
commit 1240883425
6 changed files with 33 additions and 10 deletions

View File

@@ -13,7 +13,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
private let storeList: SecretStoreList = {
let list = SecretStoreList()
list.add(store: SecureEnclave.Store())
list.add(store: SmartCard.Store())
list.add(store: SmartCard.Store(includeEncryptionKeys: false))
return list
}()
private let updater = Updater(checkOnLaunch: false, bundlePrefix: BundlePrefix)