punchnet-macos/Tun/Punchnet/Cipher/CCDataCipher.swift
2026-03-17 16:19:51 +08:00

14 lines
234 B
Swift

//
// AESCipher.swift
// sdlan
//
// Created by on 2025/7/14.
//
import Foundation
public protocol CCDataCipher {
func decrypt(cipherText: Data) throws -> Data
func encrypt(plainText: Data) throws -> Data
}