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