From 52327453b9f9e0c543056ea2ab2661798508771b Mon Sep 17 00:00:00 2001 From: Andrei Malashkin Date: Fri, 20 Sep 2024 16:58:15 +0200 Subject: [PATCH] remove modules json files --- .../libs/algebra/crypto3.algebra.podspec.json | 54 ----- crypto3/libs/block/crypto3.block.podspec.json | 221 ------------------ crypto3/libs/codec/crypto3.codec.podspec.json | 87 ------- crypto3/libs/hash/crypto3.hash.podspec.json | 161 ------------- crypto3/libs/kdf/crypto3.kdf.podspec.json | 132 ----------- crypto3/libs/mac/crypto3.mac.podspec.json | 117 ---------- crypto3/libs/math/crypto3.math.podspec.json | 87 ------- crypto3/libs/modes/crypto3.modes.podspec.json | 61 ----- .../passhash/crypto3.passhash.podspec.json | 92 -------- crypto3/libs/pbkdf/crypto3.pbkdf.podspec.json | 98 -------- crypto3/libs/pkpad/crypto3.pkpad.podspec.json | 75 ------ .../libs/stream/crypto3.stream.podspec.json | 104 --------- .../threshold/crypto3.threshold.podspec.json | 61 ----- crypto3/libs/vdf/crypto3.vdf.podspec.json | 67 ------ crypto3/libs/zk/crypto3.zk.podspec.json | 87 ------- 15 files changed, 1504 deletions(-) delete mode 100644 crypto3/libs/algebra/crypto3.algebra.podspec.json delete mode 100644 crypto3/libs/block/crypto3.block.podspec.json delete mode 100644 crypto3/libs/codec/crypto3.codec.podspec.json delete mode 100644 crypto3/libs/hash/crypto3.hash.podspec.json delete mode 100644 crypto3/libs/kdf/crypto3.kdf.podspec.json delete mode 100644 crypto3/libs/mac/crypto3.mac.podspec.json delete mode 100644 crypto3/libs/math/crypto3.math.podspec.json delete mode 100644 crypto3/libs/modes/crypto3.modes.podspec.json delete mode 100644 crypto3/libs/passhash/crypto3.passhash.podspec.json delete mode 100644 crypto3/libs/pbkdf/crypto3.pbkdf.podspec.json delete mode 100644 crypto3/libs/pkpad/crypto3.pkpad.podspec.json delete mode 100644 crypto3/libs/stream/crypto3.stream.podspec.json delete mode 100644 crypto3/libs/threshold/crypto3.threshold.podspec.json delete mode 100644 crypto3/libs/vdf/crypto3.vdf.podspec.json delete mode 100644 crypto3/libs/zk/crypto3.zk.podspec.json diff --git a/crypto3/libs/algebra/crypto3.algebra.podspec.json b/crypto3/libs/algebra/crypto3.algebra.podspec.json deleted file mode 100644 index f45d4d26c1..0000000000 --- a/crypto3/libs/algebra/crypto3.algebra.podspec.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "crypto3.algebra", - "version": "0.1.0", - "summary": "=nil; Foundation C++ Computer Algebra System Finite Fields and Elliptic Curves", - "description": "Algebra system provides a set of Finite Fields, Elliptic Curves and Pairings evaluation algorithms 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", - "Nikita Kaskov": "nbering@nil.foundation" - }, - "platforms": { - "ios": "5.0", - "osx": "10.7" - }, - "source": { - "git": "https://github.com/nilfoundation/algebra.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "algebra", - "source_files": [ - "include/nil/crypto3/algebra/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] -} diff --git a/crypto3/libs/block/crypto3.block.podspec.json b/crypto3/libs/block/crypto3.block.podspec.json deleted file mode 100644 index 8bfc7839e2..0000000000 --- a/crypto3/libs/block/crypto3.block.podspec.json +++ /dev/null @@ -1,221 +0,0 @@ -{ - "name": "crypto3.block", - "version": "0.1.0", - "summary": "=nil; Crypto3 C++ Cryptography Suite Block Ciphers", - "description": "Crypto3.Block library extends the =nil; Foundation's cryptography suite and provides a set of block ciphers 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/block.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "block", - "source_files": [ - "include/nil/crypto3/block/*.{hpp}" - ], - "subspecs": [ - { - "name": "algorithm", - "source_files": [ - "include/nil/crypto3/block/algorithm/*.{hpp}" - ] - }, - { - "name": "adaptor", - "source_files": [ - "include/nil/crypto3/block/adaptor/*.{hpp}" - ] - }, - { - "name": "accumulators", - "source_files": [ - "include/nil/crypto3/block/accumulators/*.{hpp}" - ], - "subspecs": [ - { - "name": "parameters", - "source_files": [ - "include/nil/crypto3/block/accumulators/parameters/*.{hpp}" - ] - } - ] - }, - { - "name": "detail", - "source_files": [ - "include/nil/crypto3/block/detail/*.{hpp}" - ], - "subspecs": [ - { - "name": "aria", - "source_files": [ - "include/nil/crypto3/block/detail/aria/*.{hpp}" - ] - }, - { - "name": "blowfish", - "source_files": [ - "include/nil/crypto3/block/detail/blowfish/*.{hpp}" - ] - }, - { - "name": "camellia", - "source_files": [ - "include/nil/crypto3/block/detail/camellia/*.{hpp}" - ] - }, - { - "name": "cast", - "source_files": [ - "include/nil/crypto3/block/detail/cast/*.{hpp}" - ] - }, - { - "name": "des", - "source_files": [ - "include/nil/crypto3/block/detail/des/*.{hpp}" - ] - }, - { - "name": "gost_28147_89", - "source_files": [ - "include/nil/crypto3/block/detail/gost_28147_89/*.{hpp}" - ] - }, - { - "name": "idea", - "source_files": [ - "include/nil/crypto3/block/detail/idea/*.{hpp}" - ] - }, - { - "name": "kasumi", - "source_files": [ - "include/nil/crypto3/block/detail/kasumi/*.{hpp}" - ] - }, - { - "name": "md4", - "source_files": [ - "include/nil/crypto3/block/detail/md4/*.{hpp}" - ] - }, - { - "name": "md5", - "source_files": [ - "include/nil/crypto3/block/detail/md5/*.{hpp}" - ] - }, - { - "name": "misty1", - "source_files": [ - "include/nil/crypto3/block/detail/misty1/*.{hpp}" - ] - }, - { - "name": "noekeon", - "source_files": [ - "include/nil/crypto3/block/detail/noekeon/*.{hpp}" - ] - }, - { - "name": "rijndael", - "source_files": [ - "include/nil/crypto3/block/detail/rijndael/*.{hpp}" - ] - }, - { - "name": "seed", - "source_files": [ - "include/nil/crypto3/block/detail/seed/*.{hpp}" - ] - }, - { - "name": "serpent", - "source_files": [ - "include/nil/crypto3/block/detail/serpent/*.{hpp}" - ] - }, - { - "name": "shacal", - "source_files": [ - "include/nil/crypto3/block/detail/shacal/*.{hpp}" - ] - }, - { - "name": "sm4", - "source_files": [ - "include/nil/crypto3/block/detail/sm4/*.{hpp}" - ] - }, - { - "name": "streebog", - "source_files": [ - "include/nil/crypto3/block/detail/streebog/*.{hpp}" - ] - }, - { - "name": "threefish", - "source_files": [ - "include/nil/crypto3/block/detail/threefish/*.{hpp}" - ] - }, - { - "name": "twofish", - "source_files": [ - "include/nil/crypto3/block/detail/twofish/*.{hpp}" - ] - }, - { - "name": "utilities", - "source_files": [ - "include/nil/crypto3/block/detail/utilities/*.{hpp}" - ] - }, - { - "name": "xtea", - "source_files": [ - "include/nil/crypto3/block/detail/xtea/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/codec/crypto3.codec.podspec.json b/crypto3/libs/codec/crypto3.codec.podspec.json deleted file mode 100644 index 1bdc8f1e81..0000000000 --- a/crypto3/libs/codec/crypto3.codec.podspec.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "name": "crypto3.codec", - "version": "0.1.0", - "summary": "=nil; Crypto3 C++ Cryptography Suite Codecs", - "description": "Crypto3.Codec library extends the =nil; Foundation's cryptography suite and provides a set of codecs 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/codec.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "codec", - "source_files": [ - "include/nil/crypto3/codec/*.{hpp}" - ], - "subspecs": [ - { - "name": "algorithm", - "source_files": [ - "include/nil/crypto3/codec/algorithm/*.{hpp}" - ] - }, - { - "name": "adaptor", - "source_files": [ - "include/nil/crypto3/codec/adaptor/*.{hpp}" - ] - }, - { - "name": "accumulators", - "source_files": [ - "include/nil/crypto3/codec/accumulators/*.{hpp}" - ], - "subspecs": [ - { - "name": "parameters", - "source_files": [ - "include/nil/crypto3/codec/accumulators/parameters/*.{hpp}" - ] - } - ] - }, - { - "name": "detail", - "source_files": [ - "include/nil/crypto3/codec/detail/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/hash/crypto3.hash.podspec.json b/crypto3/libs/hash/crypto3.hash.podspec.json deleted file mode 100644 index 23c94a4bcc..0000000000 --- a/crypto3/libs/hash/crypto3.hash.podspec.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "name": "crypto3.hash", - "version": "0.1.0", - "summary": "=nil; Crypto3 C++ Cryptography Suite Hashes", - "description": "Crypto3.Hash library extends the =nil; Foundation's cryptography suite and provides a set of hashes 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/hash.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "hash", - "source_files": [ - "include/nil/crypto3/hash/*.{hpp}" - ], - "subspecs": [ - { - "name": "algorithm", - "source_files": [ - "include/nil/crypto3/hash/algorithm/*.{hpp}" - ] - }, - { - "name": "adaptor", - "source_files": [ - "include/nil/crypto3/hash/adaptor/*.{hpp}" - ] - }, - { - "name": "accumulators", - "source_files": [ - "include/nil/crypto3/hash/accumulators/*.{hpp}" - ], - "subspecs": [ - { - "name": "parameters", - "source_files": [ - "include/nil/crypto3/hash/accumulators/parameters/*.{hpp}" - ] - } - ] - }, - { - "name": "detail", - "source_files": [ - "include/nil/crypto3/hash/detail/*.{hpp}" - ], - "subspecs": [ - { - "name": "adler", - "source_files": [ - "include/nil/crypto3/hash/detail/adler/*.{hpp}" - ] - }, - { - "name": "blake2b", - "source_files": [ - "include/nil/crypto3/hash/detail/blake2b/*.{hpp}" - ] - }, - { - "name": "crc", - "source_files": [ - "include/nil/crypto3/hash/detail/crc/*.{hpp}" - ] - }, - { - "name": "ghash", - "source_files": [ - "include/nil/crypto3/hash/detail/ghash/*.{hpp}" - ] - }, - { - "name": "keccak", - "source_files": [ - "include/nil/crypto3/hash/detail/keccak/*.{hpp}" - ] - }, - { - "name": "ripemd", - "source_files": [ - "include/nil/crypto3/hash/detail/ripemd/*.{hpp}" - ] - }, - { - "name": "sha3", - "source_files": [ - "include/nil/crypto3/hash/detail/sha3/*.{hpp}" - ] - }, - { - "name": "skein", - "source_files": [ - "include/nil/crypto3/hash/detail/skein/*.{hpp}" - ] - }, - { - "name": "sm3", - "source_files": [ - "include/nil/crypto3/hash/detail/sm3/*.{hpp}" - ] - }, - { - "name": "streebog", - "source_files": [ - "include/nil/crypto3/hash/detail/streebog/*.{hpp}" - ] - }, - { - "name": "tiger", - "source_files": [ - "include/nil/crypto3/hash/detail/tiger/*.{hpp}" - ] - }, - { - "name": "whirlpool", - "source_files": [ - "include/nil/crypto3/hash/detail/whirlpool/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/kdf/crypto3.kdf.podspec.json b/crypto3/libs/kdf/crypto3.kdf.podspec.json deleted file mode 100644 index 1d62957b84..0000000000 --- a/crypto3/libs/kdf/crypto3.kdf.podspec.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "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": "nemo@nil.foundation" - }, - "platforms": { - "ios": "5.0", - "osx": "10.7" - }, - "source": { - "git": "https://github.com/nilfoundation/kdf.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/mac/crypto3.mac.podspec.json b/crypto3/libs/mac/crypto3.mac.podspec.json deleted file mode 100644 index 48e8499cb5..0000000000 --- a/crypto3/libs/mac/crypto3.mac.podspec.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "name": "crypto3.mac", - "version": "0.1.0", - "summary": "=nil; Crypto3 C++ Cryptography Suite MAC", - "description": "Crypto3.MAC library extends the =nil; Foundation's cryptography suite and provides a set of message authentication codes 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/mac.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "mac", - "source_files": [ - "include/nil/crypto3/mac/*.{hpp}" - ], - "subspecs": [ - { - "name": "algorithm", - "source_files": [ - "include/nil/crypto3/mac/algorithm/*.{hpp}" - ] - }, - { - "name": "accumulators", - "source_files": [ - "include/nil/crypto3/mac/accumulators/*.{hpp}" - ] - }, - { - "name": "detail", - "source_files": [ - "include/nil/crypto3/mac/detail/*.{hpp}" - ], - "subspecs": [ - { - "name": "cbc_mac", - "source_files": [ - "include/nil/crypto3/mac/detail/cbc_mac/*.{hpp}" - ] - }, - { - "name": "cmac", - "source_files": [ - "include/nil/crypto3/mac/detail/cmac/*.{hpp}" - ] - }, - { - "name": "gmac", - "source_files": [ - "include/nil/crypto3/mac/detail/gmac/*.{hpp}" - ] - }, - { - "name": "hmac", - "source_files": [ - "include/nil/crypto3/mac/detail/hmac/*.{hpp}" - ] - }, - { - "name": "poly1305", - "source_files": [ - "include/nil/crypto3/mac/detail/poly1305/*.{hpp}" - ] - }, - { - "name": "siphash", - "source_files": [ - "include/nil/crypto3/mac/detail/siphash/*.{hpp}" - ] - }, - { - "name": "x919_mac", - "source_files": [ - "include/nil/crypto3/mac/detail/x919_mac/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/math/crypto3.math.podspec.json b/crypto3/libs/math/crypto3.math.podspec.json deleted file mode 100644 index dffd3cdebd..0000000000 --- a/crypto3/libs/math/crypto3.math.podspec.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "name": "cas.fft", - "version": "0.1.0", - "summary": "=nil; Foundation C++ Computer Algebra System Fast Fourier Transforms", - "description": "CAS.FFT library extends the =nil; Foundation's computer algebra system and provides a set of Fast Fourier Transforms evaluation algorithms 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/fft.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "fft", - "source_files": [ - "include/nil/crypto3/fft/*.{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}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/modes/crypto3.modes.podspec.json b/crypto3/libs/modes/crypto3.modes.podspec.json deleted file mode 100644 index 426148648d..0000000000 --- a/crypto3/libs/modes/crypto3.modes.podspec.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "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++17", - "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}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/passhash/crypto3.passhash.podspec.json b/crypto3/libs/passhash/crypto3.passhash.podspec.json deleted file mode 100644 index 0288b17845..0000000000 --- a/crypto3/libs/passhash/crypto3.passhash.podspec.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "name": "crypto3.passhash", - "version": "0.1.0", - "summary": "=nil; Crypto3 C++ Cryptography Suite Cipher Passhash", - "description": "Crypto3.Passhash library extends the =nil; Foundation's cryptography suite and provides a set of password hashing techniques 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/passhash.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "passhash", - "source_files": [ - "include/nil/crypto3/passhash/*.{hpp}" - ], - "subspecs": [ - { - "name": "algorithm", - "source_files": [ - "include/nil/crypto3/passhash/algorithm/*.{hpp}" - ] - }, - { - "name": "accumulators", - "source_files": [ - "include/nil/crypto3/passhash/accumulators/*.{hpp}" - ], - "subspecs": [ - { - "name": "parameters", - "source_files": [ - "include/nil/crypto3/passhash/accumulators/parameters/*.{hpp}" - ] - } - ] - }, - { - "name": "detail", - "subspecs": [ - { - "name": "bcrypt", - "source_files": [ - "include/nil/crypto3/passhash/detail/bcrypt/*.{hpp}" - ] - }, - { - "name": "passhash9", - "source_files": [ - "include/nil/crypto3/passhash/detail/passhash9/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} diff --git a/crypto3/libs/pbkdf/crypto3.pbkdf.podspec.json b/crypto3/libs/pbkdf/crypto3.pbkdf.podspec.json deleted file mode 100644 index 4563144ecf..0000000000 --- a/crypto3/libs/pbkdf/crypto3.pbkdf.podspec.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "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": "nemo@nil.foundation" - }, - "platforms": { - "ios": "5.0", - "osx": "10.7" - }, - "source": { - "git": "https://github.com/nilfoundation/pbkdf.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/pkpad/crypto3.pkpad.podspec.json b/crypto3/libs/pkpad/crypto3.pkpad.podspec.json deleted file mode 100644 index 6ef7c83a37..0000000000 --- a/crypto3/libs/pkpad/crypto3.pkpad.podspec.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "name": "crypto3.pkpad", - "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 public key padding schemes 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/pkpad.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "pkpad", - "source_files": [ - "include/nil/crypto3/pkpad/*.{hpp}" - ], - "subspecs": [ - { - "name": "algorithm", - "source_files": [ - "include/nil/crypto3/pkpad/algorithm/*.{hpp}" - ] - }, - { - "name": "accumulators", - "source_files": [ - "include/nil/crypto3/pkpad/accumulators/*.{hpp}" - ], - "subspecs": [ - { - "name": "parameters", - "source_files": [ - "include/nil/crypto3/pkpad/accumulators/parameters/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/stream/crypto3.stream.podspec.json b/crypto3/libs/stream/crypto3.stream.podspec.json deleted file mode 100644 index 264bdab0d8..0000000000 --- a/crypto3/libs/stream/crypto3.stream.podspec.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "name": "crypto3.stream", - "version": "0.1.0", - "summary": "=nil; Crypto3 C++ Cryptography Suite Cipher Stream", - "description": "Crypto3.Stream library extends the =nil; Foundation's cryptography suite and provides a set of stream ciphers 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/stream.git", - "branch": "master" - }, - "xcconfig": { - "CLANG_CXX_LANGUAGE_STANDARD": "c++17", - "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": "stream", - "source_files": [ - "include/nil/crypto3/stream/*.{hpp}" - ], - "subspecs": [ - { - "name": "algorithm", - "source_files": [ - "include/nil/crypto3/stream/algorithm/*.{hpp}" - ] - }, - { - "name": "accumulators", - "source_files": [ - "include/nil/crypto3/stream/accumulators/*.{hpp}" - ], - "subspecs": [ - { - "name": "parameters", - "source_files": [ - "include/nil/crypto3/stream/accumulators/parameters/*.{hpp}" - ] - } - ] - }, - { - "name": "detail", - "subspecs": [ - { - "name": "chacha", - "source_files": [ - "include/nil/crypto3/stream/detail/chacha/*.{hpp}" - ] - }, - { - "name": "ctr", - "source_files": [ - "include/nil/crypto3/stream/detail/ctr/*.{hpp}" - ] - }, - { - "name": "rc4", - "source_files": [ - "include/nil/crypto3/stream/detail/rc4/*.{hpp}" - ] - }, - { - "name": "salsa20", - "source_files": [ - "include/nil/crypto3/stream/detail/salsa20/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/threshold/crypto3.threshold.podspec.json b/crypto3/libs/threshold/crypto3.threshold.podspec.json deleted file mode 100644 index 426148648d..0000000000 --- a/crypto3/libs/threshold/crypto3.threshold.podspec.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "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++17", - "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}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/vdf/crypto3.vdf.podspec.json b/crypto3/libs/vdf/crypto3.vdf.podspec.json deleted file mode 100644 index d7093452f8..0000000000 --- a/crypto3/libs/vdf/crypto3.vdf.podspec.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "crypto3.vdf", - "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++17", - "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": "detail", - "source_files": [ - "include/nil/crypto3/vdf/detail/*.{hpp}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/crypto3/libs/zk/crypto3.zk.podspec.json b/crypto3/libs/zk/crypto3.zk.podspec.json deleted file mode 100644 index 945ae83466..0000000000 --- a/crypto3/libs/zk/crypto3.zk.podspec.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "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++17", - "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}" - ] - } - ] - } - ] - } - ] - } - ] - } - ] -} \ No newline at end of file