gpt4 book ai didi

swift - 使用 SwiftyRSA 的 RSA 加密

转载 作者:行者123 更新时间:2023-11-28 14:25:43 25 4
gpt4 key购买 nike

我正在使用 SwiftyRSA 在我的应用程序中使用 RSA 加密。我从服务器接收到一个字符串格式的公钥,我想使用该字符串创建我的公钥,但我无法实现。任何帮助将不胜感激。

最佳答案

最后,我能够通过在 swift """中使用此字符串文字创建 .pem 文件来解决此问题,从而解决了问题。

例子如下:

// This creates a multiline public key
fileprivate var pbKey = """
blah blah
blah blah
public key
"""

// Then you use that public key in your pem file
let publicKey = try PublicKey(pemEncoded: pbKey)
let clear = try ClearMessage(string: "Clear Text", using: .utf8)
let encrypted = try clear.encrypted(with: publicKey, padding: .OAEP)

关于swift - 使用 SwiftyRSA 的 RSA 加密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51597672/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com