热门搜索 :
考研考公
您的当前位置:首页正文

开源框架 RSA_Swift

来源:东饰资讯网

RSA_Swift

写 初衷?

githubSwift 版本的 RSA 加密/解密框架也有,但最近使用的几个,总是会出现这样或那样的问题,所以就写了这个框架,附带的加上比较常见的功能:字符串的 MD5、文件的 MD5 值的获取。

对于文件的 MD5 值的获取,是将文件分块读出并且计算 MD5 值的方法,有别于文件一次性读出并且计算 MD5 值的方法。

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

pod 'RSA_Swift'

使用姿势

rsa 加密字符串和解密字符串

/// 注:rsa 加密 Data 和解密 Data 方法使用与`rsa 加密字符串和解密字符串`类似,这里就不写示例代码了
let filePath = Bundle.main.path(forResource: "public_key", ofType: "der")
        
let encryptString = "abcdefg"
print("要加密的字符串:\(encryptString)")
        
/// Encrypt
RSA.rsaEncrypt(filePath, encryptString) { (encryptedString) in
    print("加密后的字符串:\(encryptedString ?? "")")
            
    let filePath1 = Bundle.main.path(forResource: "private_key.p12", ofType: nil)
    /// Decrypt
    RSA.rsaDecrypt(filePath1, "ios", encryptedString, { (decryptedString) in
        print("解密后的字符串:\(decryptedString ?? "")")
    })
}

获取文件的 MD5

guard let filePath = Bundle.main.path(forResource: "test_file_md5", ofType: "png")
        else {
    return
}
print("文件的 MD5 值:\(filePath.md5_File() ?? "")")

字符串的 MD5

let str = "字符串的MD5"
print("字符串的MD5:\(str.md5())")

License

RSA_Swift is available under the MIT license. See the LICENSE file for more info.

Author

如果你有什么建议,可以关注我的公众号:iOS开发者进阶,直接留言,留言必回。

更多文章

Top