-
Notifications
You must be signed in to change notification settings - Fork 1
/
crypto3.zk.podspec.json
87 lines (87 loc) · 2.74 KB
/
crypto3.zk.podspec.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "crypto3.zk",
"version": "0.1.0",
"summary": "=nil; Crypto3 C++ Cryptography Suite Cipher VDF",
"description": "Crypto3.VDF library extends the =nil; Foundation's cryptography suite and provides a set of verifiable delay functions implemented in way C++ standard library implies: concepts, algorithms, predictable behavior, latest standard features support and clean architecture without compromising security and performance.",
"homepage": "http://crypto3.nil.foundation/projects/crypto3",
"license": "Boost Software License",
"authors": {
"Mikhail Komarov": "nemo@nil.foundation"
},
"platforms": {
"ios": "5.0",
"osx": "10.7"
},
"source": {
"git": "https://github.com/nilfoundation/vdf.git",
"branch": "master"
},
"xcconfig": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++14",
"CLANG_CXX_LIBRARY": "libc++",
"HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/include/\""
},
"subspecs": [
{
"name": "include",
"subspecs": [
{
"name": "nil",
"subspecs": [
{
"name": "crypto3",
"subspecs": [
{
"name": "detail",
"source_files": [
"include/nil/crypto3/detail/*.{hpp}"
]
},
{
"name": "vdf",
"source_files": [
"include/nil/crypto3/vdf/*.{hpp}"
],
"subspecs": [
{
"name": "algorithm",
"source_files": [
"include/nil/crypto3/vdf/algorithm/*.{hpp}"
]
},
{
"name": "adaptor",
"source_files": [
"include/nil/crypto3/vdf/adaptor/*.{hpp}"
]
},
{
"name": "accumulators",
"source_files": [
"include/nil/crypto3/vdf/accumulators/*.{hpp}"
],
"subspecs": [
{
"name": "parameters",
"source_files": [
"include/nil/crypto3/vdf/accumulators/parameters/*.{hpp}"
]
}
]
},
{
"name": "detail",
"source_files": [
"include/nil/crypto3/vdf/detail/*.{hpp}"
]
}
]
}
]
}
]
}
]
}
]
}