swiftlib_sdlan/Sources/sdlan/AESCipher.swift
2025-07-16 15:49:40 +08:00

14 lines
247 B
Swift

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