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(-)
10 lines
159 B
Swift
10 lines
159 B
Swift
import Foundation
|
|
|
|
public struct KeyMaterialSource: Hashable, Sendable {
|
|
public let id: String
|
|
|
|
public init(id: String) {
|
|
self.id = id
|
|
}
|
|
}
|