This repository was archived by the owner on Feb 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcrypto3.modes.podspec.json
More file actions
61 lines (61 loc) · 1.78 KB
/
crypto3.modes.podspec.json
File metadata and controls
61 lines (61 loc) · 1.78 KB
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
{
"name": "crypto3.modes",
"version": "0.1.0",
"summary": "=nil; Crypto3 C++ Cryptography Suite Cipher Modes",
"description": "Crypto3.Mac library extends the =nil; Foundation's cryptography suite and provides a set of cipher modes 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/modes.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": "modes",
"source_files": [
"include/nil/crypto3/modes/*.{hpp}"
],
"subspecs": [
{
"name": "aead",
"source_files": [
"include/nil/crypto3/modes/aead/*.{hpp}"
]
}
]
}
]
}
]
}
]
}
]
}