secretive/SecretKit/Secret.swift

7 lines
114 B
Swift
Raw Normal View History

2020-02-19 04:52:00 +00:00
public protocol Secret: Identifiable, Hashable {
2020-03-04 07:14:38 +00:00
var name: String { get }
var publicKey: Data { get }
2020-02-19 04:52:00 +00:00
}