1
0
mirror of https://github.com/maxgoedjen/secretive.git synced 2025-05-17 03:26:59 +00:00
secretive/SecretKit/SmartCard/SmartCardSecret.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
}
}