punchnet-macos/Tun/Punchnet/AESCipher.swift
2025-08-25 15:43:17 +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
}