13 lines
154 B
Swift
13 lines
154 B
Swift
|
//
|
||
|
// OTPAlgorithm.swift
|
||
|
// OTPKit
|
||
|
//
|
||
|
// Created by Shadowfacts on 8/21/21.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public enum OTPAlgorithm: Codable {
|
||
|
case SHA1
|
||
|
}
|