鏡像自
https://github.com/maxgoedjen/secretive.git
已同步 2026-09-15 04:38:02 +02:00
10 行
371 B
Swift
10 行
371 B
Swift
import Foundation
|
|
import SecretKit
|
|
|
|
public protocol SigningWitness {
|
|
|
|
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
|
|
|
|
}
|