[Add] kit_extension 0.4.3
[CocoaPods.git] / Specs / 2 / 7 / a / secp256k1_axe / 0.1.0 / secp256k1_axe.podspec.json
blob268ee72007e3b9c8cacc0f3634cef9020bba318c
2   "name": "secp256k1_axe",
3   "version": "0.1.0",
4   "summary": "Optimized C library for EC operations on curve secp256k1",
5   "description": "Optimized C library for EC operations on curve secp256k1.\n\nConfigured with following defines: `USE_BASIC_CONFIG`, `ENABLE_MODULE_RECOVERY`, `DETERMINISTIC` and `WORDS_BIGENDIAN`\n\n* secp256k1 ECDSA signing/verification and key generation.\n* Adding/multiplying private/public keys.\n* Serialization/parsing of private keys, public keys, signatures.\n* Constant time, constant memory access signing and pubkey generation.\n* Derandomized DSA (via RFC6979 or with a caller provided function.)\n* Very efficient implementation.",
6   "homepage": "https://github.com/axerunners/axesync-iOS",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "AXErunners": "info@axerunners.com"
13   },
14   "source": {
15     "git": "https://github.com/bitcoin-core/secp256k1.git",
16     "commit": "84973d393ac240a90b2e1a6538c5368202bc2224"
17   },
18   "platforms": {
19     "ios": "9.0"
20   },
21   "libraries": "c++",
22   "source_files": [
23     "src/*.{h,c}",
24     "src/modules/**/*.h",
25     "include/*.h"
26   ],
27   "exclude_files": [
28     "src/bench*",
29     "src/test*",
30     "src/gen_context.c",
31     "src/libsecp256k1-config.h",
32     "src/**/test*"
33   ],
34   "public_header_files": "include/*.h",
35   "private_header_files": "src/*.h",
36   "header_mappings_dir": ".",
37   "pod_target_xcconfig": {
38     "HEADER_SEARCH_PATHS": "${PODS_ROOT}/**"
39   },
40   "prefix_header_contents": "/* AXE specific secp256k1 configuration */\n#define USE_BASIC_CONFIG 1\n#define ENABLE_MODULE_RECOVERY 1\n#define DETERMINISTIC          1\n#if __BIG_ENDIAN__\n#define WORDS_BIGENDIAN        1\n#endif\n\n#include \"basic-config.h\""