swiftlib_sdlan/Sources/sdlan/RSACipher.swift
2025-07-15 00:17:20 +08:00

14 lines
201 B
Swift

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