SecrecySwift icon indicating copy to clipboard operation
SecrecySwift copied to clipboard

AES/RSA/MD2/MD5/SHA1/SHA128/SHA384/SHA512 in Swift

Results 5 SecrecySwift issues
Sort by recently updated
recently updated
newest added

Xcode 9.3, Swift 4项目, 引入此项目,按readme中的直接部署源码的方式已无法正常运行。 解决办法: 1.删除CommonCrypto文件夹,在项目 Targets 的 Build Settings 中 Import Paths 中删除 CommonCrypto, 在 Library Search Path 中删除 /usr/lib/system 2.在自己项目的xxx-Bridging-Header.h文件中,#import 3.删除此项目中出现的import CommonCrypto,成功在真机上运行。 Xcode 9.3, Swift 4, following...

In original code, run the demo, AES decrypt from Hex encoder will return nil. i change the code that get data from HexString. now, AES decrypt from Hex encoder return...

分组密码有五种工作体制: 1.电码本模式(Electronic Codebook Book (ECB));[readme 写的是==> EBC] 2.密码分组链接模式(Cipher Block Chaining (CBC)); 3.计算器模式(Counter (CTR)); 4.密码反馈模式(Cipher FeedBack (CFB)); 5.输出反馈模式(Output FeedBack (OFB))