13 lines
159 B
Swift
13 lines
159 B
Swift
//
|
|
// KdfAlgorithm.swift
|
|
// native_crypto_ios
|
|
//
|
|
// Created by Hugo Pointcheval on 25/05/2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum KdfAlgorithm {
|
|
case pbkdf2
|
|
}
|