-
Notifications
You must be signed in to change notification settings - Fork 2
/
crypto3.pbkdf.podspec.json
98 lines (98 loc) · 3.22 KB
/
crypto3.pbkdf.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
{
"name": "crypto3.pbkdf",
"version": "0.1.0",
"summary": "=nil; Crypto3 C++ Cryptography Suite Cipher PBKDF",
"description": "Crypto3.PBKDF library extends the =nil; Foundation's cryptography suite and provides a set of password-based 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/pbkdf.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": "pbkdf",
"source_files": [
"include/nil/crypto3/pbkdf/*.{hpp}"
],
"subspecs": [
{
"name": "algorithm",
"source_files": [
"include/nil/crypto3/pbkdf/algorithm/*.{hpp}"
]
},
{
"name": "accumulators",
"source_files": [
"include/nil/crypto3/pbkdf/accumulators/*.{hpp}"
],
"subspecs": [
{
"name": "parameters",
"source_files": [
"include/nil/crypto3/pbkdf/accumulators/parameters/*.{hpp}"
]
}
]
},
{
"name": "detail",
"subspecs": [
{
"name": "pbkdf1",
"source_files": [
"include/nil/crypto3/pbkdf/detail/pbkdf1/*.{hpp}"
]
},
{
"name": "pbkdf2",
"source_files": [
"include/nil/crypto3/pbkdf/detail/pbkdf2/*.{hpp}"
]
},
{
"name": "pgp_s2k",
"source_files": [
"include/nil/crypto3/pbkdf/detail/pgp_s2k/*.{hpp}"
]
}
]
}
]
}
]
}
]
}
]
}
]
}