2020-03-17 06:39:34 +00:00
|
|
|
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
|
2020-03-17 06:39:34 +00:00
|
|
|
|
|
|
|
}
|