mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-11-09 03:40:56 +00:00
* WIP. * WIP * WIP Edit * Key selection. * WIP * WIP * Proxy through * WIP * Remove verify. * Migration. * Comment * Add param * Semi-offering key * Ignore updates if test build. * Fix rsa public key gen * Messily fix RSA * Remove 1024 bit rsa * Cleanup * Cleanup * Clean out MLDSA refs for now * Dump notifier changes * Put back UI tweaks * Fixes.
17 lines
312 B
Swift
17 lines
312 B
Swift
import Foundation
|
|
import SecretKit
|
|
|
|
extension SmartCard {
|
|
|
|
/// An implementation of Secret backed by a Smart Card.
|
|
public struct Secret: SecretKit.Secret {
|
|
|
|
public let id: Data
|
|
public let name: String
|
|
public let publicKey: Data
|
|
public var attributes: Attributes
|
|
|
|
}
|
|
|
|
}
|