CocoaSecurity
CocoaSecurity copied to clipboard
Encrypt/Decrypt: AES. Hash: MD5, SHA(SHA1, SHA224, SHA256, SHA384, SHA512). Encode/Decode: Base64, Hex.
Using system method to base64, and check OS version.
As noted in https://github.com/nicklockwood/Base64 readme. "In the iOS 7 and Mac OS 10.9 SDKs, Apple introduced new base64 methods on NSData that make it unnecessary to use a 3rd party...
Is it possible to add RSA support?
When i try to decrypt big file(around 100mb) that time it shows around double sized memory allocation when i profile the application for memory allocation. Can you guide me if...
I have big size file to decrypt. any way for asynchronous decryption? It hangs execution un till decryption completed.
Currently CS uses malloc() to allocate memory. This allocation is not zeroed and old data resides there. While most operations will succeed and overwrite the data, the best practice (especially...