2020-03-17 06:39:34 +00:00
|
|
|
import Foundation
|
|
|
|
import SecretKit
|
|
|
|
|
|
|
|
public protocol SigningWitness {
|
|
|
|
|
2021-11-08 01:41:59 +00:00
|
|
|
func speakNowOrForeverHoldYourPeace(forAccessTo secret: AnySecret, from store: AnySecretStore, by provenance: SigningRequestProvenance) throws
|
|
|
|
func witness(accessTo secret: AnySecret, from store: AnySecretStore, by provenance: SigningRequestProvenance, requiredAuthentication: Bool) throws
|
2020-03-17 06:39:34 +00:00
|
|
|
|
|
|
|
}
|