secretive/SecretAgentKit/SigningWitness.swift

10 lines
285 B
Swift
Raw Normal View History

import Foundation
import SecretKit
public protocol SigningWitness {
2020-03-19 03:04:24 +00:00
func speakNowOrForeverHoldYourPeace(forAccessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws
2020-03-17 07:56:55 +00:00
func witness(accessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws
}