mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-05-10 13:07:22 +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 }
|
|
|
|
}
|