This commit is contained in:
Max Goedjen
2021-11-07 12:47:51 -08:00
parent af52c60ebf
commit 80a2bd42a3
2 changed files with 19 additions and 10 deletions

View File

@@ -12,7 +12,7 @@ public protocol SecretStore: ObservableObject, Identifiable {
func sign(data: Data, with secret: SecretType, for provenance: SigningRequestProvenance) throws -> SignedData
// TODO: MOVE TO SEPARATE PROTOCOL?
func persistAuthentication(secret: SecretType, forDuration: TimeInterval) throws
func persistAuthentication(secret: SecretType, forDuration duration: TimeInterval) throws
}