mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 21:47:08 +00:00
7 lines
114 B
Swift
7 lines
114 B
Swift
public protocol Secret: Identifiable, Hashable {
|
|
|
|
var name: String { get }
|
|
var publicKey: Data { get }
|
|
|
|
}
|