blob: 9582d692fd1d2c67c2937b828a7c67de12cc4bd9 [file] [log] [blame]
{
"name": "IrohaCrypto",
"version": "0.4.3",
"summary": "Provides object oriented wrappers for C/C++ crypto functions used by Iroha blockchain.",
"homepage": "https://github.com/soramitsu",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"ERussel": "emkil.russel@gmail.com"
},
"source": {
"git": "https://github.com/ERussel/IrohaCrypto.git",
"tag": "0.4.3"
},
"platforms": {
"ios": "11.0"
},
"pod_target_xcconfig": {
"CLANG_WARN_DOCUMENTATION_COMMENTS": "NO"
},
"testspecs": [
{
"name": "Tests",
"test_type": "unit",
"source_files": "Tests/**/*.{h,m}",
"resources": [
"Tests/**/*.json"
]
}
],
"subspecs": [
{
"name": "Common",
"source_files": "IrohaCrypto/Classes/Common/**/*",
"public_header_files": "IrohaCrypto/Classes/Common/**/*.h"
},
{
"name": "Iroha",
"dependencies": {
"IrohaCrypto/Common": [
]
},
"source_files": [
"IrohaCrypto/Classes/Iroha/**/*",
"IrohaCryptoImp/**/*.h"
],
"public_header_files": "IrohaCrypto/Classes/Iroha/**/*.h",
"private_header_files": "IrohaCryptoImp/**/*.h",
"vendored_libraries": "IrohaCryptoImp/libed25519.a",
"preserve_paths": "IrohaCryptoImp/**/*.h"
},
{
"name": "BIP39",
"dependencies": {
"IrohaCrypto/Common": [
]
},
"source_files": "IrohaCrypto/Classes/BIP39/**/*",
"public_header_files": "IrohaCrypto/Classes/BIP39/**/*.h"
},
{
"name": "Scrypt",
"dependencies": {
"IrohaCrypto/Common": [
],
"scrypt.c": [
"~> 0.1"
]
},
"source_files": "IrohaCrypto/Classes/Scrypt/**/*",
"public_header_files": "IrohaCrypto/Classes/Scrypt/**/*.h"
},
{
"name": "sr25519",
"dependencies": {
"IrohaCrypto/blake2": [
],
"IrohaCrypto/Common": [
],
"IrohaCrypto/BIP39": [
]
},
"source_files": [
"IrohaCrypto/Classes/sr25519/**/*",
"sr25519Imp/**/*.h"
],
"public_header_files": "IrohaCrypto/Classes/sr25519/**/*.h",
"private_header_files": "sr25519Imp/**/*.h",
"vendored_libraries": "sr25519Imp/libsr25519crust.a",
"preserve_paths": "sr25519Imp/**/*.h"
},
{
"name": "blake2",
"source_files": [
"IrohaCrypto/Classes/blake2/**/*",
"blake2Imp/**/*.h"
],
"public_header_files": "IrohaCrypto/Classes/blake2/**/*.h",
"private_header_files": "blake2sImp/**/*.h",
"vendored_libraries": "blake2Imp/libblake2.a",
"preserve_paths": "blake2Imp/**/*.h"
}
]
}