RSA_Swift 是一款轻量级的 Swift
版本的框架,框架功能包括:RSA
加密/解密字符串、RSA
加密/解密 Data
、字符串的 MD5
、文件的 MD5
值的获取。
github
上 Swift
版本的 RSA
加密/解密框架也有,但最近使用的几个,总是会出现这样或那样的问题,所以就写了这个框架,附带的加上比较常见的功能:字符串的 MD5
、文件的 MD5
值的获取。
对于文件的 MD5
值的获取,是将文件分块读出并且计算 MD5
值的方法,有别于文件一次性读出并且计算 MD5
值的方法。
To run the example project, clone the repo, and run pod install
from the Example directory first.
RSA_Swift is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'RSA_Swift'
/// 注: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 ?? "")")
})
}
guard let filePath = Bundle.main.path(forResource: "test_file_md5", ofType: "png")
else {
return
}
print("文件的 MD5 值:\(filePath.md5_File() ?? "")")
let str = "字符串的MD5"
print("字符串的MD5:\(str.md5())")
RSA_Swift is available under the MIT license. See the LICENSE file for more info.
MGJRouter_Swift:一个高效/灵活的 iOS
Swift
版 URL Router
,完全实现了蘑菇街 Object-C
版 MGJRouter
的所有功能。虽然 github
上也有一款参照 MGJRouter
仿写的 Swift
版框架,但是却去掉了 MGJRouter
的很多功能,不实用。
XWCountDownButton_OC:这是一个 Object-C
版本的小框架,可以使用 pod
,应用于短信验证码倒计时。
XWCountDownButton:这是一个 Swift
版本的小框架,可以使用 pod
,应用于短信验证码倒计时。
如果你有什么建议,可以关注我的公众号:iOS开发者进阶
,直接留言,留言必回。