mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-04-10 03:07:22 +02:00
10 lines
285 B
Swift
10 lines
285 B
Swift
import Foundation
|
|
import SecretKit
|
|
|
|
public protocol SigningWitness {
|
|
|
|
func speakNowOrForeverHoldYourPeace(forAccessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws
|
|
func witness(accessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws
|
|
|
|
}
|