9 lines
303 B
Swift
9 lines
303 B
Swift
import Foundation
|
|
import LocalData
|
|
|
|
/// Identifiers for custom key material sources used by the sample.
|
|
/// LocalData uses these identifiers to look up registered providers.
|
|
nonisolated enum SampleKeyMaterialSources {
|
|
nonisolated static let external = KeyMaterialSource(id: "sample.external.key")
|
|
}
|