forked from NilFoundation/crypto3-kdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crypto3.kdf.podspec.json
132 lines (132 loc) · 4.53 KB
/
crypto3.kdf.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "crypto3.kdf",
"version": "0.1.0",
"summary": "=nil; Crypto3 C++ Cryptography Suite KDF",
"description": "Crypto3.KDF library extends the =nil; Foundation's cryptography suite and provides a set of key derivation 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": "[email protected]"
},
"platforms": {
"ios": "5.0",
"osx": "10.7"
},
"source": {
"git": "https://github.com/nilfoundation/kdf.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": "kdf",
"source_files": [
"include/nil/crypto3/kdf/*.{hpp}"
],
"subspecs": [
{
"name": "algorithm",
"source_files": [
"include/nil/crypto3/kdf/algorithm/*.{hpp}"
]
},
{
"name": "adaptor",
"source_files": [
"include/nil/crypto3/kdf/adaptor/*.{hpp}"
]
},
{
"name": "accumulators",
"source_files": [
"include/nil/crypto3/kdf/accumulators/*.{hpp}"
]
},
{
"name": "detail",
"subspecs": [
{
"name": "hkdf",
"source_files": [
"include/nil/crypto3/kdf/detail/hkdf/*.{hpp}"
]
},
{
"name": "kdf1",
"source_files": [
"include/nil/crypto3/kdf/detail/kdf1/*.{hpp}"
]
},
{
"name": "kdf2",
"source_files": [
"include/nil/crypto3/kdf/detail/kdf2/*.{hpp}"
]
},
{
"name": "kdf_iso18033",
"source_files": [
"include/nil/crypto3/kdf/detail/kdf_iso18033/*.{hpp}"
]
},
{
"name": "prf_tls",
"source_files": [
"include/nil/crypto3/kdf/detail/prf_tls/*.{hpp}"
]
},
{
"name": "prf_x942",
"source_files": [
"include/nil/crypto3/kdf/detail/prf_x942/*.{hpp}"
]
},
{
"name": "sp800_56a",
"source_files": [
"include/nil/crypto3/kdf/detail/sp800_56a/*.{hpp}"
]
},
{
"name": "sp800_56c",
"source_files": [
"include/nil/crypto3/kdf/detail/sp800_56c/*.{hpp}"
]
},
{
"name": "sp800_108",
"source_files": [
"include/nil/crypto3/kdf/detail/sp800_108/*.{hpp}"
]
}
]
}
]
}
]
}
]
}
]
}
]
}