LocalData/Sources/LocalData/Models/KeyMaterialSource.swift
Matt Bruce 8f3fc8da51 Update Models, Protocols, Services + tests + docs
Summary:
- Sources: Models, Protocols, Services
- Tests: EncryptionHelperTests.swift
- Docs: README
- Added symbols: struct RemoteKeyProvider, func keyMaterial, struct KeyMaterialSource, protocol KeyMaterialProviding, func registerKeyMaterialProvider, struct StaticKeyMaterialProvider

Stats:
- 6 files changed, 104 insertions(+), 14 deletions(-)
2026-01-18 14:53:26 -06:00

10 lines
159 B
Swift

import Foundation
public struct KeyMaterialSource: Hashable, Sendable {
public let id: String
public init(id: String) {
self.id = id
}
}