swiftlib_sdlan/Sources/sdlan/AESCipher.swift
2025-07-15 00:17:20 +08:00

14 lines
240 B
Swift

//
// AESCipher.swift
// sdlan
//
// Created by on 2025/7/14.
//
import Foundation
protocol AESCipher {
func decypt(aesKey: Data, data: Data) throws -> Data
func encrypt(aesKey: Data, data: Data) throws -> Data
}