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

@@ -11,7 +11,7 @@ struct Secretive: App {
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 agentStatusChecker = AgentStatusChecker()

View File

@@ -195,7 +195,7 @@ struct ContentView_Previews: PreviewProvider {
private static 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 static let agentStatusChecker = AgentStatusChecker()