punchnet-macos/Tun/Cipher/RSACipher.swift
2026-05-21 14:39:41 +08:00

14 lines
208 B
Swift

//
// RSACipher.swift
// sdlan
//
// Created by on 2025/7/14.
//
import Foundation
public protocol RSACipher {
var pubKey: String {get set}
func decode(data: Data) throws -> Data
}