https://github.com/keepworks/kwswiftcryptowrapper
Easy to use Crypto wrapper using CryptoSwift, SwiftyRSA.
https://github.com/keepworks/kwswiftcryptowrapper
aes crypto decryption encryption rsa swift
Last synced: 9 months ago
JSON representation
Easy to use Crypto wrapper using CryptoSwift, SwiftyRSA.
- Host: GitHub
- URL: https://github.com/keepworks/kwswiftcryptowrapper
- Owner: keepworks
- Created: 2020-04-20T06:07:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T06:13:48.000Z (about 6 years ago)
- Last Synced: 2025-08-25T06:51:22.771Z (10 months ago)
- Topics: aes, crypto, decryption, encryption, rsa, swift
- Language: Swift
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# KWSwiftCryptoWrapper
Easy to use Crypto wrapper using CryptoSwift, SwiftyRSA.
## What can you do easily?
- Generate public private key pair (RSA)
- Decrypt content with RSA private key
- Encrypt content with AES symmetric key
- Decrypt content with AES symmetric key
## Dependencies
Add these pods in your podfile to use this wrapper
```
pod 'CryptoSwift', '1.0.0'
pod 'SwiftyRSA', '1.5.0'
```
[CryptoSwift](https://github.com/krzyzanowskim/CryptoSwift), [SwiftyRSA](https://github.com/TakeScoop/SwiftyRSA)
## Usage
The method names are self explanatory. Check CryptoSwiftManager.swift
## Author
KeepWorks, ios@keepworks.com
## Credits
KWSwiftCryptoWrapper is owned and maintained by [KeepWorks](http://www.keepworks.com/).
[](http://www.keepworks.com/)
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/keepworks/KWSwiftCryptoWrapper.
## License
KWSwiftCryptoWrapper is available under the [MIT License](http://opensource.org/licenses/MIT). See the [License](https://github.com/keepworks/KWSwiftCryptoWrapper/blob/master/LICENSE) file for more info.