mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 13:37:07 +00:00
17 lines
280 B
Swift
17 lines
280 B
Swift
import Foundation
|
|
import Combine
|
|
|
|
extension SmartCard {
|
|
|
|
public struct Secret: SecretKit.Secret {
|
|
|
|
public let id: Data
|
|
public let name: String
|
|
public let algorithm: Algorithm
|
|
public let keySize: Int
|
|
public let publicKey: Data
|
|
|
|
}
|
|
|
|
}
|