mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-20 07:54:10 -05:00
14 lines
422 B
Swift
14 lines
422 B
Swift
import Foundation
|
|
|
|
public struct EncryptionKeyDerivationParams: Codable {
|
|
public var encryptionType: String?
|
|
public var encryptionSettings: String?
|
|
public var salt: String?
|
|
|
|
public init(encryptionType: String? = nil, encryptionSettings: String? = nil, salt: String? = nil) {
|
|
self.encryptionType = encryptionType
|
|
self.encryptionSettings = encryptionSettings
|
|
self.salt = salt
|
|
}
|
|
}
|