https://github.com/novasamatech/crypto-ios
Common crypto algorithms used in iOS applications
https://github.com/novasamatech/crypto-ios
Last synced: about 2 months ago
JSON representation
Common crypto algorithms used in iOS applications
- Host: GitHub
- URL: https://github.com/novasamatech/crypto-ios
- Owner: novasamatech
- License: apache-2.0
- Created: 2025-01-08T20:07:41.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-25T11:52:24.000Z (4 months ago)
- Last Synced: 2025-02-12T09:51:21.290Z (4 months ago)
- Language: Objective-C
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
iOS crypto algorithms wrappers mainly used in Nova Wallet and Substrate SDK.
## Usage with Cocoapods
```
pod 'NovaCrypto', :git => 'https://github.com/novasamatech/Crypto-iOS.git', :tag => '0.1.0'
pod 'secp256k1.c', :git => 'https://github.com/novasamatech/secp256k1.c', :tag => '0.1.3'
pod 'sr25519.c', :git => 'https://github.com/novasamatech/sr25519.c', :tag => '0.1.0'
pod 'ed25519.c', :git => 'https://github.com/novasamatech/ed25519.c', :tag => '0.1.1'
pod 'blake2.c', :git => 'https://github.com/novasamatech/blake2.c', :tag => '0.1.0'
```Note that implementation of the several algorithms used by NovaCrypto must be manually provided from suggested novasama repositories.
## Usage with Swift Package Manager
Add NovaCrypto to your package dependency
```
.package(url: "https://github.com/novasamatech/Crypto-iOS", branch: "master")
```or to your project dependency
```
https://github.com/novasamatech/Crypto-iOS
```