14 lines
208 B
Swift
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
|
|
}
|