diff --git a/.gitignore b/.gitignore index 00289aea..5b3635a8 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,7 @@ build-android/pEpEngine-android-1.zip build-android/third-party build-android/pEpEngine-android-1 build-linux/* +build-windows/libpEpasn1/libpEpasn1.vcxproj.user *.dSYM* *_test msg4.asc @@ -40,7 +41,7 @@ Makefile.protocols test/msg_encrypt_for_self.asc tags asn.1/pEpEngineASN1/pEpEngineASN1.vcxproj.user -sync/generated +codegen/generated *.xml *.dot *.svg @@ -54,7 +55,10 @@ trustdb.gpg .cache __pycache__ *.pyc +test/gtest_parallel.py test/python_tests/test? +test/python_tests/dummyhome? +test/python_tests/common test/pEp_test_home test/TestDriver test/local @@ -65,19 +69,22 @@ test/src/engine_test/LocalPlayground.cc */*/.tags asn.1/.generated src/KeySync_* +src/TrustSync_* +src/GroupSync_* src/Sync_* src/sync_codec.* src/distribution_codec.* +src/storage_codec.* asn.1/keysync.asn1 +asn.1/trustsync.asn1 +asn.1/groupsync.asn1 asn.1/keyreset.asn1 asn.1/sync.asn1 asn.1/distribution.asn1 -sync/.codecs -sync/.messages -sync/.actions -sync/.codegen -sync/.statemachines -sync/.copy +asn.1/exploration.asn1 +asn.1/managedgroup.asn1 +asn.1/storage.asn1 +asn.1/messagestorage.asn1 test/msg_2.0.asc test/*.txt lldb-history @@ -87,6 +94,30 @@ test/EngineTests test/googletest test/tmp/* +src/commit_hash.h +.idea/ +venv/ +venv2/ +cleangit.py +newgit + +# Xcode related ignores +build/ +DerivedData/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata/ +*.moved-aside +*.xccheckout +*.xcscmblueprint +xcshareddata + # ignore generated test data test/655_16F07F382FB3CF5DF977005D1069C7CACF9C23C6.asc @@ -99,3 +130,22 @@ test/test_keys/736_a.asc test/test_keys/736_b.asc test/test_mails/ENGINE-654_bob_mail.eml +# ignore generated data + +codegen/generated/ +codegen/*.gen +.copy + +# Don't remove these if you want to live a long life. It's necessary because it doesn't get cleaned up between branches. +sync/generated +sync/.codecs +sync/.messages +sync/.actions +sync/.codegen +sync/.statemachines +sync/.copy + +*.ignore + +# Will remove once KER comes in +test/test_mails/default_keys_test_*.eml diff --git a/.gitlab-ci-files/common-prepare.yml b/.gitlab-ci-files/common-prepare.yml new file mode 100644 index 00000000..8053794f --- /dev/null +++ b/.gitlab-ci-files/common-prepare.yml @@ -0,0 +1,22 @@ +.ensure_docker: &ensure_docker + # Check for docker and install if missing + - 'which docker || ( sudo apt-get update -y && sudo apt-get install docker.io -y )' + +.ensure_rsync: &ensure_rsync + # Install rsync and deps if missing + - 'which ssh-agent || ( sudo apt-get update -y && sudo apt-get install openssh-client -y )' + - 'which rsync || ( sudo apt-get update -y && sudo apt-get install rsync -y )' + - 'which make || ( sudo apt-get update -y && sudo apt-get install make -y )' + +.standard_job: + tags: [kvm] + before_script: + - *ensure_docker + - *ensure_rsync + +.make_in_docker: + extends: .standard_job + script: + - docker login -u ${DOCKER_REGISTRY_USER} -p ${DOCKER_REGISTRY_PASS} ${DOCKER_REGISTRY_HOST} + - cd scripts/${CI_DISTRO_TARGET} + - make diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..0f5d1a16 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,46 @@ +include: + - '.gitlab-ci-files/common-prepare.yml' + +stages: + - build + + +# Debian + +debian10:build: + extends: .make_in_docker + stage: build + variables: + CI_DISTRO_TARGET: "debian10" + DEBIAN_FRONTEND: "noninteractive" + rules: + - if: '$CI_COMMIT_TAG !~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/' + +debian10:tagged-build: + extends: .make_in_docker + stage: build + variables: + CI_DISTRO_TARGET: "debian10" + DEBIAN_FRONTEND: "noninteractive" + TAGGED_BUILD: "true" + rules: + - if: '$CI_COMMIT_TAG =~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/' + +# CentOS + +centos8:build: + extends: .make_in_docker + stage: build + variables: + CI_DISTRO_TARGET: "centos8" + rules: + - if: '$CI_COMMIT_TAG !~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/' + +centos8:tagged-build: + extends: .make_in_docker + stage: build + variables: + CI_DISTRO_TARGET: "centos8" + TAGGED_BUILD: "true" + rules: + - if: '$CI_COMMIT_TAG =~ /^Release_[0-9]+\.[0-9]+\.[0-9]+$/' diff --git a/DEPENDENCIES b/DEPENDENCIES new file mode 100644 index 00000000..9f21beb4 --- /dev/null +++ b/DEPENDENCIES @@ -0,0 +1,4 @@ +# 1st Party Dependencies +## Prefer git tags instead of SHA hashes when possible. +sequoia=openpgp/v1.1.0 +yml2=2.7.0 diff --git a/Makefile b/Makefile index ec144817..9f8c45a8 100644 --- a/Makefile +++ b/Makefile @@ -19,24 +19,37 @@ ifdef BUILD_CONFIG $(info ================================================) endif -.PHONY: all sync asn1 build install dbinstall uninstall clean tags test package db +BUILT_IN_MIME= -build: asn1 +ifdef PEP_MIME + BUILT_IN_MIME=pepmime +endif + +.PHONY: all $(BUILT_IN_MIME) codegen asn1 build install dbinstall uninstall clean tags test package db + +build: $(BUILT_IN_MIME) asn1 $(MAKE) -C src all: build # `make all` is not for tests, that's what `make test` is for # $(MAKE) -C test -sync: - $(MAKE) -C sync +pepmime: + $(MAKE) -C pEpMIME lib + +codegen: + $(MAKE) -C codegen -asn1: sync +asn1: codegen $(MAKE) -C asn.1 + install: build $(MAKE) -C src install $(MAKE) -C asn.1 install +ifeq ($(BUILT_IN_MIME),pepmime) + $(MAKE) -C pEpMIME install +endif beinstall: $(MAKE) -C src beinstall @@ -53,7 +66,11 @@ clean: $(MAKE) -C test clean $(MAKE) -C db clean $(MAKE) -C asn.1 clean - $(MAKE) -C sync clean + $(MAKE) -C codegen clean + $(MAKE) -C build-android clean +ifdef PEP_MIME + $(MAKE) -C pEpMIME clean +endif tags: $(MAKE) -C asn.1 tags diff --git a/Makefile.conf b/Makefile.conf index ee27132f..a8c86bac 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -15,7 +15,6 @@ # It is possible to use multiple variants simultaniously. # If nothing is changed according to these 3 methods, a default configuration for your platform (specified below) will be used for the build. - ######### Header ######### HERE:=$(dir $(lastword $(MAKEFILE_LIST))) @@ -74,28 +73,29 @@ TARGET_ARCH= # The following two variables will be appended to. # You can thus not set them to a final, fixed value here. ifeq ($(BUILD_FOR),Linux) - LDFLAGS= + LDFLAGS+= else ifeq ($(BUILD_FOR),Darwin) # "-bind_at_load" helps find symbol resolution errors faster - LDFLAGS=-bind_at_load + LDFLAGS+=-bind_at_load endif +# Are we wiping this on purpose? LDLIBS= - ######### C ######### ifeq ($(BUILD_FOR),Linux) - CC=gcc -std=c99 -pthread + CC=gcc else ifeq ($(BUILD_FOR),Darwin) - # clang issues a warning when "-pthread" is used for linking. - # So, include it in CFLAGS, and not in CC - CC=clang -std=c99 + CC=clang endif +CFLAGS+=-std=c99 -pthread +CFLAGS+=-fPIC -fstrict-aliasing + ifeq ($(BUILD_FOR),Linux) - CFLAGS=-fPIC -fstrict-aliasing -fdiagnostics-color=auto + CFLAGS+=-fdiagnostics-color=auto else ifeq ($(BUILD_FOR),Darwin) - CFLAGS=-pthread -fPIC -fstrict-aliasing -fcolor-diagnostics + CFLAGS+=-fcolor-diagnostics endif # The flag -DNDEBUG will always be removed from CFLAGS for compiling tests. @@ -131,24 +131,28 @@ ifeq ($(BUILD_FOR),Linux) # otherwise printed during the compilation of every asn1c-generated C file. # It's a glibc specific warning, only present in few versions around ~2.19. # See https://lwn.net/Articles/590381/ for a discussion. - CFLAGS_GENERATED=-D_DEFAULT_SOURCE + CPPFLAGS_GENERATED=-D_DEFAULT_SOURCE else ifeq ($(BUILD_FOR),Darwin) - CFLAGS_GENERATED= + CPPFLAGS_GENERATED= endif ######### C++ ######### ifeq ($(BUILD_FOR),Linux) - CXX=g++ -std=gnu++11 -pthread + CXX=g++ + CXXFLAGS+=-std=gnu++11 else ifeq ($(BUILD_FOR),Darwin) - # clang issues a warning when "-pthread" is used for linking. So, include it in CXXFLAGS, and not in CXX - CXX=clang -std=c++11 + CXX=clang + CXXFLAGS+=-std=c++11 endif -# The flag -DNDEBUG will always be removed from CXXFLAGS for compiling tests. +CXXFLAGS+=-pthread + +# The flag -DNDEBUG will always be removed from CPPFLAGS for compiling tests. +# # The tests do not work properly, if compiled with -DNDEBUG ifeq ($(BUILD_FOR),Linux) - CXXFLAGS=-fdiagnostics-color=auto -I../src -I../asn.1 $(ETPAN_INC) + CXXFLAGS+=-fdiagnostics-color=auto -I../src -I../asn.1 $(ETPAN_INC) ifdef WARN CXXFLAGS+= else @@ -157,10 +161,11 @@ ifeq ($(BUILD_FOR),Linux) ifdef DEBUG CXXFLAGS+= -g -ggdb else - CXXFLAGS+= -O3 -DNDEBUG + CXXFLAGS+= -O3 + CPPFLAGS+= -DNDEBUG endif else ifeq ($(BUILD_FOR),Darwin) - CXXFLAGS=-pthread -fcolor-diagnostics -I../src -I../asn.1 $(ETPAN_INC) + CXXFLAGS+=-fcolor-diagnostics -I../src -I../asn.1 $(ETPAN_INC) ifdef WARN CXXFLAGS+= else @@ -169,16 +174,18 @@ else ifeq ($(BUILD_FOR),Darwin) ifdef DEBUG CXXFLAGS+= -O0 -g else - CXXFLAGS+= -O3 -DNDEBUG + CXXFLAGS+= -O3 + CPPFLAGS+= -DNDEBUG endif endif ######### C and C++ ######### ifeq ($(BUILD_FOR),Darwin) - CPPFLAGS=-D_DARWIN_C_SOURCE + CPPFLAGS+=-D_DARWIN_C_SOURCE + LDLIBS+=-liconv else - CPPFLAGS= + LDLIBS+=-luuid endif @@ -200,39 +207,42 @@ ASN1C_INC= #ASN1C_INC=-I$(HOME)/include -######### libetpan ######### -# libetpan library search flag -ETPAN_LIB= -#ETPAN_LIB=-L$(HOME)/lib +######### sqlite3 ######### +# If empty (or undefined), compile sqlite3 from the sources shipped with the pEp distribution. +# Otherwise, use an sqlite3 implementation found in the OS's include/library paths. +SQLITE3_FROM_OS=placeholder -# libetpan include search flag -ETPAN_INC= -#ETPAN_INC=-I$(HOME)/include +######### MIME ######### ######### pEp MIME ######### -# set this to skip libetpan and use PEP_MIME instead -# PEP_MIME=1 +# Set pEpMIME= anything (there are ifdefs on it) in your local.conf if you want +# to compile built-in pEpMIME (requires a separate libppEpMIME source repo to be +# checked out elsewhere on the system - define or redefine these in local.conf +# if you want to use it; otherwise, we default to etpan. (This will eventually +# become the default, but not yet. # -# pEp MIME library search flag -PEP_MIME_LIB= -# pEp MIME include search flag -PEP_MIME_INC= +PEP_MIME= +PEP_MIME_SRC=$(HOME)/src/pEpMIME/src -######### sqlite3 ######### -# If empty (or undefined), compile sqlite3 from the sources shipped with the pEp distribution. -# Otherwise, use an sqlite3 implementation found in the OS's include/library paths. -SQLITE3_FROM_OS=placeholder +######### libetpan ######### +# libetpan library search flag +# +ETPAN_LIB= +#ETPAN_LIB=-L$(HOME)/lib +# libetpan include search flag +ETPAN_INC= +#ETPAN_INC=-I$(HOME)/include ######### OpenPGP ######### # Selects OpenPGP implementation. must be `SEQUOIA` OPENPGP=SEQUOIA # Sequoia-specific variables -SEQUOIA_CFLAGS= -SEQUOIA_LDFLAGS= +SEQUOIA_CFLAGS+= +SEQUOIA_LDFLAGS+= SEQUOIA_LIB= SEQUOIA_INC= @@ -258,6 +268,10 @@ EXCLUDE= ######### Footer ######### + +################################ +# Include local.conf for any overrides and additional flags +################################ -include $(HERE)/local.conf ifdef BUILD_CONFIG @@ -265,26 +279,43 @@ ifdef BUILD_CONFIG endif ######### Post processing assignments ######## -# These variables are ineffective when set anywhere else but here. -# KB: I have no idea why we do this - it totally defeats the purpose of -# local.conf. -# For now: set if has no value. + +# If sequoia has been set up and the SEQUOIA flags aren't defined, set them up. +# Otherwise, add them to the CFLAGS/CXXFLAGS/LDFLAGS and library/include variables ifeq ($(OPENPGP),SEQUOIA) ifeq ($(SEQUOIA_CFLAGS),) - SEQUOIA_CFLAGS=$(shell pkg-config --cflags-only-other sequoia-openpgp) + SEQUOIA_CFLAGS+=$(shell pkg-config --cflags-only-other sequoia-openpgp) endif ifeq ($(SEQUOIA_LDFLAGS),) - SEQUOIA_LDFLAGS=$(shell pkg-config --libs-only-l --libs-only-other sequoia-openpgp) + SEQUOIA_LDFLAGS+=$(shell pkg-config --libs-only-l sequoia-openpgp) endif ifeq ($(SEQUOIA_LIB),) - SEQUOIA_LIB=$(shell pkg-config --libs-only-L sequoia-openpgp) + SEQUOIA_LIB=$(shell pkg-config --libs-only-L --libs-only-other sequoia-openpgp) endif ifeq ($(SEQUOIA_INC),) SEQUOIA_INC=$(shell pkg-config --cflags-only-I sequoia-openpgp) endif CFLAGS+= $(SEQUOIA_CFLAGS) + CXXFLAGS+= $(SEQUOIA_CFLAGS) LD_FLAGS+= $(SEQUOIA_LDFLAGS) endif # YML_PATH is needed in the environment of every call to a program of the YML2 distribution export YML_PATH=$(YML2_PATH) + +# Postprocess for pEpMIME +ifdef PEP_MIME + # Replace c++11 with c++14 for now (limiting the subst to the ++11 means it doesn't matter if gnu or not) + CXXFLAGS:=$(subst ++11,++14,$(CXXFLAGS)) -fPIC -fvisibility=hidden +endif +ifdef PEP_MIME +ifndef PEP_MIME_SRC + $(error "Compiling with the PEP_MIME option set requires the value of PEP_MIME_SRC to be set to the source directory for libpEpMIME") +else + CPPFLAGS+=-DPEP_BUILTIN_MIME + LDLIBS+=-lstdc++ + ETPAN_LIB= + ETPAN_INC= +endif +endif + diff --git a/README.md b/README.md index 8351a108..ca6f7300 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ It is under active development by several full-time employees of the p≡p found The most recent version of the source code can be obtained here: . This is the only offical way to obtain a copy of the source code. -# I would like to contribute to the p≡p Engine or a realated project, where do I start? +# I would like to contribute to the p≡p Engine or a related project, where do I start? First of all, excellent! You can find further information here: # Legal notes diff --git a/asn.1/Makefile b/asn.1/Makefile index 483a020e..87de07b7 100644 --- a/asn.1/Makefile +++ b/asn.1/Makefile @@ -5,32 +5,47 @@ include ../Makefile.conf ALL_SOURCE=$(subst $(NO_SOURCE),,$(wildcard *.c)) ALL_OBJECTS=$(subst .c,.o,$(ALL_SOURCE)) -CPPFLAGS+=$(CFLAGS_GENERATED) +CPPFLAGS+=$(CPPFLAGS_GENERATED) ASN1C_INC+= -I. +ASN1C_OPTIONS = -fincludes-quoted -fcompound-names -pdu=auto + +DISTRIBUTION = distribution keyreset managedgroup exploration +SYNC = sync keysync trustsync groupsync +STORAGE = storage messagestorage + +DISTRIBUTION_FILES = $(addsuffix .asn1, $(DISTRIBUTION)) +SYNC_FILES = $(addsuffix .asn1, $(SYNC)) +STORAGE_FILES = $(addsuffix .asn1, $(STORAGE)) .PHONY: all clean install uninstall -all: Sync.c Distribution.c +all: Sync.c Distribution.c Storage.c $(MAKE) libasn1.a libasn1.a: $(ALL_OBJECTS) $(AR) -rc $@ $(ALL_OBJECTS) %.o: %.c %.h - $(CC) $(CPPFLAGS) $(CFLAGS) $(OPTIMIZE) $(ASN1C_INC) -c $< -o $@ + $(CC) $(CFLAGS) $(CPPFLAGS) $(OPTIMIZE) $(ASN1C_INC) -c $< -o $@ -Sync.c: sync.asn1 keysync.asn1 pEp.asn1 - $(ASN1C) -gen-PER -fincludes-quoted -fcompound-names -pdu=auto pEp.asn1 keysync.asn1 $< +Sync.c: $(SYNC_FILES) $(DISTRIBUTION_FILES) pEp.asn1 + $(ASN1C) -gen-PER $(ASN1C_OPTIONS) $+ rm -f converter-sample.c touch Sync.c -Distribution.c: distribution.asn1 keyreset.asn1 pEp.asn1 - $(ASN1C) -gen-PER -fincludes-quoted -fcompound-names -pdu=auto pEp.asn1 keyreset.asn1 $< +Distribution.c: $(DISTRIBUTION_FILES) pEp.asn1 + $(ASN1C) -gen-PER $(ASN1C_OPTIONS) $+ rm -f converter-sample.c touch Distribution.c +Storage.c: $(STORAGE_FILES) pEp.asn1 + $(ASN1C) -gen-PER $(ASN1C_OPTIONS) $+ + rm -f converter-sample.c + touch Storage.c + clean: - rm -f *.a *.o *.c *.h *.sample sync.asn1 keysync.asn1 distribution.asn1 keyreset.asn1 + rm -f *.a *.o *.c *.h *.sample \ + $(SYNC_FILES) $(DISTRIBUTION_FILES) $(STORAGE_FILES) install: @@ -38,3 +53,8 @@ uninstall: tags: $(wildcard *.c) $(wildcard *.h) ctags --sort=yes *.c *.h + +# ensure generated files are here - useful after "make clean" +$(SYNC_FILES) $(DISTRIBUTION_FILES) $(STORAGE_FILES): + rm -f ../codegen/.copy + $(MAKE) -C ../codegen .copy diff --git a/asn.1/pEp.asn1 b/asn.1/pEp.asn1 index 3b1a55c4..540bfbd9 100644 --- a/asn.1/pEp.asn1 +++ b/asn.1/pEp.asn1 @@ -1,7 +1,7 @@ -- This file is under BSD License 2.0 -- Sync protocol for p≡p --- Copyright (c) 2016, 2017 p≡p foundation +-- Copyright (c) 2016-2021 p≡p foundation -- Written by Volker Birk @@ -12,7 +12,7 @@ DEFINITIONS AUTOMATIC TAGS EXTENSIBILITY IMPLIED ::= BEGIN -EXPORTS Identity, IdentityList, TID, Hash, Version; +EXPORTS Identity, IdentityList, TID, Hash, Version, Rating; ISO639-1 ::= PrintableString(FROM ("a".."z")) (SIZE(2)) Hex ::= PrintableString(FROM ("A".."F") | FROM ("0".."9")) @@ -36,5 +36,31 @@ Version ::= SEQUENCE { minor INTEGER (0..255) DEFAULT 2 } +Rating ::= ENUMERATED { + -- no color + + cannot-decrypt (1), + have-no-key (2), + unencrypted (3), + unreliable (5), + + b0rken (-2), + + -- yellow + + reliable (6), + + -- green + + trusted (7), + trusted-and-anonymized (8), + fully-anonymous (9), + + -- red + + mistrust (-1), + under-attack (-3) +} + END diff --git a/build-android/Makefile b/build-android/Makefile new file mode 100644 index 00000000..1f5f0865 --- /dev/null +++ b/build-android/Makefile @@ -0,0 +1,13 @@ +# Copyright 2020, pEp Foundation +# This file is part of pEpEngine - Android Build +# This file may be used under the terms of the GNU General Public License version 3 +# see LICENSE.txt + +include ../Makefile.conf + +all: + echo "Placeholder command, this is meant to be cleaned by JNIAdapter Android build" + +.PHONY: clean +clean: + rm -rf include/ diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3.xcodeproj/project.pbxproj b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3.xcodeproj/project.pbxproj new file mode 100644 index 00000000..11d2ee58 --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3.xcodeproj/project.pbxproj @@ -0,0 +1,485 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 1500C9AE264BE75F001FD417 /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = 151672CE262F38D900E99CE5 /* sqlite3.c */; }; + 151672D0262F38D900E99CE5 /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = 151672CE262F38D900E99CE5 /* sqlite3.c */; }; + 151672D1262F38D900E99CE5 /* sqlite3.h in Headers */ = {isa = PBXBuildFile; fileRef = 151672CF262F38D900E99CE5 /* sqlite3.h */; }; + 151672D4262F38E500E99CE5 /* sqlite3.h in Headers */ = {isa = PBXBuildFile; fileRef = 151672CF262F38D900E99CE5 /* sqlite3.h */; }; + 15A326372612055F009D07EB /* PEPSQLITE3_iOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A326362612055F009D07EB /* PEPSQLITE3_iOS.m */; }; + 15A326382612055F009D07EB /* PEPSQLITE3_iOS.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 15A326352612055F009D07EB /* PEPSQLITE3_iOS.h */; }; + 15A32656261205E7009D07EB /* PEPSQLITE3_macOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32655261205E7009D07EB /* PEPSQLITE3_macOS.h */; }; + 15A32658261205E7009D07EB /* PEPSQLITE3_macOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A32657261205E7009D07EB /* PEPSQLITE3_macOS.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 15A326312612055F009D07EB /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "include/$(PRODUCT_NAME)"; + dstSubfolderSpec = 16; + files = ( + 15A326382612055F009D07EB /* PEPSQLITE3_iOS.h in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 151672CE262F38D900E99CE5 /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sqlite3.c; path = ../../../../sqlite/sqlite3.c; sourceTree = ""; }; + 151672CF262F38D900E99CE5 /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = ../../../../sqlite/sqlite3.h; sourceTree = ""; }; + 15A3260B2611F646009D07EB /* PEPSQLITE3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PEPSQLITE3.h; sourceTree = ""; }; + 15A3260C2611F646009D07EB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 15A326332612055F009D07EB /* libPEPSQLITE3_iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPEPSQLITE3_iOS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 15A326352612055F009D07EB /* PEPSQLITE3_iOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PEPSQLITE3_iOS.h; sourceTree = ""; }; + 15A326362612055F009D07EB /* PEPSQLITE3_iOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PEPSQLITE3_iOS.m; sourceTree = ""; }; + 15A32653261205E7009D07EB /* libPEPSQLITE3_macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPEPSQLITE3_macOS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 15A32655261205E7009D07EB /* PEPSQLITE3_macOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PEPSQLITE3_macOS.h; sourceTree = ""; }; + 15A32657261205E7009D07EB /* PEPSQLITE3_macOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PEPSQLITE3_macOS.m; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 15A326302612055F009D07EB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15A32651261205E7009D07EB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 151672CD262F388F00E99CE5 /* src */ = { + isa = PBXGroup; + children = ( + 151672CE262F38D900E99CE5 /* sqlite3.c */, + 151672CF262F38D900E99CE5 /* sqlite3.h */, + ); + name = src; + sourceTree = ""; + }; + 15A325FE2611F646009D07EB = { + isa = PBXGroup; + children = ( + 151672CD262F388F00E99CE5 /* src */, + 15A3260A2611F646009D07EB /* PEPSQLITE3 */, + 15A326342612055F009D07EB /* PEPSQLITE3_iOS */, + 15A32654261205E7009D07EB /* PEPSQLITE3_macOS */, + 15A326092611F646009D07EB /* Products */, + ); + sourceTree = ""; + }; + 15A326092611F646009D07EB /* Products */ = { + isa = PBXGroup; + children = ( + 15A326332612055F009D07EB /* libPEPSQLITE3_iOS.a */, + 15A32653261205E7009D07EB /* libPEPSQLITE3_macOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 15A3260A2611F646009D07EB /* PEPSQLITE3 */ = { + isa = PBXGroup; + children = ( + 15A3260B2611F646009D07EB /* PEPSQLITE3.h */, + 15A3260C2611F646009D07EB /* Info.plist */, + ); + path = PEPSQLITE3; + sourceTree = ""; + }; + 15A326342612055F009D07EB /* PEPSQLITE3_iOS */ = { + isa = PBXGroup; + children = ( + 15A326352612055F009D07EB /* PEPSQLITE3_iOS.h */, + 15A326362612055F009D07EB /* PEPSQLITE3_iOS.m */, + ); + path = PEPSQLITE3_iOS; + sourceTree = ""; + }; + 15A32654261205E7009D07EB /* PEPSQLITE3_macOS */ = { + isa = PBXGroup; + children = ( + 15A32655261205E7009D07EB /* PEPSQLITE3_macOS.h */, + 15A32657261205E7009D07EB /* PEPSQLITE3_macOS.m */, + ); + path = PEPSQLITE3_macOS; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 15A3264F261205E7009D07EB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 151672D4262F38E500E99CE5 /* sqlite3.h in Headers */, + 15A32656261205E7009D07EB /* PEPSQLITE3_macOS.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15A326812612066D009D07EB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 151672D1262F38D900E99CE5 /* sqlite3.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 15A326322612055F009D07EB /* PEPSQLITE3_iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 15A326392612055F009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_iOS" */; + buildPhases = ( + 15A326812612066D009D07EB /* Headers */, + 15A3262F2612055F009D07EB /* Sources */, + 15A326302612055F009D07EB /* Frameworks */, + 15A326312612055F009D07EB /* CopyFiles */, + 15A3268926120716009D07EB /* Copy Artefacts & Headers to Custom Build Dir */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = PEPSQLITE3_iOS; + productName = PEPSQLITE3_iOS; + productReference = 15A326332612055F009D07EB /* libPEPSQLITE3_iOS.a */; + productType = "com.apple.product-type.library.static"; + }; + 15A32652261205E7009D07EB /* PEPSQLITE3_macOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 15A32659261205E7009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_macOS" */; + buildPhases = ( + 15A3264F261205E7009D07EB /* Headers */, + 15A32650261205E7009D07EB /* Sources */, + 15A32651261205E7009D07EB /* Frameworks */, + 15A3268A26120757009D07EB /* Copy Artefacts & Headers to Custom Build Dir */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = PEPSQLITE3_macOS; + productName = PEPSQLITE3_macOS; + productReference = 15A32653261205E7009D07EB /* libPEPSQLITE3_macOS.a */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 15A325FF2611F646009D07EB /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1240; + TargetAttributes = { + 15A326322612055F009D07EB = { + CreatedOnToolsVersion = 12.4; + }; + 15A32652261205E7009D07EB = { + CreatedOnToolsVersion = 12.4; + }; + }; + }; + buildConfigurationList = 15A326022611F646009D07EB /* Build configuration list for PBXProject "PEPSQLITE3" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 15A325FE2611F646009D07EB; + productRefGroup = 15A326092611F646009D07EB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 15A326322612055F009D07EB /* PEPSQLITE3_iOS */, + 15A32652261205E7009D07EB /* PEPSQLITE3_macOS */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXShellScriptBuildPhase section */ + 15A3268926120716009D07EB /* Copy Artefacts & Headers to Custom Build Dir */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Copy Artefacts & Headers to Custom Build Dir"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "CUSTOM_BUILD_DIR=\"${PROJECT_DIR}/build\"\nCUSTOM_INCLUDE_DIR=\"${CUSTOM_BUILD_DIR}/include\"\nmkdir -p ${CUSTOM_INCLUDE_DIR}\ncp -R \"${PROJECT_DIR}\"/../../../../sqlite/*.h ${CUSTOM_INCLUDE_DIR}\ncp \"${TARGET_BUILD_DIR}/libPEPSQLITE3_iOS.a\" ${CUSTOM_BUILD_DIR}\n\n"; + showEnvVarsInLog = 0; + }; + 15A3268A26120757009D07EB /* Copy Artefacts & Headers to Custom Build Dir */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Copy Artefacts & Headers to Custom Build Dir"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "CUSTOM_BUILD_DIR=\"${PROJECT_DIR}/build\"\nCUSTOM_INCLUDE_DIR=\"${CUSTOM_BUILD_DIR}/include\"\nmkdir -p ${CUSTOM_INCLUDE_DIR}\ncp -R \"${TARGET_BUILD_DIR}\"/usr/local/include/sqlite3.h ${CUSTOM_INCLUDE_DIR}\ncp \"${TARGET_BUILD_DIR}/libPEPSQLITE3_macOS.a\" ${CUSTOM_BUILD_DIR}\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 15A3262F2612055F009D07EB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 15A326372612055F009D07EB /* PEPSQLITE3_iOS.m in Sources */, + 151672D0262F38D900E99CE5 /* sqlite3.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15A32650261205E7009D07EB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 15A32658261205E7009D07EB /* PEPSQLITE3_macOS.m in Sources */, + 1500C9AE264BE75F001FD417 /* sqlite3.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 15A3260E2611F646009D07EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.4; + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SUPPORTS_MACCATALYST = NO; + TARGETED_DEVICE_FAMILY = ""; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 15A3260F2611F646009D07EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.4; + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SUPPORTS_MACCATALYST = NO; + TARGETED_DEVICE_FAMILY = ""; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 15A3263A2612055F009D07EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 15A3263B2612055F009D07EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 15A3265A261205E7009D07EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + EXECUTABLE_PREFIX = lib; + MACOSX_DEPLOYMENT_TARGET = 10.10; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 15A3265B261205E7009D07EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + EXECUTABLE_PREFIX = lib; + MACOSX_DEPLOYMENT_TARGET = 10.10; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 15A326022611F646009D07EB /* Build configuration list for PBXProject "PEPSQLITE3" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 15A3260E2611F646009D07EB /* Debug */, + 15A3260F2611F646009D07EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 15A326392612055F009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 15A3263A2612055F009D07EB /* Debug */, + 15A3263B2612055F009D07EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 15A32659261205E7009D07EB /* Build configuration list for PBXNativeTarget "PEPSQLITE3_macOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 15A3265A261205E7009D07EB /* Debug */, + 15A3265B261205E7009D07EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 15A325FF2611F646009D07EB /* Project object */; +} diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3/Info.plist b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3/Info.plist new file mode 100644 index 00000000..9bcb2444 --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + + diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3/PEPSQLITE3.h b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3/PEPSQLITE3.h new file mode 100644 index 00000000..e6c1fa79 --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3/PEPSQLITE3.h @@ -0,0 +1,18 @@ +// +// PEPSQLITE3.h +// PEPSQLITE3 +// +// Created by Andreas Buff on 29.03.21. +// + +#import + +//! Project version number for PEPSQLITE3. +FOUNDATION_EXPORT double PEPSQLITE3VersionNumber; + +//! Project version string for PEPSQLITE3. +FOUNDATION_EXPORT const unsigned char PEPSQLITE3VersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_iOS/PEPSQLITE3_iOS.h b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_iOS/PEPSQLITE3_iOS.h new file mode 100644 index 00000000..84097315 --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_iOS/PEPSQLITE3_iOS.h @@ -0,0 +1,12 @@ +// +// PEPSQLITE3_iOS.h +// PEPSQLITE3_iOS +// +// Created by Andreas Buff on 29.03.21. +// + +#import + +@interface PEPSQLITE3_iOS : NSObject + +@end diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_iOS/PEPSQLITE3_iOS.m b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_iOS/PEPSQLITE3_iOS.m new file mode 100644 index 00000000..992d5a89 --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_iOS/PEPSQLITE3_iOS.m @@ -0,0 +1,12 @@ +// +// PEPSQLITE3_iOS.m +// PEPSQLITE3_iOS +// +// Created by Andreas Buff on 29.03.21. +// + +#import "PEPSQLITE3_iOS.h" + +@implementation PEPSQLITE3_iOS + +@end diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_macOS/PEPSQLITE3_macOS.h b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_macOS/PEPSQLITE3_macOS.h new file mode 100644 index 00000000..bec0ca1c --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_macOS/PEPSQLITE3_macOS.h @@ -0,0 +1,12 @@ +// +// PEPSQLITE3_macOS.h +// PEPSQLITE3_macOS +// +// Created by Andreas Buff on 29.03.21. +// + +#import + +@interface PEPSQLITE3_macOS : NSObject + +@end diff --git a/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_macOS/PEPSQLITE3_macOS.m b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_macOS/PEPSQLITE3_macOS.m new file mode 100644 index 00000000..0ca19f6b --- /dev/null +++ b/build-mac/Subprojects/PEPSQLITE3/PEPSQLITE3_macOS/PEPSQLITE3_macOS.m @@ -0,0 +1,12 @@ +// +// PEPSQLITE3_macOS.m +// PEPSQLITE3_macOS +// +// Created by Andreas Buff on 29.03.21. +// + +#import "PEPSQLITE3_macOS.h" + +@implementation PEPSQLITE3_macOS + +@end diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1.xcodeproj/project.pbxproj b/build-mac/Subprojects/pEpASN1/pEpASN1.xcodeproj/project.pbxproj new file mode 100644 index 00000000..ae1c919b --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1.xcodeproj/project.pbxproj @@ -0,0 +1,1259 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 15A32052260E0330009D07EB /* pEpASN1_macOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32051260E0330009D07EB /* pEpASN1_macOS.h */; }; + 15A32054260E0330009D07EB /* pEpASN1_macOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A32053260E0330009D07EB /* pEpASN1_macOS.m */; }; + 15A32062260E0345009D07EB /* pEpASN1_iOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A32061260E0345009D07EB /* pEpASN1_iOS.m */; }; + 15A32063260E0345009D07EB /* pEpASN1_iOS.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 15A32060260E0345009D07EB /* pEpASN1_iOS.h */; }; + 15A3217F260E03E3009D07EB /* ElectGroupKeyResetLeader.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3208B260E03BC009D07EB /* ElectGroupKeyResetLeader.c */; }; + 15A32180260E03E3009D07EB /* asn_SET_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A4260E03BC009D07EB /* asn_SET_OF.c */; }; + 15A32181260E03E3009D07EB /* ber_tlv_length.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32078260E03BB009D07EB /* ber_tlv_length.c */; }; + 15A32182260E03E3009D07EB /* constr_SET_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B4260E03BD009D07EB /* constr_SET_OF.c */; }; + 15A32183260E03E3009D07EB /* ber_tlv_tag.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320BB260E03BD009D07EB /* ber_tlv_tag.c */; }; + 15A32184260E03E3009D07EB /* CommitAcceptRequester.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320ED260E03BE009D07EB /* CommitAcceptRequester.c */; }; + 15A32185260E03E3009D07EB /* constr_CHOICE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320AE260E03BD009D07EB /* constr_CHOICE.c */; }; + 15A32186260E03E3009D07EB /* GroupKeysForNewMember.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207B260E03BB009D07EB /* GroupKeysForNewMember.c */; }; + 15A32187260E03E3009D07EB /* KeyReset.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207A260E03BB009D07EB /* KeyReset.c */; }; + 15A32188260E03E3009D07EB /* NegotiationOpen.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E7260E03BE009D07EB /* NegotiationOpen.c */; }; + 15A32189260E03E3009D07EB /* PrintableString.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C0260E03BD009D07EB /* PrintableString.c */; }; + 15A3218A260E03E3009D07EB /* OwnKeysOfferer.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320EC260E03BE009D07EB /* OwnKeysOfferer.c */; }; + 15A3218B260E03E3009D07EB /* IdentityList.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C4260E03BD009D07EB /* IdentityList.c */; }; + 15A3218C260E03E3009D07EB /* CommitAcceptForGroup.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A3260E03BC009D07EB /* CommitAcceptForGroup.c */; }; + 15A3218D260E03E3009D07EB /* ber_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3209E260E03BC009D07EB /* ber_decoder.c */; }; + 15A3218E260E03E3009D07EB /* NegotiationRequestGrouped.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DE260E03BE009D07EB /* NegotiationRequestGrouped.c */; }; + 15A3218F260E03E3009D07EB /* OCTET_STRING.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3206C260E03BB009D07EB /* OCTET_STRING.c */; }; + 15A32190260E03E3009D07EB /* asn_codecs_prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E4260E03BE009D07EB /* asn_codecs_prim.c */; }; + 15A32191260E03E3009D07EB /* Commands.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D6260E03BE009D07EB /* Commands.c */; }; + 15A32192260E03E3009D07EB /* InitUnledGroupKeyReset.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32082260E03BC009D07EB /* InitUnledGroupKeyReset.c */; }; + 15A32193260E03E3009D07EB /* NativeEnumerated.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320CD260E03BD009D07EB /* NativeEnumerated.c */; }; + 15A32194260E03E3009D07EB /* Beacon.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3208A260E03BC009D07EB /* Beacon.c */; }; + 15A32195260E03E3009D07EB /* BIT_STRING.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B7260E03BD009D07EB /* BIT_STRING.c */; }; + 15A32196260E03E3009D07EB /* CommitAcceptOfferer.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B1260E03BD009D07EB /* CommitAcceptOfferer.c */; }; + 15A32197260E03E3009D07EB /* constr_TYPE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320F3260E03BE009D07EB /* constr_TYPE.c */; }; + 15A32198260E03E3009D07EB /* per_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A9260E03BD009D07EB /* per_decoder.c */; }; + 15A32199260E03E3009D07EB /* per_opentype.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D4260E03BE009D07EB /* per_opentype.c */; }; + 15A3219A260E03E3009D07EB /* TID.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A0260E03BC009D07EB /* TID.c */; }; + 15A3219B260E03E3009D07EB /* SynchronizeGroupKeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C9260E03BD009D07EB /* SynchronizeGroupKeys.c */; }; + 15A3219C260E03E3009D07EB /* Sync.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320EE260E03BE009D07EB /* Sync.c */; }; + 15A3219D260E03E3009D07EB /* CommitReject.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32071260E03BB009D07EB /* CommitReject.c */; }; + 15A3219E260E03E3009D07EB /* Rating.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32081260E03BB009D07EB /* Rating.c */; }; + 15A3219F260E03E3009D07EB /* asn_SEQUENCE_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B5260E03BD009D07EB /* asn_SEQUENCE_OF.c */; }; + 15A321A0260E03E3009D07EB /* der_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32072260E03BB009D07EB /* der_encoder.c */; }; + 15A321A1260E03E3009D07EB /* KeySync.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E5260E03BE009D07EB /* KeySync.c */; }; + 15A321A2260E03E3009D07EB /* Command.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E0260E03BE009D07EB /* Command.c */; }; + 15A321A3260E03E3009D07EB /* Version.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320CE260E03BD009D07EB /* Version.c */; }; + 15A321A4260E03E3009D07EB /* BOOLEAN.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32091260E03BC009D07EB /* BOOLEAN.c */; }; + 15A321A5260E03E3009D07EB /* GroupTrustThisKey.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320BD260E03BD009D07EB /* GroupTrustThisKey.c */; }; + 15A321A6260E03E3009D07EB /* Hex.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DD260E03BE009D07EB /* Hex.c */; }; + 15A321A7260E03E3009D07EB /* Distribution.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DA260E03BE009D07EB /* Distribution.c */; }; + 15A321A8260E03E3009D07EB /* OwnKeysRequester.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32092260E03BC009D07EB /* OwnKeysRequester.c */; }; + 15A321A9260E03E3009D07EB /* xer_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B3260E03BD009D07EB /* xer_encoder.c */; }; + 15A321AA260E03E3009D07EB /* NativeInteger.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3209A260E03BC009D07EB /* NativeInteger.c */; }; + 15A321AB260E03E3009D07EB /* xer_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A8260E03BD009D07EB /* xer_decoder.c */; }; + 15A321AC260E03E3009D07EB /* pdu_collection.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32083260E03BC009D07EB /* pdu_collection.c */; }; + 15A321AD260E03E3009D07EB /* constr_SEQUENCE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320AC260E03BD009D07EB /* constr_SEQUENCE.c */; }; + 15A321AE260E03E3009D07EB /* per_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207D260E03BB009D07EB /* per_encoder.c */; }; + 15A321AF260E03E3009D07EB /* ISO639-1.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DF260E03BE009D07EB /* ISO639-1.c */; }; + 15A321B0260E03E3009D07EB /* CommitAccept.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32099260E03BC009D07EB /* CommitAccept.c */; }; + 15A321B1260E03E3009D07EB /* Hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207C260E03BB009D07EB /* Hash.c */; }; + 15A321B2260E03E3009D07EB /* INTEGER.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D5260E03BE009D07EB /* INTEGER.c */; }; + 15A321B3260E03E3009D07EB /* GroupKeysUpdate.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32089260E03BC009D07EB /* GroupKeysUpdate.c */; }; + 15A321B4260E03E3009D07EB /* GroupKeysAndClose.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DC260E03BE009D07EB /* GroupKeysAndClose.c */; }; + 15A321B5260E03E3009D07EB /* xer_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C5260E03BD009D07EB /* xer_support.c */; }; + 15A321B6260E03E3009D07EB /* Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3208F260E03BC009D07EB /* Identity.c */; }; + 15A321B7260E03E3009D07EB /* per_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320BC260E03BD009D07EB /* per_support.c */; }; + 15A321B8260E03E3009D07EB /* ReceiverRating.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C8260E03BD009D07EB /* ReceiverRating.c */; }; + 15A321B9260E03E3009D07EB /* constraints.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207F260E03BB009D07EB /* constraints.c */; }; + 15A321BA260E03E3009D07EB /* NegotiationRequest.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D0260E03BD009D07EB /* NegotiationRequest.c */; }; + 15A321BB260E03E3009D07EB /* PString.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320AD260E03BD009D07EB /* PString.c */; }; + 15A321BC260E03E3009D07EB /* UTF8String.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E9260E03BE009D07EB /* UTF8String.c */; }; + 15A321BD260E03E3009D07EB /* Rollback.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320F1260E03BE009D07EB /* Rollback.c */; }; + 15A321BE260E03E3009D07EB /* constr_SEQUENCE_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3206F260E03BB009D07EB /* constr_SEQUENCE_OF.c */; }; + 15A321BF260E03E3009D07EB /* GroupHandshake.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D3260E03BD009D07EB /* GroupHandshake.c */; }; + 15A321C0260E03E4009D07EB /* ElectGroupKeyResetLeader.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3208B260E03BC009D07EB /* ElectGroupKeyResetLeader.c */; }; + 15A321C1260E03E4009D07EB /* asn_SET_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A4260E03BC009D07EB /* asn_SET_OF.c */; }; + 15A321C2260E03E4009D07EB /* ber_tlv_length.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32078260E03BB009D07EB /* ber_tlv_length.c */; }; + 15A321C3260E03E4009D07EB /* constr_SET_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B4260E03BD009D07EB /* constr_SET_OF.c */; }; + 15A321C4260E03E4009D07EB /* ber_tlv_tag.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320BB260E03BD009D07EB /* ber_tlv_tag.c */; }; + 15A321C5260E03E4009D07EB /* CommitAcceptRequester.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320ED260E03BE009D07EB /* CommitAcceptRequester.c */; }; + 15A321C6260E03E4009D07EB /* constr_CHOICE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320AE260E03BD009D07EB /* constr_CHOICE.c */; }; + 15A321C7260E03E4009D07EB /* GroupKeysForNewMember.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207B260E03BB009D07EB /* GroupKeysForNewMember.c */; }; + 15A321C8260E03E4009D07EB /* KeyReset.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207A260E03BB009D07EB /* KeyReset.c */; }; + 15A321C9260E03E4009D07EB /* NegotiationOpen.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E7260E03BE009D07EB /* NegotiationOpen.c */; }; + 15A321CA260E03E4009D07EB /* PrintableString.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C0260E03BD009D07EB /* PrintableString.c */; }; + 15A321CB260E03E4009D07EB /* OwnKeysOfferer.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320EC260E03BE009D07EB /* OwnKeysOfferer.c */; }; + 15A321CC260E03E4009D07EB /* IdentityList.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C4260E03BD009D07EB /* IdentityList.c */; }; + 15A321CD260E03E4009D07EB /* CommitAcceptForGroup.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A3260E03BC009D07EB /* CommitAcceptForGroup.c */; }; + 15A321CE260E03E4009D07EB /* ber_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3209E260E03BC009D07EB /* ber_decoder.c */; }; + 15A321CF260E03E4009D07EB /* NegotiationRequestGrouped.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DE260E03BE009D07EB /* NegotiationRequestGrouped.c */; }; + 15A321D0260E03E4009D07EB /* OCTET_STRING.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3206C260E03BB009D07EB /* OCTET_STRING.c */; }; + 15A321D1260E03E4009D07EB /* asn_codecs_prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E4260E03BE009D07EB /* asn_codecs_prim.c */; }; + 15A321D2260E03E4009D07EB /* Commands.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D6260E03BE009D07EB /* Commands.c */; }; + 15A321D3260E03E4009D07EB /* InitUnledGroupKeyReset.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32082260E03BC009D07EB /* InitUnledGroupKeyReset.c */; }; + 15A321D4260E03E4009D07EB /* NativeEnumerated.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320CD260E03BD009D07EB /* NativeEnumerated.c */; }; + 15A321D5260E03E4009D07EB /* Beacon.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3208A260E03BC009D07EB /* Beacon.c */; }; + 15A321D6260E03E4009D07EB /* BIT_STRING.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B7260E03BD009D07EB /* BIT_STRING.c */; }; + 15A321D7260E03E4009D07EB /* CommitAcceptOfferer.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B1260E03BD009D07EB /* CommitAcceptOfferer.c */; }; + 15A321D8260E03E4009D07EB /* constr_TYPE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320F3260E03BE009D07EB /* constr_TYPE.c */; }; + 15A321D9260E03E4009D07EB /* per_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A9260E03BD009D07EB /* per_decoder.c */; }; + 15A321DA260E03E4009D07EB /* per_opentype.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D4260E03BE009D07EB /* per_opentype.c */; }; + 15A321DB260E03E4009D07EB /* TID.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A0260E03BC009D07EB /* TID.c */; }; + 15A321DC260E03E4009D07EB /* SynchronizeGroupKeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C9260E03BD009D07EB /* SynchronizeGroupKeys.c */; }; + 15A321DD260E03E4009D07EB /* Sync.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320EE260E03BE009D07EB /* Sync.c */; }; + 15A321DE260E03E4009D07EB /* CommitReject.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32071260E03BB009D07EB /* CommitReject.c */; }; + 15A321DF260E03E4009D07EB /* Rating.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32081260E03BB009D07EB /* Rating.c */; }; + 15A321E0260E03E4009D07EB /* asn_SEQUENCE_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B5260E03BD009D07EB /* asn_SEQUENCE_OF.c */; }; + 15A321E1260E03E4009D07EB /* der_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32072260E03BB009D07EB /* der_encoder.c */; }; + 15A321E2260E03E4009D07EB /* KeySync.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E5260E03BE009D07EB /* KeySync.c */; }; + 15A321E3260E03E4009D07EB /* Command.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E0260E03BE009D07EB /* Command.c */; }; + 15A321E4260E03E4009D07EB /* Version.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320CE260E03BD009D07EB /* Version.c */; }; + 15A321E5260E03E4009D07EB /* BOOLEAN.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32091260E03BC009D07EB /* BOOLEAN.c */; }; + 15A321E6260E03E4009D07EB /* GroupTrustThisKey.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320BD260E03BD009D07EB /* GroupTrustThisKey.c */; }; + 15A321E7260E03E4009D07EB /* Hex.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DD260E03BE009D07EB /* Hex.c */; }; + 15A321E8260E03E4009D07EB /* Distribution.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DA260E03BE009D07EB /* Distribution.c */; }; + 15A321E9260E03E4009D07EB /* OwnKeysRequester.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32092260E03BC009D07EB /* OwnKeysRequester.c */; }; + 15A321EA260E03E4009D07EB /* xer_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320B3260E03BD009D07EB /* xer_encoder.c */; }; + 15A321EB260E03E4009D07EB /* NativeInteger.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3209A260E03BC009D07EB /* NativeInteger.c */; }; + 15A321EC260E03E4009D07EB /* xer_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320A8260E03BD009D07EB /* xer_decoder.c */; }; + 15A321ED260E03E4009D07EB /* pdu_collection.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32083260E03BC009D07EB /* pdu_collection.c */; }; + 15A321EE260E03E4009D07EB /* constr_SEQUENCE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320AC260E03BD009D07EB /* constr_SEQUENCE.c */; }; + 15A321EF260E03E4009D07EB /* per_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207D260E03BB009D07EB /* per_encoder.c */; }; + 15A321F0260E03E4009D07EB /* ISO639-1.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DF260E03BE009D07EB /* ISO639-1.c */; }; + 15A321F1260E03E4009D07EB /* CommitAccept.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32099260E03BC009D07EB /* CommitAccept.c */; }; + 15A321F2260E03E4009D07EB /* Hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207C260E03BB009D07EB /* Hash.c */; }; + 15A321F3260E03E4009D07EB /* INTEGER.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D5260E03BE009D07EB /* INTEGER.c */; }; + 15A321F4260E03E4009D07EB /* GroupKeysUpdate.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A32089260E03BC009D07EB /* GroupKeysUpdate.c */; }; + 15A321F5260E03E4009D07EB /* GroupKeysAndClose.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320DC260E03BE009D07EB /* GroupKeysAndClose.c */; }; + 15A321F6260E03E4009D07EB /* xer_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C5260E03BD009D07EB /* xer_support.c */; }; + 15A321F7260E03E4009D07EB /* Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3208F260E03BC009D07EB /* Identity.c */; }; + 15A321F8260E03E4009D07EB /* per_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320BC260E03BD009D07EB /* per_support.c */; }; + 15A321F9260E03E4009D07EB /* ReceiverRating.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320C8260E03BD009D07EB /* ReceiverRating.c */; }; + 15A321FA260E03E4009D07EB /* constraints.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3207F260E03BB009D07EB /* constraints.c */; }; + 15A321FB260E03E4009D07EB /* NegotiationRequest.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D0260E03BD009D07EB /* NegotiationRequest.c */; }; + 15A321FC260E03E4009D07EB /* PString.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320AD260E03BD009D07EB /* PString.c */; }; + 15A321FD260E03E4009D07EB /* UTF8String.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320E9260E03BE009D07EB /* UTF8String.c */; }; + 15A321FE260E03E4009D07EB /* Rollback.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320F1260E03BE009D07EB /* Rollback.c */; }; + 15A321FF260E03E4009D07EB /* constr_SEQUENCE_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A3206F260E03BB009D07EB /* constr_SEQUENCE_OF.c */; }; + 15A32200260E03E4009D07EB /* GroupHandshake.c in Sources */ = {isa = PBXBuildFile; fileRef = 15A320D3260E03BD009D07EB /* GroupHandshake.c */; }; + 15A32204260E03F1009D07EB /* NegotiationOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320BE260E03BD009D07EB /* NegotiationOpen.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32205260E03F1009D07EB /* GroupTrustThisKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B6260E03BD009D07EB /* GroupTrustThisKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32206260E03F1009D07EB /* NativeInteger.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320EF260E03BE009D07EB /* NativeInteger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32207260E03F1009D07EB /* Rollback.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320BF260E03BD009D07EB /* Rollback.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32208260E03F1009D07EB /* asn_SEQUENCE_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D2260E03BD009D07EB /* asn_SEQUENCE_OF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32209260E03F1009D07EB /* constr_SEQUENCE_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D1260E03BD009D07EB /* constr_SEQUENCE_OF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3220A260E03F1009D07EB /* GroupKeysForNewMember.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A5260E03BC009D07EB /* GroupKeysForNewMember.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3220B260E03F2009D07EB /* constr_SEQUENCE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32080260E03BB009D07EB /* constr_SEQUENCE.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3220C260E03F2009D07EB /* xer_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320AB260E03BD009D07EB /* xer_support.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3220D260E03F2009D07EB /* OwnKeysOfferer.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C6260E03BD009D07EB /* OwnKeysOfferer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3220E260E03F2009D07EB /* CommitReject.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32073260E03BB009D07EB /* CommitReject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3220F260E03F2009D07EB /* constr_SET_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32094260E03BC009D07EB /* constr_SET_OF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32210260E03F2009D07EB /* InitUnledGroupKeyReset.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209C260E03BC009D07EB /* InitUnledGroupKeyReset.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32211260E03F2009D07EB /* NegotiationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D8260E03BE009D07EB /* NegotiationRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32212260E03F2009D07EB /* IdentityList.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209B260E03BC009D07EB /* IdentityList.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32213260E03F2009D07EB /* constr_TYPE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32096260E03BC009D07EB /* constr_TYPE.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32214260E03F2009D07EB /* PrintableString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C7260E03BD009D07EB /* PrintableString.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32215260E03F2009D07EB /* constraints.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E6260E03BE009D07EB /* constraints.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32216260E03F2009D07EB /* GroupHandshake.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D9260E03BE009D07EB /* GroupHandshake.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32217260E03F2009D07EB /* Commands.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3208C260E03BC009D07EB /* Commands.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32218260E03F2009D07EB /* SynchronizeGroupKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C1260E03BD009D07EB /* SynchronizeGroupKeys.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32219260E03F2009D07EB /* Hex.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32085260E03BC009D07EB /* Hex.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3221A260E03F2009D07EB /* BOOLEAN.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32098260E03BC009D07EB /* BOOLEAN.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3221B260E03F2009D07EB /* NativeEnumerated.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320CB260E03BD009D07EB /* NativeEnumerated.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3221C260E03F2009D07EB /* ber_tlv_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320BA260E03BD009D07EB /* ber_tlv_tag.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3221D260E03F2009D07EB /* CommitAcceptRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320AF260E03BD009D07EB /* CommitAcceptRequester.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3221E260E03F2009D07EB /* Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320F0260E03BE009D07EB /* Identity.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3221F260E03F2009D07EB /* per_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C3260E03BD009D07EB /* per_encoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32220260E03F2009D07EB /* CommitAccept.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32076260E03BB009D07EB /* CommitAccept.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32221260E03F2009D07EB /* ElectGroupKeyResetLeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209F260E03BC009D07EB /* ElectGroupKeyResetLeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32222260E03F2009D07EB /* constr_CHOICE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32097260E03BC009D07EB /* constr_CHOICE.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32223260E03F2009D07EB /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A2260E03BC009D07EB /* Hash.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32224260E03F2009D07EB /* NegotiationRequestGrouped.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320AA260E03BD009D07EB /* NegotiationRequestGrouped.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32225260E03F2009D07EB /* GroupKeysUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D7260E03BE009D07EB /* GroupKeysUpdate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32226260E03F2009D07EB /* per_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E8260E03BE009D07EB /* per_support.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32227260E03F2009D07EB /* asn_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320DB260E03BE009D07EB /* asn_internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32228260E03F2009D07EB /* OwnKeysRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32095260E03BC009D07EB /* OwnKeysRequester.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32229260E03F2009D07EB /* xer_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E3260E03BE009D07EB /* xer_decoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3222A260E03F2009D07EB /* Version.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3208E260E03BC009D07EB /* Version.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3222B260E03F2009D07EB /* TID.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320CC260E03BD009D07EB /* TID.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3222C260E03F2009D07EB /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32084260E03BC009D07EB /* UTF8String.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3222D260E03F2009D07EB /* KeySync.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32087260E03BC009D07EB /* KeySync.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3222E260E03F2009D07EB /* xer_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32088260E03BC009D07EB /* xer_encoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3222F260E03F2009D07EB /* Sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A7260E03BD009D07EB /* Sync.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32230260E03F2009D07EB /* KeyReset.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32090260E03BC009D07EB /* KeyReset.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32231260E03F2009D07EB /* der_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3206D260E03BB009D07EB /* der_encoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32232260E03F2009D07EB /* per_opentype.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E2260E03BE009D07EB /* per_opentype.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32233260E03F2009D07EB /* asn_codecs_prim.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B2260E03BD009D07EB /* asn_codecs_prim.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32234260E03F2009D07EB /* Command.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32077260E03BB009D07EB /* Command.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32235260E03F2009D07EB /* ReceiverRating.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32093260E03BC009D07EB /* ReceiverRating.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32236260E03F2009D07EB /* PString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A1260E03BC009D07EB /* PString.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32237260E03F2009D07EB /* CommitAcceptOfferer.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B0260E03BD009D07EB /* CommitAcceptOfferer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32238260E03F2009D07EB /* ber_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320EA260E03BE009D07EB /* ber_decoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32239260E03F2009D07EB /* per_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320F2260E03BE009D07EB /* per_decoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3223A260E03F2009D07EB /* asn_application.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32075260E03BB009D07EB /* asn_application.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3223B260E03F2009D07EB /* Beacon.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3207E260E03BB009D07EB /* Beacon.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3223C260E03F2009D07EB /* asn_SET_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E1260E03BE009D07EB /* asn_SET_OF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3223D260E03F2009D07EB /* BIT_STRING.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320EB260E03BE009D07EB /* BIT_STRING.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3223E260E03F2009D07EB /* asn_system.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B8260E03BD009D07EB /* asn_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A3223F260E03F2009D07EB /* GroupKeysAndClose.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32079260E03BB009D07EB /* GroupKeysAndClose.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32240260E03F2009D07EB /* OCTET_STRING.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C2260E03BD009D07EB /* OCTET_STRING.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32241260E03F2009D07EB /* asn_codecs.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3208D260E03BC009D07EB /* asn_codecs.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32242260E03F2009D07EB /* CommitAcceptForGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320CF260E03BD009D07EB /* CommitAcceptForGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32243260E03F2009D07EB /* ber_tlv_length.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3206E260E03BB009D07EB /* ber_tlv_length.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32244260E03F2009D07EB /* Distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32070260E03BB009D07EB /* Distribution.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32245260E03F2009D07EB /* INTEGER.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32086260E03BC009D07EB /* INTEGER.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32246260E03F2009D07EB /* ISO639-1.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32074260E03BB009D07EB /* ISO639-1.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32247260E03F2009D07EB /* Rating.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209D260E03BC009D07EB /* Rating.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15A32248260E03F3009D07EB /* NegotiationOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320BE260E03BD009D07EB /* NegotiationOpen.h */; }; + 15A32249260E03F3009D07EB /* GroupTrustThisKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B6260E03BD009D07EB /* GroupTrustThisKey.h */; }; + 15A3224A260E03F3009D07EB /* NativeInteger.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320EF260E03BE009D07EB /* NativeInteger.h */; }; + 15A3224B260E03F3009D07EB /* Rollback.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320BF260E03BD009D07EB /* Rollback.h */; }; + 15A3224C260E03F3009D07EB /* asn_SEQUENCE_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D2260E03BD009D07EB /* asn_SEQUENCE_OF.h */; }; + 15A3224D260E03F3009D07EB /* constr_SEQUENCE_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D1260E03BD009D07EB /* constr_SEQUENCE_OF.h */; }; + 15A3224E260E03F3009D07EB /* GroupKeysForNewMember.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A5260E03BC009D07EB /* GroupKeysForNewMember.h */; }; + 15A3224F260E03F3009D07EB /* constr_SEQUENCE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32080260E03BB009D07EB /* constr_SEQUENCE.h */; }; + 15A32250260E03F3009D07EB /* xer_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320AB260E03BD009D07EB /* xer_support.h */; }; + 15A32251260E03F3009D07EB /* OwnKeysOfferer.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C6260E03BD009D07EB /* OwnKeysOfferer.h */; }; + 15A32252260E03F3009D07EB /* CommitReject.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32073260E03BB009D07EB /* CommitReject.h */; }; + 15A32253260E03F3009D07EB /* constr_SET_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32094260E03BC009D07EB /* constr_SET_OF.h */; }; + 15A32254260E03F3009D07EB /* InitUnledGroupKeyReset.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209C260E03BC009D07EB /* InitUnledGroupKeyReset.h */; }; + 15A32255260E03F3009D07EB /* NegotiationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D8260E03BE009D07EB /* NegotiationRequest.h */; }; + 15A32256260E03F3009D07EB /* IdentityList.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209B260E03BC009D07EB /* IdentityList.h */; }; + 15A32257260E03F3009D07EB /* constr_TYPE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32096260E03BC009D07EB /* constr_TYPE.h */; }; + 15A32258260E03F3009D07EB /* PrintableString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C7260E03BD009D07EB /* PrintableString.h */; }; + 15A32259260E03F3009D07EB /* constraints.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E6260E03BE009D07EB /* constraints.h */; }; + 15A3225A260E03F3009D07EB /* GroupHandshake.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D9260E03BE009D07EB /* GroupHandshake.h */; }; + 15A3225B260E03F3009D07EB /* Commands.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3208C260E03BC009D07EB /* Commands.h */; }; + 15A3225C260E03F3009D07EB /* SynchronizeGroupKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C1260E03BD009D07EB /* SynchronizeGroupKeys.h */; }; + 15A3225D260E03F3009D07EB /* Hex.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32085260E03BC009D07EB /* Hex.h */; }; + 15A3225E260E03F3009D07EB /* BOOLEAN.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32098260E03BC009D07EB /* BOOLEAN.h */; }; + 15A3225F260E03F3009D07EB /* NativeEnumerated.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320CB260E03BD009D07EB /* NativeEnumerated.h */; }; + 15A32260260E03F3009D07EB /* ber_tlv_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320BA260E03BD009D07EB /* ber_tlv_tag.h */; }; + 15A32261260E03F3009D07EB /* CommitAcceptRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320AF260E03BD009D07EB /* CommitAcceptRequester.h */; }; + 15A32262260E03F3009D07EB /* Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320F0260E03BE009D07EB /* Identity.h */; }; + 15A32263260E03F3009D07EB /* per_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C3260E03BD009D07EB /* per_encoder.h */; }; + 15A32264260E03F3009D07EB /* CommitAccept.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32076260E03BB009D07EB /* CommitAccept.h */; }; + 15A32265260E03F3009D07EB /* ElectGroupKeyResetLeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209F260E03BC009D07EB /* ElectGroupKeyResetLeader.h */; }; + 15A32266260E03F3009D07EB /* constr_CHOICE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32097260E03BC009D07EB /* constr_CHOICE.h */; }; + 15A32267260E03F3009D07EB /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A2260E03BC009D07EB /* Hash.h */; }; + 15A32268260E03F3009D07EB /* NegotiationRequestGrouped.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320AA260E03BD009D07EB /* NegotiationRequestGrouped.h */; }; + 15A32269260E03F3009D07EB /* GroupKeysUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320D7260E03BE009D07EB /* GroupKeysUpdate.h */; }; + 15A3226A260E03F3009D07EB /* per_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E8260E03BE009D07EB /* per_support.h */; }; + 15A3226B260E03F3009D07EB /* asn_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320DB260E03BE009D07EB /* asn_internal.h */; }; + 15A3226C260E03F3009D07EB /* OwnKeysRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32095260E03BC009D07EB /* OwnKeysRequester.h */; }; + 15A3226D260E03F3009D07EB /* xer_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E3260E03BE009D07EB /* xer_decoder.h */; }; + 15A3226E260E03F3009D07EB /* Version.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3208E260E03BC009D07EB /* Version.h */; }; + 15A3226F260E03F3009D07EB /* TID.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320CC260E03BD009D07EB /* TID.h */; }; + 15A32270260E03F3009D07EB /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32084260E03BC009D07EB /* UTF8String.h */; }; + 15A32271260E03F3009D07EB /* KeySync.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32087260E03BC009D07EB /* KeySync.h */; }; + 15A32272260E03F3009D07EB /* xer_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32088260E03BC009D07EB /* xer_encoder.h */; }; + 15A32273260E03F3009D07EB /* Sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A7260E03BD009D07EB /* Sync.h */; }; + 15A32274260E03F3009D07EB /* KeyReset.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32090260E03BC009D07EB /* KeyReset.h */; }; + 15A32275260E03F3009D07EB /* der_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3206D260E03BB009D07EB /* der_encoder.h */; }; + 15A32276260E03F3009D07EB /* per_opentype.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E2260E03BE009D07EB /* per_opentype.h */; }; + 15A32277260E03F3009D07EB /* asn_codecs_prim.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B2260E03BD009D07EB /* asn_codecs_prim.h */; }; + 15A32278260E03F3009D07EB /* Command.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32077260E03BB009D07EB /* Command.h */; }; + 15A32279260E03F3009D07EB /* ReceiverRating.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32093260E03BC009D07EB /* ReceiverRating.h */; }; + 15A3227A260E03F3009D07EB /* PString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320A1260E03BC009D07EB /* PString.h */; }; + 15A3227B260E03F3009D07EB /* CommitAcceptOfferer.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B0260E03BD009D07EB /* CommitAcceptOfferer.h */; }; + 15A3227C260E03F3009D07EB /* ber_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320EA260E03BE009D07EB /* ber_decoder.h */; }; + 15A3227D260E03F3009D07EB /* per_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320F2260E03BE009D07EB /* per_decoder.h */; }; + 15A3227E260E03F3009D07EB /* asn_application.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32075260E03BB009D07EB /* asn_application.h */; }; + 15A3227F260E03F3009D07EB /* Beacon.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3207E260E03BB009D07EB /* Beacon.h */; }; + 15A32280260E03F3009D07EB /* asn_SET_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320E1260E03BE009D07EB /* asn_SET_OF.h */; }; + 15A32281260E03F3009D07EB /* BIT_STRING.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320EB260E03BE009D07EB /* BIT_STRING.h */; }; + 15A32282260E03F3009D07EB /* asn_system.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320B8260E03BD009D07EB /* asn_system.h */; }; + 15A32283260E03F3009D07EB /* GroupKeysAndClose.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32079260E03BB009D07EB /* GroupKeysAndClose.h */; }; + 15A32284260E03F3009D07EB /* OCTET_STRING.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320C2260E03BD009D07EB /* OCTET_STRING.h */; }; + 15A32285260E03F3009D07EB /* asn_codecs.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3208D260E03BC009D07EB /* asn_codecs.h */; }; + 15A32286260E03F3009D07EB /* CommitAcceptForGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A320CF260E03BD009D07EB /* CommitAcceptForGroup.h */; }; + 15A32287260E03F3009D07EB /* ber_tlv_length.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3206E260E03BB009D07EB /* ber_tlv_length.h */; }; + 15A32288260E03F3009D07EB /* Distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32070260E03BB009D07EB /* Distribution.h */; }; + 15A32289260E03F3009D07EB /* INTEGER.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32086260E03BC009D07EB /* INTEGER.h */; }; + 15A3228A260E03F3009D07EB /* ISO639-1.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A32074260E03BB009D07EB /* ISO639-1.h */; }; + 15A3228B260E03F3009D07EB /* Rating.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A3209D260E03BC009D07EB /* Rating.h */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 15A3205C260E0345009D07EB /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "include/$(PRODUCT_NAME)"; + dstSubfolderSpec = 16; + files = ( + 15A32063260E0345009D07EB /* pEpASN1_iOS.h in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 15A3204F260E0330009D07EB /* libpEpASN1_macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libpEpASN1_macOS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 15A32051260E0330009D07EB /* pEpASN1_macOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pEpASN1_macOS.h; sourceTree = ""; }; + 15A32053260E0330009D07EB /* pEpASN1_macOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = pEpASN1_macOS.m; sourceTree = ""; }; + 15A3205E260E0345009D07EB /* libpEpASN1_iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libpEpASN1_iOS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 15A32060260E0345009D07EB /* pEpASN1_iOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pEpASN1_iOS.h; sourceTree = ""; }; + 15A32061260E0345009D07EB /* pEpASN1_iOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = pEpASN1_iOS.m; sourceTree = ""; }; + 15A3206C260E03BB009D07EB /* OCTET_STRING.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = OCTET_STRING.c; path = ../../../asn.1/OCTET_STRING.c; sourceTree = ""; }; + 15A3206D260E03BB009D07EB /* der_encoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = der_encoder.h; path = ../../../asn.1/der_encoder.h; sourceTree = ""; }; + 15A3206E260E03BB009D07EB /* ber_tlv_length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ber_tlv_length.h; path = ../../../asn.1/ber_tlv_length.h; sourceTree = ""; }; + 15A3206F260E03BB009D07EB /* constr_SEQUENCE_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_SEQUENCE_OF.c; path = ../../../asn.1/constr_SEQUENCE_OF.c; sourceTree = ""; }; + 15A32070260E03BB009D07EB /* Distribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Distribution.h; path = ../../../asn.1/Distribution.h; sourceTree = ""; }; + 15A32071260E03BB009D07EB /* CommitReject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitReject.c; path = ../../../asn.1/CommitReject.c; sourceTree = ""; }; + 15A32072260E03BB009D07EB /* der_encoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = der_encoder.c; path = ../../../asn.1/der_encoder.c; sourceTree = ""; }; + 15A32073260E03BB009D07EB /* CommitReject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitReject.h; path = ../../../asn.1/CommitReject.h; sourceTree = ""; }; + 15A32074260E03BB009D07EB /* ISO639-1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "ISO639-1.h"; path = "../../../asn.1/ISO639-1.h"; sourceTree = ""; }; + 15A32075260E03BB009D07EB /* asn_application.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_application.h; path = ../../../asn.1/asn_application.h; sourceTree = ""; }; + 15A32076260E03BB009D07EB /* CommitAccept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAccept.h; path = ../../../asn.1/CommitAccept.h; sourceTree = ""; }; + 15A32077260E03BB009D07EB /* Command.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Command.h; path = ../../../asn.1/Command.h; sourceTree = ""; }; + 15A32078260E03BB009D07EB /* ber_tlv_length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ber_tlv_length.c; path = ../../../asn.1/ber_tlv_length.c; sourceTree = ""; }; + 15A32079260E03BB009D07EB /* GroupKeysAndClose.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupKeysAndClose.h; path = ../../../asn.1/GroupKeysAndClose.h; sourceTree = ""; }; + 15A3207A260E03BB009D07EB /* KeyReset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = KeyReset.c; path = ../../../asn.1/KeyReset.c; sourceTree = ""; }; + 15A3207B260E03BB009D07EB /* GroupKeysForNewMember.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupKeysForNewMember.c; path = ../../../asn.1/GroupKeysForNewMember.c; sourceTree = ""; }; + 15A3207C260E03BB009D07EB /* Hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Hash.c; path = ../../../asn.1/Hash.c; sourceTree = ""; }; + 15A3207D260E03BB009D07EB /* per_encoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_encoder.c; path = ../../../asn.1/per_encoder.c; sourceTree = ""; }; + 15A3207E260E03BB009D07EB /* Beacon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Beacon.h; path = ../../../asn.1/Beacon.h; sourceTree = ""; }; + 15A3207F260E03BB009D07EB /* constraints.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constraints.c; path = ../../../asn.1/constraints.c; sourceTree = ""; }; + 15A32080260E03BB009D07EB /* constr_SEQUENCE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_SEQUENCE.h; path = ../../../asn.1/constr_SEQUENCE.h; sourceTree = ""; }; + 15A32081260E03BB009D07EB /* Rating.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Rating.c; path = ../../../asn.1/Rating.c; sourceTree = ""; }; + 15A32082260E03BC009D07EB /* InitUnledGroupKeyReset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = InitUnledGroupKeyReset.c; path = ../../../asn.1/InitUnledGroupKeyReset.c; sourceTree = ""; }; + 15A32083260E03BC009D07EB /* pdu_collection.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pdu_collection.c; path = ../../../asn.1/pdu_collection.c; sourceTree = ""; }; + 15A32084260E03BC009D07EB /* UTF8String.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = ../../../asn.1/UTF8String.h; sourceTree = ""; }; + 15A32085260E03BC009D07EB /* Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Hex.h; path = ../../../asn.1/Hex.h; sourceTree = ""; }; + 15A32086260E03BC009D07EB /* INTEGER.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = INTEGER.h; path = ../../../asn.1/INTEGER.h; sourceTree = ""; }; + 15A32087260E03BC009D07EB /* KeySync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KeySync.h; path = ../../../asn.1/KeySync.h; sourceTree = ""; }; + 15A32088260E03BC009D07EB /* xer_encoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xer_encoder.h; path = ../../../asn.1/xer_encoder.h; sourceTree = ""; }; + 15A32089260E03BC009D07EB /* GroupKeysUpdate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupKeysUpdate.c; path = ../../../asn.1/GroupKeysUpdate.c; sourceTree = ""; }; + 15A3208A260E03BC009D07EB /* Beacon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Beacon.c; path = ../../../asn.1/Beacon.c; sourceTree = ""; }; + 15A3208B260E03BC009D07EB /* ElectGroupKeyResetLeader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ElectGroupKeyResetLeader.c; path = ../../../asn.1/ElectGroupKeyResetLeader.c; sourceTree = ""; }; + 15A3208C260E03BC009D07EB /* Commands.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Commands.h; path = ../../../asn.1/Commands.h; sourceTree = ""; }; + 15A3208D260E03BC009D07EB /* asn_codecs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_codecs.h; path = ../../../asn.1/asn_codecs.h; sourceTree = ""; }; + 15A3208E260E03BC009D07EB /* Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Version.h; path = ../../../asn.1/Version.h; sourceTree = ""; }; + 15A3208F260E03BC009D07EB /* Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Identity.c; path = ../../../asn.1/Identity.c; sourceTree = ""; }; + 15A32090260E03BC009D07EB /* KeyReset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KeyReset.h; path = ../../../asn.1/KeyReset.h; sourceTree = ""; }; + 15A32091260E03BC009D07EB /* BOOLEAN.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = BOOLEAN.c; path = ../../../asn.1/BOOLEAN.c; sourceTree = ""; }; + 15A32092260E03BC009D07EB /* OwnKeysRequester.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = OwnKeysRequester.c; path = ../../../asn.1/OwnKeysRequester.c; sourceTree = ""; }; + 15A32093260E03BC009D07EB /* ReceiverRating.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ReceiverRating.h; path = ../../../asn.1/ReceiverRating.h; sourceTree = ""; }; + 15A32094260E03BC009D07EB /* constr_SET_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_SET_OF.h; path = ../../../asn.1/constr_SET_OF.h; sourceTree = ""; }; + 15A32095260E03BC009D07EB /* OwnKeysRequester.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OwnKeysRequester.h; path = ../../../asn.1/OwnKeysRequester.h; sourceTree = ""; }; + 15A32096260E03BC009D07EB /* constr_TYPE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_TYPE.h; path = ../../../asn.1/constr_TYPE.h; sourceTree = ""; }; + 15A32097260E03BC009D07EB /* constr_CHOICE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_CHOICE.h; path = ../../../asn.1/constr_CHOICE.h; sourceTree = ""; }; + 15A32098260E03BC009D07EB /* BOOLEAN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BOOLEAN.h; path = ../../../asn.1/BOOLEAN.h; sourceTree = ""; }; + 15A32099260E03BC009D07EB /* CommitAccept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAccept.c; path = ../../../asn.1/CommitAccept.c; sourceTree = ""; }; + 15A3209A260E03BC009D07EB /* NativeInteger.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NativeInteger.c; path = ../../../asn.1/NativeInteger.c; sourceTree = ""; }; + 15A3209B260E03BC009D07EB /* IdentityList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IdentityList.h; path = ../../../asn.1/IdentityList.h; sourceTree = ""; }; + 15A3209C260E03BC009D07EB /* InitUnledGroupKeyReset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InitUnledGroupKeyReset.h; path = ../../../asn.1/InitUnledGroupKeyReset.h; sourceTree = ""; }; + 15A3209D260E03BC009D07EB /* Rating.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Rating.h; path = ../../../asn.1/Rating.h; sourceTree = ""; }; + 15A3209E260E03BC009D07EB /* ber_decoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ber_decoder.c; path = ../../../asn.1/ber_decoder.c; sourceTree = ""; }; + 15A3209F260E03BC009D07EB /* ElectGroupKeyResetLeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ElectGroupKeyResetLeader.h; path = ../../../asn.1/ElectGroupKeyResetLeader.h; sourceTree = ""; }; + 15A320A0260E03BC009D07EB /* TID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = TID.c; path = ../../../asn.1/TID.c; sourceTree = ""; }; + 15A320A1260E03BC009D07EB /* PString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PString.h; path = ../../../asn.1/PString.h; sourceTree = ""; }; + 15A320A2260E03BC009D07EB /* Hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = ../../../asn.1/Hash.h; sourceTree = ""; }; + 15A320A3260E03BC009D07EB /* CommitAcceptForGroup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAcceptForGroup.c; path = ../../../asn.1/CommitAcceptForGroup.c; sourceTree = ""; }; + 15A320A4260E03BC009D07EB /* asn_SET_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asn_SET_OF.c; path = ../../../asn.1/asn_SET_OF.c; sourceTree = ""; }; + 15A320A5260E03BC009D07EB /* GroupKeysForNewMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupKeysForNewMember.h; path = ../../../asn.1/GroupKeysForNewMember.h; sourceTree = ""; }; + 15A320A6260E03BC009D07EB /* keysync.asn1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = keysync.asn1; path = ../../../asn.1/keysync.asn1; sourceTree = ""; }; + 15A320A7260E03BD009D07EB /* Sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Sync.h; path = ../../../asn.1/Sync.h; sourceTree = ""; }; + 15A320A8260E03BD009D07EB /* xer_decoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = xer_decoder.c; path = ../../../asn.1/xer_decoder.c; sourceTree = ""; }; + 15A320A9260E03BD009D07EB /* per_decoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_decoder.c; path = ../../../asn.1/per_decoder.c; sourceTree = ""; }; + 15A320AA260E03BD009D07EB /* NegotiationRequestGrouped.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NegotiationRequestGrouped.h; path = ../../../asn.1/NegotiationRequestGrouped.h; sourceTree = ""; }; + 15A320AB260E03BD009D07EB /* xer_support.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xer_support.h; path = ../../../asn.1/xer_support.h; sourceTree = ""; }; + 15A320AC260E03BD009D07EB /* constr_SEQUENCE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_SEQUENCE.c; path = ../../../asn.1/constr_SEQUENCE.c; sourceTree = ""; }; + 15A320AD260E03BD009D07EB /* PString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = PString.c; path = ../../../asn.1/PString.c; sourceTree = ""; }; + 15A320AE260E03BD009D07EB /* constr_CHOICE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_CHOICE.c; path = ../../../asn.1/constr_CHOICE.c; sourceTree = ""; }; + 15A320AF260E03BD009D07EB /* CommitAcceptRequester.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAcceptRequester.h; path = ../../../asn.1/CommitAcceptRequester.h; sourceTree = ""; }; + 15A320B0260E03BD009D07EB /* CommitAcceptOfferer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAcceptOfferer.h; path = ../../../asn.1/CommitAcceptOfferer.h; sourceTree = ""; }; + 15A320B1260E03BD009D07EB /* CommitAcceptOfferer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAcceptOfferer.c; path = ../../../asn.1/CommitAcceptOfferer.c; sourceTree = ""; }; + 15A320B2260E03BD009D07EB /* asn_codecs_prim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_codecs_prim.h; path = ../../../asn.1/asn_codecs_prim.h; sourceTree = ""; }; + 15A320B3260E03BD009D07EB /* xer_encoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = xer_encoder.c; path = ../../../asn.1/xer_encoder.c; sourceTree = ""; }; + 15A320B4260E03BD009D07EB /* constr_SET_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_SET_OF.c; path = ../../../asn.1/constr_SET_OF.c; sourceTree = ""; }; + 15A320B5260E03BD009D07EB /* asn_SEQUENCE_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asn_SEQUENCE_OF.c; path = ../../../asn.1/asn_SEQUENCE_OF.c; sourceTree = ""; }; + 15A320B6260E03BD009D07EB /* GroupTrustThisKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupTrustThisKey.h; path = ../../../asn.1/GroupTrustThisKey.h; sourceTree = ""; }; + 15A320B7260E03BD009D07EB /* BIT_STRING.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = BIT_STRING.c; path = ../../../asn.1/BIT_STRING.c; sourceTree = ""; }; + 15A320B8260E03BD009D07EB /* asn_system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_system.h; path = ../../../asn.1/asn_system.h; sourceTree = ""; }; + 15A320B9260E03BD009D07EB /* distribution.asn1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = distribution.asn1; path = ../../../asn.1/distribution.asn1; sourceTree = ""; }; + 15A320BA260E03BD009D07EB /* ber_tlv_tag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ber_tlv_tag.h; path = ../../../asn.1/ber_tlv_tag.h; sourceTree = ""; }; + 15A320BB260E03BD009D07EB /* ber_tlv_tag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ber_tlv_tag.c; path = ../../../asn.1/ber_tlv_tag.c; sourceTree = ""; }; + 15A320BC260E03BD009D07EB /* per_support.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_support.c; path = ../../../asn.1/per_support.c; sourceTree = ""; }; + 15A320BD260E03BD009D07EB /* GroupTrustThisKey.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupTrustThisKey.c; path = ../../../asn.1/GroupTrustThisKey.c; sourceTree = ""; }; + 15A320BE260E03BD009D07EB /* NegotiationOpen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NegotiationOpen.h; path = ../../../asn.1/NegotiationOpen.h; sourceTree = ""; }; + 15A320BF260E03BD009D07EB /* Rollback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Rollback.h; path = ../../../asn.1/Rollback.h; sourceTree = ""; }; + 15A320C0260E03BD009D07EB /* PrintableString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = PrintableString.c; path = ../../../asn.1/PrintableString.c; sourceTree = ""; }; + 15A320C1260E03BD009D07EB /* SynchronizeGroupKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SynchronizeGroupKeys.h; path = ../../../asn.1/SynchronizeGroupKeys.h; sourceTree = ""; }; + 15A320C2260E03BD009D07EB /* OCTET_STRING.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OCTET_STRING.h; path = ../../../asn.1/OCTET_STRING.h; sourceTree = ""; }; + 15A320C3260E03BD009D07EB /* per_encoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_encoder.h; path = ../../../asn.1/per_encoder.h; sourceTree = ""; }; + 15A320C4260E03BD009D07EB /* IdentityList.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = IdentityList.c; path = ../../../asn.1/IdentityList.c; sourceTree = ""; }; + 15A320C5260E03BD009D07EB /* xer_support.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = xer_support.c; path = ../../../asn.1/xer_support.c; sourceTree = ""; }; + 15A320C6260E03BD009D07EB /* OwnKeysOfferer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OwnKeysOfferer.h; path = ../../../asn.1/OwnKeysOfferer.h; sourceTree = ""; }; + 15A320C7260E03BD009D07EB /* PrintableString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PrintableString.h; path = ../../../asn.1/PrintableString.h; sourceTree = ""; }; + 15A320C8260E03BD009D07EB /* ReceiverRating.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ReceiverRating.c; path = ../../../asn.1/ReceiverRating.c; sourceTree = ""; }; + 15A320C9260E03BD009D07EB /* SynchronizeGroupKeys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SynchronizeGroupKeys.c; path = ../../../asn.1/SynchronizeGroupKeys.c; sourceTree = ""; }; + 15A320CA260E03BD009D07EB /* keyreset.asn1 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = keyreset.asn1; path = ../../../asn.1/keyreset.asn1; sourceTree = ""; }; + 15A320CB260E03BD009D07EB /* NativeEnumerated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeEnumerated.h; path = ../../../asn.1/NativeEnumerated.h; sourceTree = ""; }; + 15A320CC260E03BD009D07EB /* TID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TID.h; path = ../../../asn.1/TID.h; sourceTree = ""; }; + 15A320CD260E03BD009D07EB /* NativeEnumerated.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NativeEnumerated.c; path = ../../../asn.1/NativeEnumerated.c; sourceTree = ""; }; + 15A320CE260E03BD009D07EB /* Version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Version.c; path = ../../../asn.1/Version.c; sourceTree = ""; }; + 15A320CF260E03BD009D07EB /* CommitAcceptForGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAcceptForGroup.h; path = ../../../asn.1/CommitAcceptForGroup.h; sourceTree = ""; }; + 15A320D0260E03BD009D07EB /* NegotiationRequest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NegotiationRequest.c; path = ../../../asn.1/NegotiationRequest.c; sourceTree = ""; }; + 15A320D1260E03BD009D07EB /* constr_SEQUENCE_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_SEQUENCE_OF.h; path = ../../../asn.1/constr_SEQUENCE_OF.h; sourceTree = ""; }; + 15A320D2260E03BD009D07EB /* asn_SEQUENCE_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_SEQUENCE_OF.h; path = ../../../asn.1/asn_SEQUENCE_OF.h; sourceTree = ""; }; + 15A320D3260E03BD009D07EB /* GroupHandshake.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupHandshake.c; path = ../../../asn.1/GroupHandshake.c; sourceTree = ""; }; + 15A320D4260E03BE009D07EB /* per_opentype.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_opentype.c; path = ../../../asn.1/per_opentype.c; sourceTree = ""; }; + 15A320D5260E03BE009D07EB /* INTEGER.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = INTEGER.c; path = ../../../asn.1/INTEGER.c; sourceTree = ""; }; + 15A320D6260E03BE009D07EB /* Commands.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Commands.c; path = ../../../asn.1/Commands.c; sourceTree = ""; }; + 15A320D7260E03BE009D07EB /* GroupKeysUpdate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupKeysUpdate.h; path = ../../../asn.1/GroupKeysUpdate.h; sourceTree = ""; }; + 15A320D8260E03BE009D07EB /* NegotiationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NegotiationRequest.h; path = ../../../asn.1/NegotiationRequest.h; sourceTree = ""; }; + 15A320D9260E03BE009D07EB /* GroupHandshake.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupHandshake.h; path = ../../../asn.1/GroupHandshake.h; sourceTree = ""; }; + 15A320DA260E03BE009D07EB /* Distribution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Distribution.c; path = ../../../asn.1/Distribution.c; sourceTree = ""; }; + 15A320DB260E03BE009D07EB /* asn_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_internal.h; path = ../../../asn.1/asn_internal.h; sourceTree = ""; }; + 15A320DC260E03BE009D07EB /* GroupKeysAndClose.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupKeysAndClose.c; path = ../../../asn.1/GroupKeysAndClose.c; sourceTree = ""; }; + 15A320DD260E03BE009D07EB /* Hex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Hex.c; path = ../../../asn.1/Hex.c; sourceTree = ""; }; + 15A320DE260E03BE009D07EB /* NegotiationRequestGrouped.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NegotiationRequestGrouped.c; path = ../../../asn.1/NegotiationRequestGrouped.c; sourceTree = ""; }; + 15A320DF260E03BE009D07EB /* ISO639-1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "ISO639-1.c"; path = "../../../asn.1/ISO639-1.c"; sourceTree = ""; }; + 15A320E0260E03BE009D07EB /* Command.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Command.c; path = ../../../asn.1/Command.c; sourceTree = ""; }; + 15A320E1260E03BE009D07EB /* asn_SET_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_SET_OF.h; path = ../../../asn.1/asn_SET_OF.h; sourceTree = ""; }; + 15A320E2260E03BE009D07EB /* per_opentype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_opentype.h; path = ../../../asn.1/per_opentype.h; sourceTree = ""; }; + 15A320E3260E03BE009D07EB /* xer_decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xer_decoder.h; path = ../../../asn.1/xer_decoder.h; sourceTree = ""; }; + 15A320E4260E03BE009D07EB /* asn_codecs_prim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asn_codecs_prim.c; path = ../../../asn.1/asn_codecs_prim.c; sourceTree = ""; }; + 15A320E5260E03BE009D07EB /* KeySync.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = KeySync.c; path = ../../../asn.1/KeySync.c; sourceTree = ""; }; + 15A320E6260E03BE009D07EB /* constraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constraints.h; path = ../../../asn.1/constraints.h; sourceTree = ""; }; + 15A320E7260E03BE009D07EB /* NegotiationOpen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NegotiationOpen.c; path = ../../../asn.1/NegotiationOpen.c; sourceTree = ""; }; + 15A320E8260E03BE009D07EB /* per_support.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_support.h; path = ../../../asn.1/per_support.h; sourceTree = ""; }; + 15A320E9260E03BE009D07EB /* UTF8String.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = UTF8String.c; path = ../../../asn.1/UTF8String.c; sourceTree = ""; }; + 15A320EA260E03BE009D07EB /* ber_decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ber_decoder.h; path = ../../../asn.1/ber_decoder.h; sourceTree = ""; }; + 15A320EB260E03BE009D07EB /* BIT_STRING.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BIT_STRING.h; path = ../../../asn.1/BIT_STRING.h; sourceTree = ""; }; + 15A320EC260E03BE009D07EB /* OwnKeysOfferer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = OwnKeysOfferer.c; path = ../../../asn.1/OwnKeysOfferer.c; sourceTree = ""; }; + 15A320ED260E03BE009D07EB /* CommitAcceptRequester.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAcceptRequester.c; path = ../../../asn.1/CommitAcceptRequester.c; sourceTree = ""; }; + 15A320EE260E03BE009D07EB /* Sync.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Sync.c; path = ../../../asn.1/Sync.c; sourceTree = ""; }; + 15A320EF260E03BE009D07EB /* NativeInteger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeInteger.h; path = ../../../asn.1/NativeInteger.h; sourceTree = ""; }; + 15A320F0260E03BE009D07EB /* Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Identity.h; path = ../../../asn.1/Identity.h; sourceTree = ""; }; + 15A320F1260E03BE009D07EB /* Rollback.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Rollback.c; path = ../../../asn.1/Rollback.c; sourceTree = ""; }; + 15A320F2260E03BE009D07EB /* per_decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_decoder.h; path = ../../../asn.1/per_decoder.h; sourceTree = ""; }; + 15A320F3260E03BE009D07EB /* constr_TYPE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_TYPE.c; path = ../../../asn.1/constr_TYPE.c; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 15A3204D260E0330009D07EB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15A3205B260E0345009D07EB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 15A32015260E02AA009D07EB = { + isa = PBXGroup; + children = ( + 15A3206B260E0376009D07EB /* src */, + 15A32050260E0330009D07EB /* pEpASN1_macOS */, + 15A3205F260E0345009D07EB /* pEpASN1_iOS */, + 15A32020260E02AA009D07EB /* Products */, + ); + sourceTree = ""; + }; + 15A32020260E02AA009D07EB /* Products */ = { + isa = PBXGroup; + children = ( + 15A3204F260E0330009D07EB /* libpEpASN1_macOS.a */, + 15A3205E260E0345009D07EB /* libpEpASN1_iOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 15A32050260E0330009D07EB /* pEpASN1_macOS */ = { + isa = PBXGroup; + children = ( + 15A32051260E0330009D07EB /* pEpASN1_macOS.h */, + 15A32053260E0330009D07EB /* pEpASN1_macOS.m */, + ); + path = pEpASN1_macOS; + sourceTree = ""; + }; + 15A3205F260E0345009D07EB /* pEpASN1_iOS */ = { + isa = PBXGroup; + children = ( + 15A32060260E0345009D07EB /* pEpASN1_iOS.h */, + 15A32061260E0345009D07EB /* pEpASN1_iOS.m */, + ); + path = pEpASN1_iOS; + sourceTree = ""; + }; + 15A3206B260E0376009D07EB /* src */ = { + isa = PBXGroup; + children = ( + 15A32075260E03BB009D07EB /* asn_application.h */, + 15A320E4260E03BE009D07EB /* asn_codecs_prim.c */, + 15A320B2260E03BD009D07EB /* asn_codecs_prim.h */, + 15A3208D260E03BC009D07EB /* asn_codecs.h */, + 15A320DB260E03BE009D07EB /* asn_internal.h */, + 15A320B5260E03BD009D07EB /* asn_SEQUENCE_OF.c */, + 15A320D2260E03BD009D07EB /* asn_SEQUENCE_OF.h */, + 15A320A4260E03BC009D07EB /* asn_SET_OF.c */, + 15A320E1260E03BE009D07EB /* asn_SET_OF.h */, + 15A320B8260E03BD009D07EB /* asn_system.h */, + 15A3208A260E03BC009D07EB /* Beacon.c */, + 15A3207E260E03BB009D07EB /* Beacon.h */, + 15A3209E260E03BC009D07EB /* ber_decoder.c */, + 15A320EA260E03BE009D07EB /* ber_decoder.h */, + 15A32078260E03BB009D07EB /* ber_tlv_length.c */, + 15A3206E260E03BB009D07EB /* ber_tlv_length.h */, + 15A320BB260E03BD009D07EB /* ber_tlv_tag.c */, + 15A320BA260E03BD009D07EB /* ber_tlv_tag.h */, + 15A320B7260E03BD009D07EB /* BIT_STRING.c */, + 15A320EB260E03BE009D07EB /* BIT_STRING.h */, + 15A32091260E03BC009D07EB /* BOOLEAN.c */, + 15A32098260E03BC009D07EB /* BOOLEAN.h */, + 15A320E0260E03BE009D07EB /* Command.c */, + 15A32077260E03BB009D07EB /* Command.h */, + 15A320D6260E03BE009D07EB /* Commands.c */, + 15A3208C260E03BC009D07EB /* Commands.h */, + 15A32099260E03BC009D07EB /* CommitAccept.c */, + 15A32076260E03BB009D07EB /* CommitAccept.h */, + 15A320A3260E03BC009D07EB /* CommitAcceptForGroup.c */, + 15A320CF260E03BD009D07EB /* CommitAcceptForGroup.h */, + 15A320B1260E03BD009D07EB /* CommitAcceptOfferer.c */, + 15A320B0260E03BD009D07EB /* CommitAcceptOfferer.h */, + 15A320ED260E03BE009D07EB /* CommitAcceptRequester.c */, + 15A320AF260E03BD009D07EB /* CommitAcceptRequester.h */, + 15A32071260E03BB009D07EB /* CommitReject.c */, + 15A32073260E03BB009D07EB /* CommitReject.h */, + 15A320AE260E03BD009D07EB /* constr_CHOICE.c */, + 15A32097260E03BC009D07EB /* constr_CHOICE.h */, + 15A3206F260E03BB009D07EB /* constr_SEQUENCE_OF.c */, + 15A320D1260E03BD009D07EB /* constr_SEQUENCE_OF.h */, + 15A320AC260E03BD009D07EB /* constr_SEQUENCE.c */, + 15A32080260E03BB009D07EB /* constr_SEQUENCE.h */, + 15A320B4260E03BD009D07EB /* constr_SET_OF.c */, + 15A32094260E03BC009D07EB /* constr_SET_OF.h */, + 15A320F3260E03BE009D07EB /* constr_TYPE.c */, + 15A32096260E03BC009D07EB /* constr_TYPE.h */, + 15A3207F260E03BB009D07EB /* constraints.c */, + 15A320E6260E03BE009D07EB /* constraints.h */, + 15A32072260E03BB009D07EB /* der_encoder.c */, + 15A3206D260E03BB009D07EB /* der_encoder.h */, + 15A320B9260E03BD009D07EB /* distribution.asn1 */, + 15A320DA260E03BE009D07EB /* Distribution.c */, + 15A32070260E03BB009D07EB /* Distribution.h */, + 15A3208B260E03BC009D07EB /* ElectGroupKeyResetLeader.c */, + 15A3209F260E03BC009D07EB /* ElectGroupKeyResetLeader.h */, + 15A320D3260E03BD009D07EB /* GroupHandshake.c */, + 15A320D9260E03BE009D07EB /* GroupHandshake.h */, + 15A320DC260E03BE009D07EB /* GroupKeysAndClose.c */, + 15A32079260E03BB009D07EB /* GroupKeysAndClose.h */, + 15A3207B260E03BB009D07EB /* GroupKeysForNewMember.c */, + 15A320A5260E03BC009D07EB /* GroupKeysForNewMember.h */, + 15A32089260E03BC009D07EB /* GroupKeysUpdate.c */, + 15A320D7260E03BE009D07EB /* GroupKeysUpdate.h */, + 15A320BD260E03BD009D07EB /* GroupTrustThisKey.c */, + 15A320B6260E03BD009D07EB /* GroupTrustThisKey.h */, + 15A3207C260E03BB009D07EB /* Hash.c */, + 15A320A2260E03BC009D07EB /* Hash.h */, + 15A320DD260E03BE009D07EB /* Hex.c */, + 15A32085260E03BC009D07EB /* Hex.h */, + 15A3208F260E03BC009D07EB /* Identity.c */, + 15A320F0260E03BE009D07EB /* Identity.h */, + 15A320C4260E03BD009D07EB /* IdentityList.c */, + 15A3209B260E03BC009D07EB /* IdentityList.h */, + 15A32082260E03BC009D07EB /* InitUnledGroupKeyReset.c */, + 15A3209C260E03BC009D07EB /* InitUnledGroupKeyReset.h */, + 15A320D5260E03BE009D07EB /* INTEGER.c */, + 15A32086260E03BC009D07EB /* INTEGER.h */, + 15A320DF260E03BE009D07EB /* ISO639-1.c */, + 15A32074260E03BB009D07EB /* ISO639-1.h */, + 15A320CA260E03BD009D07EB /* keyreset.asn1 */, + 15A3207A260E03BB009D07EB /* KeyReset.c */, + 15A32090260E03BC009D07EB /* KeyReset.h */, + 15A320A6260E03BC009D07EB /* keysync.asn1 */, + 15A320E5260E03BE009D07EB /* KeySync.c */, + 15A32087260E03BC009D07EB /* KeySync.h */, + 15A320CD260E03BD009D07EB /* NativeEnumerated.c */, + 15A320CB260E03BD009D07EB /* NativeEnumerated.h */, + 15A3209A260E03BC009D07EB /* NativeInteger.c */, + 15A320EF260E03BE009D07EB /* NativeInteger.h */, + 15A320E7260E03BE009D07EB /* NegotiationOpen.c */, + 15A320BE260E03BD009D07EB /* NegotiationOpen.h */, + 15A320D0260E03BD009D07EB /* NegotiationRequest.c */, + 15A320D8260E03BE009D07EB /* NegotiationRequest.h */, + 15A320DE260E03BE009D07EB /* NegotiationRequestGrouped.c */, + 15A320AA260E03BD009D07EB /* NegotiationRequestGrouped.h */, + 15A3206C260E03BB009D07EB /* OCTET_STRING.c */, + 15A320C2260E03BD009D07EB /* OCTET_STRING.h */, + 15A320EC260E03BE009D07EB /* OwnKeysOfferer.c */, + 15A320C6260E03BD009D07EB /* OwnKeysOfferer.h */, + 15A32092260E03BC009D07EB /* OwnKeysRequester.c */, + 15A32095260E03BC009D07EB /* OwnKeysRequester.h */, + 15A32083260E03BC009D07EB /* pdu_collection.c */, + 15A320A9260E03BD009D07EB /* per_decoder.c */, + 15A320F2260E03BE009D07EB /* per_decoder.h */, + 15A3207D260E03BB009D07EB /* per_encoder.c */, + 15A320C3260E03BD009D07EB /* per_encoder.h */, + 15A320D4260E03BE009D07EB /* per_opentype.c */, + 15A320E2260E03BE009D07EB /* per_opentype.h */, + 15A320BC260E03BD009D07EB /* per_support.c */, + 15A320E8260E03BE009D07EB /* per_support.h */, + 15A320C0260E03BD009D07EB /* PrintableString.c */, + 15A320C7260E03BD009D07EB /* PrintableString.h */, + 15A320AD260E03BD009D07EB /* PString.c */, + 15A320A1260E03BC009D07EB /* PString.h */, + 15A32081260E03BB009D07EB /* Rating.c */, + 15A3209D260E03BC009D07EB /* Rating.h */, + 15A320C8260E03BD009D07EB /* ReceiverRating.c */, + 15A32093260E03BC009D07EB /* ReceiverRating.h */, + 15A320F1260E03BE009D07EB /* Rollback.c */, + 15A320BF260E03BD009D07EB /* Rollback.h */, + 15A320EE260E03BE009D07EB /* Sync.c */, + 15A320A7260E03BD009D07EB /* Sync.h */, + 15A320C9260E03BD009D07EB /* SynchronizeGroupKeys.c */, + 15A320C1260E03BD009D07EB /* SynchronizeGroupKeys.h */, + 15A320A0260E03BC009D07EB /* TID.c */, + 15A320CC260E03BD009D07EB /* TID.h */, + 15A320E9260E03BE009D07EB /* UTF8String.c */, + 15A32084260E03BC009D07EB /* UTF8String.h */, + 15A320CE260E03BD009D07EB /* Version.c */, + 15A3208E260E03BC009D07EB /* Version.h */, + 15A320A8260E03BD009D07EB /* xer_decoder.c */, + 15A320E3260E03BE009D07EB /* xer_decoder.h */, + 15A320B3260E03BD009D07EB /* xer_encoder.c */, + 15A32088260E03BC009D07EB /* xer_encoder.h */, + 15A320C5260E03BD009D07EB /* xer_support.c */, + 15A320AB260E03BD009D07EB /* xer_support.h */, + ); + name = src; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 15A3204B260E0330009D07EB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 15A32237260E03F2009D07EB /* CommitAcceptOfferer.h in Headers */, + 15A3221D260E03F2009D07EB /* CommitAcceptRequester.h in Headers */, + 15A3222E260E03F2009D07EB /* xer_encoder.h in Headers */, + 15A32236260E03F2009D07EB /* PString.h in Headers */, + 15A32230260E03F2009D07EB /* KeyReset.h in Headers */, + 15A32233260E03F2009D07EB /* asn_codecs_prim.h in Headers */, + 15A32234260E03F2009D07EB /* Command.h in Headers */, + 15A32238260E03F2009D07EB /* ber_decoder.h in Headers */, + 15A3220D260E03F2009D07EB /* OwnKeysOfferer.h in Headers */, + 15A3223C260E03F2009D07EB /* asn_SET_OF.h in Headers */, + 15A32217260E03F2009D07EB /* Commands.h in Headers */, + 15A32219260E03F2009D07EB /* Hex.h in Headers */, + 15A32204260E03F1009D07EB /* NegotiationOpen.h in Headers */, + 15A32205260E03F1009D07EB /* GroupTrustThisKey.h in Headers */, + 15A3221B260E03F2009D07EB /* NativeEnumerated.h in Headers */, + 15A3221C260E03F2009D07EB /* ber_tlv_tag.h in Headers */, + 15A3223E260E03F2009D07EB /* asn_system.h in Headers */, + 15A32222260E03F2009D07EB /* constr_CHOICE.h in Headers */, + 15A32209260E03F1009D07EB /* constr_SEQUENCE_OF.h in Headers */, + 15A32246260E03F2009D07EB /* ISO639-1.h in Headers */, + 15A3223D260E03F2009D07EB /* BIT_STRING.h in Headers */, + 15A32235260E03F2009D07EB /* ReceiverRating.h in Headers */, + 15A32241260E03F2009D07EB /* asn_codecs.h in Headers */, + 15A32227260E03F2009D07EB /* asn_internal.h in Headers */, + 15A32239260E03F2009D07EB /* per_decoder.h in Headers */, + 15A3220B260E03F2009D07EB /* constr_SEQUENCE.h in Headers */, + 15A32242260E03F2009D07EB /* CommitAcceptForGroup.h in Headers */, + 15A3221E260E03F2009D07EB /* Identity.h in Headers */, + 15A3221A260E03F2009D07EB /* BOOLEAN.h in Headers */, + 15A3220F260E03F2009D07EB /* constr_SET_OF.h in Headers */, + 15A32220260E03F2009D07EB /* CommitAccept.h in Headers */, + 15A32224260E03F2009D07EB /* NegotiationRequestGrouped.h in Headers */, + 15A32247260E03F2009D07EB /* Rating.h in Headers */, + 15A32229260E03F2009D07EB /* xer_decoder.h in Headers */, + 15A32211260E03F2009D07EB /* NegotiationRequest.h in Headers */, + 15A3223A260E03F2009D07EB /* asn_application.h in Headers */, + 15A32243260E03F2009D07EB /* ber_tlv_length.h in Headers */, + 15A3222F260E03F2009D07EB /* Sync.h in Headers */, + 15A3222D260E03F2009D07EB /* KeySync.h in Headers */, + 15A3223F260E03F2009D07EB /* GroupKeysAndClose.h in Headers */, + 15A3222B260E03F2009D07EB /* TID.h in Headers */, + 15A3220C260E03F2009D07EB /* xer_support.h in Headers */, + 15A32218260E03F2009D07EB /* SynchronizeGroupKeys.h in Headers */, + 15A32206260E03F1009D07EB /* NativeInteger.h in Headers */, + 15A32215260E03F2009D07EB /* constraints.h in Headers */, + 15A32208260E03F1009D07EB /* asn_SEQUENCE_OF.h in Headers */, + 15A32212260E03F2009D07EB /* IdentityList.h in Headers */, + 15A32232260E03F2009D07EB /* per_opentype.h in Headers */, + 15A32231260E03F2009D07EB /* der_encoder.h in Headers */, + 15A32052260E0330009D07EB /* pEpASN1_macOS.h in Headers */, + 15A32240260E03F2009D07EB /* OCTET_STRING.h in Headers */, + 15A32213260E03F2009D07EB /* constr_TYPE.h in Headers */, + 15A32245260E03F2009D07EB /* INTEGER.h in Headers */, + 15A32228260E03F2009D07EB /* OwnKeysRequester.h in Headers */, + 15A32223260E03F2009D07EB /* Hash.h in Headers */, + 15A32216260E03F2009D07EB /* GroupHandshake.h in Headers */, + 15A32207260E03F1009D07EB /* Rollback.h in Headers */, + 15A32225260E03F2009D07EB /* GroupKeysUpdate.h in Headers */, + 15A3223B260E03F2009D07EB /* Beacon.h in Headers */, + 15A32210260E03F2009D07EB /* InitUnledGroupKeyReset.h in Headers */, + 15A32221260E03F2009D07EB /* ElectGroupKeyResetLeader.h in Headers */, + 15A3220E260E03F2009D07EB /* CommitReject.h in Headers */, + 15A3220A260E03F1009D07EB /* GroupKeysForNewMember.h in Headers */, + 15A32214260E03F2009D07EB /* PrintableString.h in Headers */, + 15A3222A260E03F2009D07EB /* Version.h in Headers */, + 15A32226260E03F2009D07EB /* per_support.h in Headers */, + 15A3222C260E03F2009D07EB /* UTF8String.h in Headers */, + 15A32244260E03F2009D07EB /* Distribution.h in Headers */, + 15A3221F260E03F2009D07EB /* per_encoder.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15A3206A260E035B009D07EB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 15A32278260E03F3009D07EB /* Command.h in Headers */, + 15A32277260E03F3009D07EB /* asn_codecs_prim.h in Headers */, + 15A32288260E03F3009D07EB /* Distribution.h in Headers */, + 15A32267260E03F3009D07EB /* Hash.h in Headers */, + 15A3227C260E03F3009D07EB /* ber_decoder.h in Headers */, + 15A3225D260E03F3009D07EB /* Hex.h in Headers */, + 15A32284260E03F3009D07EB /* OCTET_STRING.h in Headers */, + 15A3226B260E03F3009D07EB /* asn_internal.h in Headers */, + 15A3226D260E03F3009D07EB /* xer_decoder.h in Headers */, + 15A32274260E03F3009D07EB /* KeyReset.h in Headers */, + 15A3228A260E03F3009D07EB /* ISO639-1.h in Headers */, + 15A32265260E03F3009D07EB /* ElectGroupKeyResetLeader.h in Headers */, + 15A3226E260E03F3009D07EB /* Version.h in Headers */, + 15A32263260E03F3009D07EB /* per_encoder.h in Headers */, + 15A32285260E03F3009D07EB /* asn_codecs.h in Headers */, + 15A32250260E03F3009D07EB /* xer_support.h in Headers */, + 15A32280260E03F3009D07EB /* asn_SET_OF.h in Headers */, + 15A32286260E03F3009D07EB /* CommitAcceptForGroup.h in Headers */, + 15A32253260E03F3009D07EB /* constr_SET_OF.h in Headers */, + 15A3225C260E03F3009D07EB /* SynchronizeGroupKeys.h in Headers */, + 15A3227F260E03F3009D07EB /* Beacon.h in Headers */, + 15A32269260E03F3009D07EB /* GroupKeysUpdate.h in Headers */, + 15A32251260E03F3009D07EB /* OwnKeysOfferer.h in Headers */, + 15A32276260E03F3009D07EB /* per_opentype.h in Headers */, + 15A3224F260E03F3009D07EB /* constr_SEQUENCE.h in Headers */, + 15A3226C260E03F3009D07EB /* OwnKeysRequester.h in Headers */, + 15A32275260E03F3009D07EB /* der_encoder.h in Headers */, + 15A3224A260E03F3009D07EB /* NativeInteger.h in Headers */, + 15A3224E260E03F3009D07EB /* GroupKeysForNewMember.h in Headers */, + 15A32252260E03F3009D07EB /* CommitReject.h in Headers */, + 15A3225F260E03F3009D07EB /* NativeEnumerated.h in Headers */, + 15A3228B260E03F3009D07EB /* Rating.h in Headers */, + 15A32248260E03F3009D07EB /* NegotiationOpen.h in Headers */, + 15A3224B260E03F3009D07EB /* Rollback.h in Headers */, + 15A3225A260E03F3009D07EB /* GroupHandshake.h in Headers */, + 15A32281260E03F3009D07EB /* BIT_STRING.h in Headers */, + 15A3227D260E03F3009D07EB /* per_decoder.h in Headers */, + 15A32279260E03F3009D07EB /* ReceiverRating.h in Headers */, + 15A32259260E03F3009D07EB /* constraints.h in Headers */, + 15A32270260E03F3009D07EB /* UTF8String.h in Headers */, + 15A32266260E03F3009D07EB /* constr_CHOICE.h in Headers */, + 15A3224C260E03F3009D07EB /* asn_SEQUENCE_OF.h in Headers */, + 15A3225E260E03F3009D07EB /* BOOLEAN.h in Headers */, + 15A32255260E03F3009D07EB /* NegotiationRequest.h in Headers */, + 15A32258260E03F3009D07EB /* PrintableString.h in Headers */, + 15A32289260E03F3009D07EB /* INTEGER.h in Headers */, + 15A3226A260E03F3009D07EB /* per_support.h in Headers */, + 15A3226F260E03F3009D07EB /* TID.h in Headers */, + 15A32254260E03F3009D07EB /* InitUnledGroupKeyReset.h in Headers */, + 15A32256260E03F3009D07EB /* IdentityList.h in Headers */, + 15A32257260E03F3009D07EB /* constr_TYPE.h in Headers */, + 15A32273260E03F3009D07EB /* Sync.h in Headers */, + 15A32268260E03F3009D07EB /* NegotiationRequestGrouped.h in Headers */, + 15A32249260E03F3009D07EB /* GroupTrustThisKey.h in Headers */, + 15A32282260E03F3009D07EB /* asn_system.h in Headers */, + 15A32271260E03F3009D07EB /* KeySync.h in Headers */, + 15A3227A260E03F3009D07EB /* PString.h in Headers */, + 15A32287260E03F3009D07EB /* ber_tlv_length.h in Headers */, + 15A3227E260E03F3009D07EB /* asn_application.h in Headers */, + 15A32283260E03F3009D07EB /* GroupKeysAndClose.h in Headers */, + 15A32262260E03F3009D07EB /* Identity.h in Headers */, + 15A32260260E03F3009D07EB /* ber_tlv_tag.h in Headers */, + 15A3225B260E03F3009D07EB /* Commands.h in Headers */, + 15A32264260E03F3009D07EB /* CommitAccept.h in Headers */, + 15A32261260E03F3009D07EB /* CommitAcceptRequester.h in Headers */, + 15A3227B260E03F3009D07EB /* CommitAcceptOfferer.h in Headers */, + 15A32272260E03F3009D07EB /* xer_encoder.h in Headers */, + 15A3224D260E03F3009D07EB /* constr_SEQUENCE_OF.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 15A3204E260E0330009D07EB /* pEpASN1_macOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 15A32057260E0330009D07EB /* Build configuration list for PBXNativeTarget "pEpASN1_macOS" */; + buildPhases = ( + 15A3204B260E0330009D07EB /* Headers */, + 15A3204C260E0330009D07EB /* Sources */, + 15A3204D260E0330009D07EB /* Frameworks */, + 15A32292260E0452009D07EB /* Copy Artefacts & Headers to Custom Build Dir */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = pEpASN1_macOS; + productName = pEpASN1_macOS; + productReference = 15A3204F260E0330009D07EB /* libpEpASN1_macOS.a */; + productType = "com.apple.product-type.library.static"; + }; + 15A3205D260E0345009D07EB /* pEpASN1_iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 15A32064260E0345009D07EB /* Build configuration list for PBXNativeTarget "pEpASN1_iOS" */; + buildPhases = ( + 15A3206A260E035B009D07EB /* Headers */, + 15A3205A260E0345009D07EB /* Sources */, + 15A3205B260E0345009D07EB /* Frameworks */, + 15A3205C260E0345009D07EB /* CopyFiles */, + 15A322D5260E065D009D07EB /* Copy Artefacts & Headers to Custom Build Dir */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = pEpASN1_iOS; + productName = pEpASN1_iOS; + productReference = 15A3205E260E0345009D07EB /* libpEpASN1_iOS.a */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 15A32016260E02AA009D07EB /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1240; + TargetAttributes = { + 15A3204E260E0330009D07EB = { + CreatedOnToolsVersion = 12.4; + }; + 15A3205D260E0345009D07EB = { + CreatedOnToolsVersion = 12.4; + }; + }; + }; + buildConfigurationList = 15A32019260E02AA009D07EB /* Build configuration list for PBXProject "pEpASN1" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 15A32015260E02AA009D07EB; + productRefGroup = 15A32020260E02AA009D07EB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 15A3204E260E0330009D07EB /* pEpASN1_macOS */, + 15A3205D260E0345009D07EB /* pEpASN1_iOS */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXShellScriptBuildPhase section */ + 15A32292260E0452009D07EB /* Copy Artefacts & Headers to Custom Build Dir */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Copy Artefacts & Headers to Custom Build Dir"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "CUSTOM_BUILD_DIR=\"${PROJECT_DIR}/build\"\nCUSTOM_INCLUDE_DIR=\"${CUSTOM_BUILD_DIR}/include\"\nmkdir -p ${CUSTOM_INCLUDE_DIR}\ncp -R \"${TARGET_BUILD_DIR}\"/usr/local/include/* ${CUSTOM_INCLUDE_DIR}\ncp \"${TARGET_BUILD_DIR}/libpEpASN1_macOS.a\" ${CUSTOM_BUILD_DIR}\n\n"; + }; + 15A322D5260E065D009D07EB /* Copy Artefacts & Headers to Custom Build Dir */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Copy Artefacts & Headers to Custom Build Dir"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "CUSTOM_BUILD_DIR=\"${PROJECT_DIR}/build\"\nCUSTOM_INCLUDE_DIR=\"${CUSTOM_BUILD_DIR}/include\"\nmkdir -p ${CUSTOM_INCLUDE_DIR}\ncp -R \"${PROJECT_DIR}\"/../../../asn.1/*.h ${CUSTOM_INCLUDE_DIR}\ncp \"${TARGET_BUILD_DIR}/libpEpASN1_iOS.a\" ${CUSTOM_BUILD_DIR}\n\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 15A3204C260E0330009D07EB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 15A321AE260E03E3009D07EB /* per_encoder.c in Sources */, + 15A321AB260E03E3009D07EB /* xer_decoder.c in Sources */, + 15A321B8260E03E3009D07EB /* ReceiverRating.c in Sources */, + 15A321AA260E03E3009D07EB /* NativeInteger.c in Sources */, + 15A321A9260E03E3009D07EB /* xer_encoder.c in Sources */, + 15A321BD260E03E3009D07EB /* Rollback.c in Sources */, + 15A321AD260E03E3009D07EB /* constr_SEQUENCE.c in Sources */, + 15A32182260E03E3009D07EB /* constr_SET_OF.c in Sources */, + 15A321B6260E03E3009D07EB /* Identity.c in Sources */, + 15A321B3260E03E3009D07EB /* GroupKeysUpdate.c in Sources */, + 15A3218A260E03E3009D07EB /* OwnKeysOfferer.c in Sources */, + 15A32194260E03E3009D07EB /* Beacon.c in Sources */, + 15A32183260E03E3009D07EB /* ber_tlv_tag.c in Sources */, + 15A321A5260E03E3009D07EB /* GroupTrustThisKey.c in Sources */, + 15A32189260E03E3009D07EB /* PrintableString.c in Sources */, + 15A3219D260E03E3009D07EB /* CommitReject.c in Sources */, + 15A321B0260E03E3009D07EB /* CommitAccept.c in Sources */, + 15A3218E260E03E3009D07EB /* NegotiationRequestGrouped.c in Sources */, + 15A32186260E03E3009D07EB /* GroupKeysForNewMember.c in Sources */, + 15A32181260E03E3009D07EB /* ber_tlv_length.c in Sources */, + 15A321A2260E03E3009D07EB /* Command.c in Sources */, + 15A32185260E03E3009D07EB /* constr_CHOICE.c in Sources */, + 15A321A6260E03E3009D07EB /* Hex.c in Sources */, + 15A3218B260E03E3009D07EB /* IdentityList.c in Sources */, + 15A3217F260E03E3009D07EB /* ElectGroupKeyResetLeader.c in Sources */, + 15A321A7260E03E3009D07EB /* Distribution.c in Sources */, + 15A321BB260E03E3009D07EB /* PString.c in Sources */, + 15A32054260E0330009D07EB /* pEpASN1_macOS.m in Sources */, + 15A32190260E03E3009D07EB /* asn_codecs_prim.c in Sources */, + 15A32184260E03E3009D07EB /* CommitAcceptRequester.c in Sources */, + 15A32191260E03E3009D07EB /* Commands.c in Sources */, + 15A321BC260E03E3009D07EB /* UTF8String.c in Sources */, + 15A32196260E03E3009D07EB /* CommitAcceptOfferer.c in Sources */, + 15A3219C260E03E3009D07EB /* Sync.c in Sources */, + 15A32188260E03E3009D07EB /* NegotiationOpen.c in Sources */, + 15A32192260E03E3009D07EB /* InitUnledGroupKeyReset.c in Sources */, + 15A321A1260E03E3009D07EB /* KeySync.c in Sources */, + 15A321AC260E03E3009D07EB /* pdu_collection.c in Sources */, + 15A321B5260E03E3009D07EB /* xer_support.c in Sources */, + 15A321B7260E03E3009D07EB /* per_support.c in Sources */, + 15A32193260E03E3009D07EB /* NativeEnumerated.c in Sources */, + 15A32195260E03E3009D07EB /* BIT_STRING.c in Sources */, + 15A321A3260E03E3009D07EB /* Version.c in Sources */, + 15A321A4260E03E3009D07EB /* BOOLEAN.c in Sources */, + 15A3219E260E03E3009D07EB /* Rating.c in Sources */, + 15A321B9260E03E3009D07EB /* constraints.c in Sources */, + 15A321AF260E03E3009D07EB /* ISO639-1.c in Sources */, + 15A32197260E03E3009D07EB /* constr_TYPE.c in Sources */, + 15A321B1260E03E3009D07EB /* Hash.c in Sources */, + 15A321B4260E03E3009D07EB /* GroupKeysAndClose.c in Sources */, + 15A321BA260E03E3009D07EB /* NegotiationRequest.c in Sources */, + 15A32199260E03E3009D07EB /* per_opentype.c in Sources */, + 15A3219B260E03E3009D07EB /* SynchronizeGroupKeys.c in Sources */, + 15A321BF260E03E3009D07EB /* GroupHandshake.c in Sources */, + 15A321A0260E03E3009D07EB /* der_encoder.c in Sources */, + 15A321BE260E03E3009D07EB /* constr_SEQUENCE_OF.c in Sources */, + 15A32198260E03E3009D07EB /* per_decoder.c in Sources */, + 15A3218D260E03E3009D07EB /* ber_decoder.c in Sources */, + 15A3219F260E03E3009D07EB /* asn_SEQUENCE_OF.c in Sources */, + 15A3218F260E03E3009D07EB /* OCTET_STRING.c in Sources */, + 15A32180260E03E3009D07EB /* asn_SET_OF.c in Sources */, + 15A32187260E03E3009D07EB /* KeyReset.c in Sources */, + 15A3219A260E03E3009D07EB /* TID.c in Sources */, + 15A3218C260E03E3009D07EB /* CommitAcceptForGroup.c in Sources */, + 15A321B2260E03E3009D07EB /* INTEGER.c in Sources */, + 15A321A8260E03E3009D07EB /* OwnKeysRequester.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15A3205A260E0345009D07EB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 15A321EF260E03E4009D07EB /* per_encoder.c in Sources */, + 15A321EC260E03E4009D07EB /* xer_decoder.c in Sources */, + 15A321F9260E03E4009D07EB /* ReceiverRating.c in Sources */, + 15A321EB260E03E4009D07EB /* NativeInteger.c in Sources */, + 15A321EA260E03E4009D07EB /* xer_encoder.c in Sources */, + 15A321FE260E03E4009D07EB /* Rollback.c in Sources */, + 15A321EE260E03E4009D07EB /* constr_SEQUENCE.c in Sources */, + 15A321C3260E03E4009D07EB /* constr_SET_OF.c in Sources */, + 15A321F7260E03E4009D07EB /* Identity.c in Sources */, + 15A321F4260E03E4009D07EB /* GroupKeysUpdate.c in Sources */, + 15A321CB260E03E4009D07EB /* OwnKeysOfferer.c in Sources */, + 15A321D5260E03E4009D07EB /* Beacon.c in Sources */, + 15A321C4260E03E4009D07EB /* ber_tlv_tag.c in Sources */, + 15A321E6260E03E4009D07EB /* GroupTrustThisKey.c in Sources */, + 15A321CA260E03E4009D07EB /* PrintableString.c in Sources */, + 15A321DE260E03E4009D07EB /* CommitReject.c in Sources */, + 15A321F1260E03E4009D07EB /* CommitAccept.c in Sources */, + 15A321CF260E03E4009D07EB /* NegotiationRequestGrouped.c in Sources */, + 15A321C7260E03E4009D07EB /* GroupKeysForNewMember.c in Sources */, + 15A321C2260E03E4009D07EB /* ber_tlv_length.c in Sources */, + 15A321E3260E03E4009D07EB /* Command.c in Sources */, + 15A321C6260E03E4009D07EB /* constr_CHOICE.c in Sources */, + 15A321E7260E03E4009D07EB /* Hex.c in Sources */, + 15A321CC260E03E4009D07EB /* IdentityList.c in Sources */, + 15A321C0260E03E4009D07EB /* ElectGroupKeyResetLeader.c in Sources */, + 15A321E8260E03E4009D07EB /* Distribution.c in Sources */, + 15A321FC260E03E4009D07EB /* PString.c in Sources */, + 15A32062260E0345009D07EB /* pEpASN1_iOS.m in Sources */, + 15A321D1260E03E4009D07EB /* asn_codecs_prim.c in Sources */, + 15A321C5260E03E4009D07EB /* CommitAcceptRequester.c in Sources */, + 15A321D2260E03E4009D07EB /* Commands.c in Sources */, + 15A321FD260E03E4009D07EB /* UTF8String.c in Sources */, + 15A321D7260E03E4009D07EB /* CommitAcceptOfferer.c in Sources */, + 15A321DD260E03E4009D07EB /* Sync.c in Sources */, + 15A321C9260E03E4009D07EB /* NegotiationOpen.c in Sources */, + 15A321D3260E03E4009D07EB /* InitUnledGroupKeyReset.c in Sources */, + 15A321E2260E03E4009D07EB /* KeySync.c in Sources */, + 15A321ED260E03E4009D07EB /* pdu_collection.c in Sources */, + 15A321F6260E03E4009D07EB /* xer_support.c in Sources */, + 15A321F8260E03E4009D07EB /* per_support.c in Sources */, + 15A321D4260E03E4009D07EB /* NativeEnumerated.c in Sources */, + 15A321D6260E03E4009D07EB /* BIT_STRING.c in Sources */, + 15A321E4260E03E4009D07EB /* Version.c in Sources */, + 15A321E5260E03E4009D07EB /* BOOLEAN.c in Sources */, + 15A321DF260E03E4009D07EB /* Rating.c in Sources */, + 15A321FA260E03E4009D07EB /* constraints.c in Sources */, + 15A321F0260E03E4009D07EB /* ISO639-1.c in Sources */, + 15A321D8260E03E4009D07EB /* constr_TYPE.c in Sources */, + 15A321F2260E03E4009D07EB /* Hash.c in Sources */, + 15A321F5260E03E4009D07EB /* GroupKeysAndClose.c in Sources */, + 15A321FB260E03E4009D07EB /* NegotiationRequest.c in Sources */, + 15A321DA260E03E4009D07EB /* per_opentype.c in Sources */, + 15A321DC260E03E4009D07EB /* SynchronizeGroupKeys.c in Sources */, + 15A32200260E03E4009D07EB /* GroupHandshake.c in Sources */, + 15A321E1260E03E4009D07EB /* der_encoder.c in Sources */, + 15A321FF260E03E4009D07EB /* constr_SEQUENCE_OF.c in Sources */, + 15A321D9260E03E4009D07EB /* per_decoder.c in Sources */, + 15A321CE260E03E4009D07EB /* ber_decoder.c in Sources */, + 15A321E0260E03E4009D07EB /* asn_SEQUENCE_OF.c in Sources */, + 15A321D0260E03E4009D07EB /* OCTET_STRING.c in Sources */, + 15A321C1260E03E4009D07EB /* asn_SET_OF.c in Sources */, + 15A321C8260E03E4009D07EB /* KeyReset.c in Sources */, + 15A321DB260E03E4009D07EB /* TID.c in Sources */, + 15A321CD260E03E4009D07EB /* CommitAcceptForGroup.c in Sources */, + 15A321F3260E03E4009D07EB /* INTEGER.c in Sources */, + 15A321E9260E03E4009D07EB /* OwnKeysRequester.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 15A32025260E02AA009D07EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.4; + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 15A32026260E02AA009D07EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.4; + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 15A32055260E0330009D07EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + EXECUTABLE_PREFIX = lib; + MACOSX_DEPLOYMENT_TARGET = "${inherited}"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 15A32056260E0330009D07EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + EXECUTABLE_PREFIX = lib; + MACOSX_DEPLOYMENT_TARGET = "${inherited}"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 15A32065260E0345009D07EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 15A32066260E0345009D07EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 15A32019260E02AA009D07EB /* Build configuration list for PBXProject "pEpASN1" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 15A32025260E02AA009D07EB /* Debug */, + 15A32026260E02AA009D07EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 15A32057260E0330009D07EB /* Build configuration list for PBXNativeTarget "pEpASN1_macOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 15A32055260E0330009D07EB /* Debug */, + 15A32056260E0330009D07EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 15A32064260E0345009D07EB /* Build configuration list for PBXNativeTarget "pEpASN1_iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 15A32065260E0345009D07EB /* Debug */, + 15A32066260E0345009D07EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 15A32016260E02AA009D07EB /* Project object */; +} diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/build-mac/Subprojects/pEpASN1/pEpASN1.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1/Info.plist b/build-mac/Subprojects/pEpASN1/pEpASN1/Info.plist new file mode 100644 index 00000000..9bcb2444 --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + + diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1/pEpASN1.h b/build-mac/Subprojects/pEpASN1/pEpASN1/pEpASN1.h new file mode 100644 index 00000000..e0927fcd --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1/pEpASN1.h @@ -0,0 +1,18 @@ +// +// pEpASN1.h +// pEpASN1 +// +// Created by Andreas Buff on 26.03.21. +// + +#import + +//! Project version number for pEpASN1. +FOUNDATION_EXPORT double pEpASN1VersionNumber; + +//! Project version string for pEpASN1. +FOUNDATION_EXPORT const unsigned char pEpASN1VersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1_iOS/pEpASN1_iOS.h b/build-mac/Subprojects/pEpASN1/pEpASN1_iOS/pEpASN1_iOS.h new file mode 100644 index 00000000..3d6052ae --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1_iOS/pEpASN1_iOS.h @@ -0,0 +1,12 @@ +// +// pEpASN1_iOS.h +// pEpASN1_iOS +// +// Created by Andreas Buff on 26.03.21. +// + +#import + +@interface pEpASN1_iOS : NSObject + +@end diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1_iOS/pEpASN1_iOS.m b/build-mac/Subprojects/pEpASN1/pEpASN1_iOS/pEpASN1_iOS.m new file mode 100644 index 00000000..edda71cb --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1_iOS/pEpASN1_iOS.m @@ -0,0 +1,12 @@ +// +// pEpASN1_iOS.m +// pEpASN1_iOS +// +// Created by Andreas Buff on 26.03.21. +// + +#import "pEpASN1_iOS.h" + +@implementation pEpASN1_iOS + +@end diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1_macOS/pEpASN1_macOS.h b/build-mac/Subprojects/pEpASN1/pEpASN1_macOS/pEpASN1_macOS.h new file mode 100644 index 00000000..49f55262 --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1_macOS/pEpASN1_macOS.h @@ -0,0 +1,12 @@ +// +// pEpASN1_macOS.h +// pEpASN1_macOS +// +// Created by Andreas Buff on 26.03.21. +// + +#import + +@interface pEpASN1_macOS : NSObject + +@end diff --git a/build-mac/Subprojects/pEpASN1/pEpASN1_macOS/pEpASN1_macOS.m b/build-mac/Subprojects/pEpASN1/pEpASN1_macOS/pEpASN1_macOS.m new file mode 100644 index 00000000..7c0cfffa --- /dev/null +++ b/build-mac/Subprojects/pEpASN1/pEpASN1_macOS/pEpASN1_macOS.m @@ -0,0 +1,12 @@ +// +// pEpASN1_macOS.m +// pEpASN1_macOS +// +// Created by Andreas Buff on 26.03.21. +// + +#import "pEpASN1_macOS.h" + +@implementation pEpASN1_macOS + +@end diff --git a/build-mac/generated-files-asn1.txt b/build-mac/generated-files-asn1.txt index a6e3acf6..64669b90 100644 --- a/build-mac/generated-files-asn1.txt +++ b/build-mac/generated-files-asn1.txt @@ -70,6 +70,10 @@ $(SRCROOT)/../asn.1/PString.c $(SRCROOT)/../asn.1/PString.h $(SRCROOT)/../asn.1/PrintableString.c $(SRCROOT)/../asn.1/PrintableString.h +$(SRCROOT)/../asn.1/Rating.c +$(SRCROOT)/../asn.1/Rating.h +$(SRCROOT)/../asn.1/ReceiverRating.c +$(SRCROOT)/../asn.1/ReceiverRating.h $(SRCROOT)/../asn.1/Rollback.c $(SRCROOT)/../asn.1/Rollback.h $(SRCROOT)/../asn.1/Sync.c diff --git a/build-mac/pEpEngine.xcodeproj/project.pbxproj b/build-mac/pEpEngine.xcodeproj/project.pbxproj index 27bc4936..dea69f33 100644 --- a/build-mac/pEpEngine.xcodeproj/project.pbxproj +++ b/build-mac/pEpEngine.xcodeproj/project.pbxproj @@ -6,11 +6,34 @@ objectVersion = 51; objects = { +/* Begin PBXAggregateTarget section */ + 150845DE25F13CE700D46DA6 /* generate_code */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 150845E525F13CE700D46DA6 /* Build configuration list for PBXAggregateTarget "generate_code" */; + buildPhases = ( + 150845EA25F13CF100D46DA6 /* ShellScript */, + ); + dependencies = ( + ); + name = generate_code; + productName = generate_code; + }; +/* End PBXAggregateTarget section */ + /* Begin PBXBuildFile section */ - 15147EF0237E9EA7003989FE /* NegotiationRequestGrouped.h in Headers */ = {isa = PBXBuildFile; fileRef = 15147EE8237E9EA7003989FE /* NegotiationRequestGrouped.h */; }; - 15147EF1237E9EA7003989FE /* GroupHandshake.h in Headers */ = {isa = PBXBuildFile; fileRef = 15147EED237E9EA7003989FE /* GroupHandshake.h */; }; - 15147EF2237E9EA7003989FE /* GroupKeysAndClose.c in Sources */ = {isa = PBXBuildFile; fileRef = 15147EEE237E9EA7003989FE /* GroupKeysAndClose.c */; }; - 15147EF3237E9EA7003989FE /* GroupKeysAndClose.h in Headers */ = {isa = PBXBuildFile; fileRef = 15147EEF237E9EA7003989FE /* GroupKeysAndClose.h */; }; + 1543DA422577F8BE0041EFB5 /* Sync_actions.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188A9223C4B2DE008EF79C /* Sync_actions.c */; }; + 1543DA432577F8BE0041EFB5 /* Sync_event.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188A9023C4B2DE008EF79C /* Sync_event.c */; }; + 1543DA442577F8BE0041EFB5 /* Sync_func.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188A8E23C4B2DE008EF79C /* Sync_func.c */; }; + 1543DA452577F8BE0041EFB5 /* Sync_func.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188A8C23C4B2DE008EF79C /* Sync_func.h */; }; + 1543DA462577F8BE0041EFB5 /* sync_codec.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188A9123C4B2DE008EF79C /* sync_codec.h */; }; + 1543DA472577F8BE0041EFB5 /* KeySync_fsm.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188A8B23C4B2DE008EF79C /* KeySync_fsm.c */; }; + 1543DA482577F8BE0041EFB5 /* sync_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188A8623C4B2DD008EF79C /* sync_codec.c */; }; + 1543DA492577F8BE0041EFB5 /* KeySync_fsm.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188A8923C4B2DD008EF79C /* KeySync_fsm.h */; }; + 1543DA4A2577F8BE0041EFB5 /* Sync_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188A8F23C4B2DE008EF79C /* Sync_impl.c */; }; + 1543DA4B2577F8BE0041EFB5 /* Sync_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188A8723C4B2DD008EF79C /* Sync_impl.h */; }; + 1543DA4C2577F8BE0041EFB5 /* Sync_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188A8823C4B2DD008EF79C /* Sync_event.h */; }; + 1543DAA9257801880041EFB5 /* baseprotocol.c in Sources */ = {isa = PBXBuildFile; fileRef = 646C414C1D510D8800C63EFF /* baseprotocol.c */; }; + 1543DAAD257801A90041EFB5 /* resource_id.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F6921C1F164A47009418F5 /* resource_id.c */; }; 154917FD22B926700091B6D6 /* libnettle.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 154917F922B9266F0091B6D6 /* libnettle.a */; }; 154917FE22B926700091B6D6 /* libsequoia_openpgp_ffi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 154917FA22B926700091B6D6 /* libsequoia_openpgp_ffi.a */; }; 154917FF22B926700091B6D6 /* libhogweed.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 154917FB22B926700091B6D6 /* libhogweed.a */; }; @@ -24,124 +47,64 @@ 154918BC22B940200091B6D6 /* openpgp_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 154918A322B9401F0091B6D6 /* openpgp_compat.h */; }; 154918BD22B940200091B6D6 /* growing_buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 154918A422B9401F0091B6D6 /* growing_buf.h */; }; 154918C322B940200091B6D6 /* blacklist.h in Headers */ = {isa = PBXBuildFile; fileRef = 154918AA22B940200091B6D6 /* blacklist.h */; }; - 158FF95B23C49ED600CB1016 /* KeyReset.c in Sources */ = {isa = PBXBuildFile; fileRef = 158FF95223C49ED500CB1016 /* KeyReset.c */; }; - 158FF95C23C49ED600CB1016 /* KeyReset.h in Headers */ = {isa = PBXBuildFile; fileRef = 158FF95323C49ED500CB1016 /* KeyReset.h */; }; - 158FF95D23C49ED600CB1016 /* InitUnledGroupKeyReset.h in Headers */ = {isa = PBXBuildFile; fileRef = 158FF95423C49ED500CB1016 /* InitUnledGroupKeyReset.h */; }; - 158FF95E23C49ED600CB1016 /* Distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 158FF95523C49ED600CB1016 /* Distribution.h */; }; - 158FF95F23C49ED600CB1016 /* GroupKeysUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 158FF95623C49ED600CB1016 /* GroupKeysUpdate.h */; }; - 158FF96123C49ED600CB1016 /* Distribution.c in Sources */ = {isa = PBXBuildFile; fileRef = 158FF95823C49ED600CB1016 /* Distribution.c */; }; - 158FF96223C49ED600CB1016 /* GroupKeysForNewMember.h in Headers */ = {isa = PBXBuildFile; fileRef = 158FF95923C49ED600CB1016 /* GroupKeysForNewMember.h */; }; - 158FF96323C49ED600CB1016 /* InitUnledGroupKeyReset.c in Sources */ = {isa = PBXBuildFile; fileRef = 158FF95A23C49ED600CB1016 /* InitUnledGroupKeyReset.c */; }; + 1552DB142577D4F100A92F71 /* pEpEngine_macOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 1552DB132577D4F100A92F71 /* pEpEngine_macOS.h */; }; + 1552DB162577D4F100A92F71 /* pEpEngine_macOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 1552DB152577D4F100A92F71 /* pEpEngine_macOS.m */; }; + 1552DC012577D67800A92F71 /* transport.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826751B455D0800EECAF0 /* transport.c */; }; + 1552DC052577D67D00A92F71 /* trans_auto.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826731B455D0800EECAF0 /* trans_auto.c */; }; + 1552DC092577D68000A92F71 /* timestamp.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826711B455D0800EECAF0 /* timestamp.c */; }; + 1552DC0D2577D68500A92F71 /* stringpair.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A8266F1B455D0800EECAF0 /* stringpair.c */; }; + 1552DC112577D68900A92F71 /* stringlist.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A8266D1B455D0800EECAF0 /* stringlist.c */; }; + 1552DC152577D68F00A92F71 /* platform_unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826651B455D0800EECAF0 /* platform_unix.c */; }; + 1552DC192577D69300A92F71 /* pEpEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 64A826611B455D0800EECAF0 /* pEpEngine.h */; }; + 1552DC1D2577D69A00A92F71 /* pEpEngine.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826601B455D0800EECAF0 /* pEpEngine.c */; }; + 1552DC212577D6A000A92F71 /* mime.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A8265D1B455D0800EECAF0 /* mime.c */; }; + 1552DC252577D6A600A92F71 /* message.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A8265B1B455D0800EECAF0 /* message.c */; }; + 1552DC292577D6AA00A92F71 /* message_api.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826591B455D0800EECAF0 /* message_api.c */; }; + 1552DC2D2577D6AE00A92F71 /* keymanagement.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826571B455D0800EECAF0 /* keymanagement.c */; }; + 1552DC312577D6B100A92F71 /* identity_list.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826551B455D0800EECAF0 /* identity_list.c */; }; + 1552DC352577D6B500A92F71 /* etpan_mime.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826531B455D0800EECAF0 /* etpan_mime.c */; }; + 1552DC392577D6B900A92F71 /* email.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A826511B455D0800EECAF0 /* email.c */; }; + 1552DC3D2577D6BE00A92F71 /* cryptotech.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A8264E1B455D0800EECAF0 /* cryptotech.c */; }; + 1552DC412577D6C200A92F71 /* bloblist.c in Sources */ = {isa = PBXBuildFile; fileRef = 64A8264C1B455D0800EECAF0 /* bloblist.c */; }; + 1552DC452577D6C600A92F71 /* blacklist.c in Sources */ = {isa = PBXBuildFile; fileRef = 430D258A1C9ED75A00B94535 /* blacklist.c */; }; + 1552DC492577D6C900A92F71 /* map_asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 646788881CEB3D120001F54C /* map_asn1.h */; }; + 1552DC4D2577D6CD00A92F71 /* map_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 646788871CEB3D120001F54C /* map_asn1.c */; }; + 1552DC512577D6D000A92F71 /* baseprotocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 646C414D1D510D8800C63EFF /* baseprotocol.h */; }; + 1552DC552577D6D700A92F71 /* pEp_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 430BCC462015EE800077E998 /* pEp_string.h */; }; + 1552DC592577D6DB00A92F71 /* pEp_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 430BCC472015EE800077E998 /* pEp_string.c */; }; + 1552DC5D2577D6DE00A92F71 /* sync_api.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F73C092166282C00AB4524 /* sync_api.c */; }; + 1552DC612577D6E000A92F71 /* openpgp_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F73C032166282C00AB4524 /* openpgp_compat.c */; }; + 1552DC652577D6F900A92F71 /* keyreset_command.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188AA223C4B4B3008EF79C /* keyreset_command.c */; }; + 1552DC662577D6F900A92F71 /* distribution_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188ABE23C4BBDD008EF79C /* distribution_codec.c */; }; + 1552DC682577D6F900A92F71 /* internal_format.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C3778D246A8C0300962D22 /* internal_format.c */; }; + 1552DC692577D6F900A92F71 /* growing_buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F73C0A2166282C00AB4524 /* growing_buf.c */; }; + 1552DC6A2577D6F900A92F71 /* pgp_sequoia.c in Sources */ = {isa = PBXBuildFile; fileRef = 159EF42422B6D3E900149C0C /* pgp_sequoia.c */; }; + 1552DC6B2577D6F900A92F71 /* labeled_int_list.c in Sources */ = {isa = PBXBuildFile; fileRef = 438C43B42167752C00C7425B /* labeled_int_list.c */; }; + 1552DC6C2577D6F900A92F71 /* key_reset.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F73C052166282C00AB4524 /* key_reset.c */; }; + 1552DC6D2577D6F900A92F71 /* aux_mime_msg.c in Sources */ = {isa = PBXBuildFile; fileRef = 154918A222B9401F0091B6D6 /* aux_mime_msg.c */; }; + 1552DC6E2577D6F900A92F71 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = C46EBAE7216E445F0042A6A3 /* base64.c */; }; + 1552DC722577D70000A92F71 /* key_reset.h in Headers */ = {isa = PBXBuildFile; fileRef = 431F04B222733A7E00CCE960 /* key_reset.h */; }; + 1552DC762577D70400A92F71 /* labeled_int_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 438C43AF2167752C00C7425B /* labeled_int_list.h */; }; + 1552DC7A2577D70700A92F71 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = C46EBAEC216E445F0042A6A3 /* base64.h */; }; + 1552DC7F2577D71800A92F71 /* pgp_sequoia_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 159EF42622B6D3E900149C0C /* pgp_sequoia_internal.h */; }; + 1552DC802577D71800A92F71 /* fsm_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 1549189222B9401D0091B6D6 /* fsm_common.h */; }; + 1552DC812577D71800A92F71 /* aux_mime_msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 1549189922B9401E0091B6D6 /* aux_mime_msg.h */; }; + 1552DC822577D71800A92F71 /* resource_id.h in Headers */ = {isa = PBXBuildFile; fileRef = 154918A122B9401F0091B6D6 /* resource_id.h */; }; + 1552DC832577D71800A92F71 /* openpgp_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 154918A322B9401F0091B6D6 /* openpgp_compat.h */; }; + 1552DC842577D71800A92F71 /* keyreset_command.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188AA723C4B4B3008EF79C /* keyreset_command.h */; }; + 1552DC852577D71800A92F71 /* blacklist.h in Headers */ = {isa = PBXBuildFile; fileRef = 154918AA22B940200091B6D6 /* blacklist.h */; }; + 1552DC862577D71800A92F71 /* pgp_sequoia.h in Headers */ = {isa = PBXBuildFile; fileRef = 159EF42522B6D3E900149C0C /* pgp_sequoia.h */; }; + 1552DC872577D71800A92F71 /* growing_buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 154918A422B9401F0091B6D6 /* growing_buf.h */; }; + 1552DC882577D71800A92F71 /* internal_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C37788246A8C0300962D22 /* internal_format.h */; }; + 1552DC892577D71800A92F71 /* status_to_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 1549189322B9401E0091B6D6 /* status_to_string.h */; }; + 1552DC8A2577D71800A92F71 /* distribution_codec.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188ABF23C4BBDE008EF79C /* distribution_codec.h */; }; 159EF42722B6D3E900149C0C /* pgp_sequoia.c in Sources */ = {isa = PBXBuildFile; fileRef = 159EF42422B6D3E900149C0C /* pgp_sequoia.c */; }; 159EF42822B6D3E900149C0C /* pgp_sequoia.h in Headers */ = {isa = PBXBuildFile; fileRef = 159EF42522B6D3E900149C0C /* pgp_sequoia.h */; }; 159EF42922B6D3E900149C0C /* pgp_sequoia_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 159EF42622B6D3E900149C0C /* pgp_sequoia_internal.h */; }; - 15B037AA22B2B822002D664C /* ber_tlv_length.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0373F22B2B816002D664C /* ber_tlv_length.c */; }; - 15B037AC22B2B822002D664C /* CommitAccept.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374122B2B817002D664C /* CommitAccept.c */; }; - 15B037AD22B2B822002D664C /* Rollback.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0374222B2B817002D664C /* Rollback.h */; }; - 15B037AE22B2B822002D664C /* NegotiationOpen.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374322B2B817002D664C /* NegotiationOpen.c */; }; - 15B037AF22B2B822002D664C /* constr_SEQUENCE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374422B2B817002D664C /* constr_SEQUENCE.c */; }; - 15B037B022B2B822002D664C /* UTF8String.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374522B2B817002D664C /* UTF8String.c */; }; - 15B037B122B2B822002D664C /* NegotiationRequest.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374622B2B817002D664C /* NegotiationRequest.c */; }; - 15B037B222B2B822002D664C /* Identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0374722B2B817002D664C /* Identity.h */; }; - 15B037B322B2B822002D664C /* Beacon.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374822B2B817002D664C /* Beacon.c */; }; - 15B037B422B2B822002D664C /* PString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0374922B2B817002D664C /* PString.h */; }; - 15B037B522B2B822002D664C /* OCTET_STRING.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374A22B2B817002D664C /* OCTET_STRING.c */; }; - 15B037B622B2B822002D664C /* IdentityList.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0374B22B2B817002D664C /* IdentityList.h */; }; - 15B037B722B2B822002D664C /* Sync.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374C22B2B818002D664C /* Sync.c */; }; - 15B037B822B2B822002D664C /* NativeInteger.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0374D22B2B818002D664C /* NativeInteger.h */; }; - 15B037B922B2B822002D664C /* NativeEnumerated.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0374E22B2B818002D664C /* NativeEnumerated.c */; }; - 15B037BA22B2B822002D664C /* asn_system.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0374F22B2B818002D664C /* asn_system.h */; }; - 15B037BB22B2B822002D664C /* der_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375022B2B818002D664C /* der_encoder.c */; }; - 15B037BC22B2B822002D664C /* OwnKeysRequester.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375122B2B818002D664C /* OwnKeysRequester.c */; }; - 15B037BD22B2B822002D664C /* CommitAcceptOfferer.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0375222B2B818002D664C /* CommitAcceptOfferer.h */; }; - 15B037BE22B2B822002D664C /* ber_tlv_tag.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375322B2B818002D664C /* ber_tlv_tag.c */; }; - 15B037BF22B2B822002D664C /* BOOLEAN.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0375422B2B818002D664C /* BOOLEAN.h */; }; - 15B037C022B2B822002D664C /* per_opentype.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0375522B2B819002D664C /* per_opentype.h */; }; - 15B037C122B2B822002D664C /* Identity.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375622B2B819002D664C /* Identity.c */; }; - 15B037C222B2B822002D664C /* asn_SEQUENCE_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375722B2B819002D664C /* asn_SEQUENCE_OF.c */; }; - 15B037C322B2B822002D664C /* constr_SEQUENCE_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375822B2B819002D664C /* constr_SEQUENCE_OF.c */; }; - 15B037C422B2B822002D664C /* pdu_collection.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375922B2B819002D664C /* pdu_collection.c */; }; - 15B037C522B2B822002D664C /* Beacon.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0375A22B2B819002D664C /* Beacon.h */; }; - 15B037C622B2B822002D664C /* xer_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375B22B2B819002D664C /* xer_support.c */; }; - 15B037C722B2B822002D664C /* per_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0375C22B2B819002D664C /* per_decoder.c */; }; - 15B037C822B2B822002D664C /* ISO639-1.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0375D22B2B819002D664C /* ISO639-1.h */; }; - 15B037C922B2B822002D664C /* xer_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0375E22B2B81A002D664C /* xer_decoder.h */; }; - 15B037CA22B2B822002D664C /* PrintableString.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0375F22B2B81A002D664C /* PrintableString.h */; }; - 15B037CB22B2B822002D664C /* ISO639-1.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0376022B2B81A002D664C /* ISO639-1.c */; }; - 15B037CC22B2B822002D664C /* ber_tlv_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376122B2B81A002D664C /* ber_tlv_tag.h */; }; - 15B037CD22B2B822002D664C /* PString.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0376222B2B81A002D664C /* PString.c */; }; - 15B037CE22B2B822002D664C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376322B2B81A002D664C /* Hash.h */; }; - 15B037CF22B2B822002D664C /* NativeEnumerated.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376422B2B81A002D664C /* NativeEnumerated.h */; }; - 15B037D022B2B822002D664C /* constr_TYPE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376522B2B81A002D664C /* constr_TYPE.h */; }; - 15B037D122B2B822002D664C /* per_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0376622B2B81B002D664C /* per_encoder.c */; }; - 15B037D222B2B822002D664C /* CommitAcceptRequester.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0376722B2B81B002D664C /* CommitAcceptRequester.c */; }; - 15B037D322B2B822002D664C /* CommitReject.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376822B2B81B002D664C /* CommitReject.h */; }; - 15B037D422B2B822002D664C /* NegotiationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376922B2B81B002D664C /* NegotiationRequest.h */; }; - 15B037D522B2B822002D664C /* TID.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376A22B2B81B002D664C /* TID.h */; }; - 15B037D622B2B822002D664C /* KeySync.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376B22B2B81B002D664C /* KeySync.h */; }; - 15B037D722B2B822002D664C /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376C22B2B81B002D664C /* UTF8String.h */; }; - 15B037D822B2B822002D664C /* Version.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376D22B2B81C002D664C /* Version.h */; }; - 15B037D922B2B822002D664C /* xer_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376E22B2B81C002D664C /* xer_encoder.h */; }; - 15B037DA22B2B822002D664C /* asn_SET_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0376F22B2B81C002D664C /* asn_SET_OF.h */; }; - 15B037DB22B2B822002D664C /* asn_codecs_prim.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0377022B2B81C002D664C /* asn_codecs_prim.h */; }; - 15B037DC22B2B822002D664C /* constraints.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0377122B2B81C002D664C /* constraints.h */; }; - 15B037DD22B2B822002D664C /* Rollback.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377222B2B81C002D664C /* Rollback.c */; }; - 15B037DE22B2B822002D664C /* KeySync.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377322B2B81C002D664C /* KeySync.c */; }; - 15B037DF22B2B822002D664C /* IdentityList.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377422B2B81C002D664C /* IdentityList.c */; }; - 15B037E022B2B822002D664C /* TID.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377522B2B81D002D664C /* TID.c */; }; - 15B037E122B2B822002D664C /* GroupTrustThisKey.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377622B2B81D002D664C /* GroupTrustThisKey.c */; }; - 15B037E222B2B822002D664C /* per_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0377722B2B81D002D664C /* per_encoder.h */; }; - 15B037E422B2B822002D664C /* xer_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377922B2B81D002D664C /* xer_decoder.c */; }; - 15B037E522B2B822002D664C /* constr_SEQUENCE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0377A22B2B81D002D664C /* constr_SEQUENCE.h */; }; - 15B037E622B2B822002D664C /* constr_CHOICE.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0377B22B2B81D002D664C /* constr_CHOICE.h */; }; - 15B037E722B2B822002D664C /* GroupTrustThisKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0377C22B2B81D002D664C /* GroupTrustThisKey.h */; }; - 15B037E822B2B822002D664C /* constr_TYPE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377D22B2B81D002D664C /* constr_TYPE.c */; }; - 15B037E922B2B822002D664C /* CommitAcceptOfferer.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377E22B2B81D002D664C /* CommitAcceptOfferer.c */; }; - 15B037EA22B2B822002D664C /* BIT_STRING.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0377F22B2B81E002D664C /* BIT_STRING.c */; }; - 15B037EB22B2B822002D664C /* constr_SET_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0378022B2B81E002D664C /* constr_SET_OF.c */; }; - 15B037EC22B2B822002D664C /* constraints.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0378122B2B81E002D664C /* constraints.c */; }; - 15B037ED22B2B822002D664C /* BIT_STRING.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378222B2B81E002D664C /* BIT_STRING.h */; }; - 15B037EE22B2B822002D664C /* der_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378322B2B81E002D664C /* der_encoder.h */; }; - 15B037EF22B2B822002D664C /* ber_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378422B2B81E002D664C /* ber_decoder.h */; }; - 15B037F022B2B822002D664C /* NegotiationOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378522B2B81E002D664C /* NegotiationOpen.h */; }; - 15B037F122B2B822002D664C /* OCTET_STRING.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378622B2B81E002D664C /* OCTET_STRING.h */; }; - 15B037F222B2B822002D664C /* constr_SEQUENCE_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378722B2B81E002D664C /* constr_SEQUENCE_OF.h */; }; - 15B037F322B2B822002D664C /* CommitAccept.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378822B2B81F002D664C /* CommitAccept.h */; }; - 15B037F422B2B822002D664C /* ber_decoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0378922B2B81F002D664C /* ber_decoder.c */; }; - 15B037F522B2B822002D664C /* INTEGER.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0378A22B2B81F002D664C /* INTEGER.c */; }; - 15B037F622B2B822002D664C /* Version.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0378B22B2B81F002D664C /* Version.c */; }; - 15B037F722B2B822002D664C /* per_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378C22B2B81F002D664C /* per_decoder.h */; }; - 15B037F822B2B822002D664C /* OwnKeysOfferer.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0378D22B2B81F002D664C /* OwnKeysOfferer.c */; }; - 15B037F922B2B822002D664C /* per_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378E22B2B81F002D664C /* per_support.h */; }; - 15B037FA22B2B822002D664C /* INTEGER.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0378F22B2B81F002D664C /* INTEGER.h */; }; - 15B037FB22B2B822002D664C /* Hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379022B2B81F002D664C /* Hash.c */; }; - 15B037FC22B2B822002D664C /* Hex.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379122B2B820002D664C /* Hex.c */; }; - 15B037FD22B2B822002D664C /* Hex.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379222B2B820002D664C /* Hex.h */; }; - 15B037FE22B2B822002D664C /* xer_encoder.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379322B2B820002D664C /* xer_encoder.c */; }; - 15B037FF22B2B822002D664C /* per_opentype.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379422B2B820002D664C /* per_opentype.c */; }; - 15B0380022B2B822002D664C /* xer_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379522B2B820002D664C /* xer_support.h */; }; - 15B0380122B2B822002D664C /* asn_SET_OF.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379622B2B820002D664C /* asn_SET_OF.c */; }; - 15B0380222B2B822002D664C /* ber_tlv_length.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379722B2B820002D664C /* ber_tlv_length.h */; }; - 15B0380322B2B822002D664C /* OwnKeysRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379822B2B820002D664C /* OwnKeysRequester.h */; }; - 15B0380422B2B822002D664C /* constr_SET_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379922B2B821002D664C /* constr_SET_OF.h */; }; - 15B0380522B2B822002D664C /* asn_codecs_prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379A22B2B821002D664C /* asn_codecs_prim.c */; }; - 15B0380622B2B822002D664C /* CommitAcceptForGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379B22B2B821002D664C /* CommitAcceptForGroup.h */; }; - 15B0380722B2B822002D664C /* constr_CHOICE.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379C22B2B821002D664C /* constr_CHOICE.c */; }; - 15B0380822B2B822002D664C /* asn_codecs.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379D22B2B821002D664C /* asn_codecs.h */; }; - 15B0380922B2B822002D664C /* per_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B0379E22B2B821002D664C /* per_support.c */; }; - 15B0380A22B2B822002D664C /* asn_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B0379F22B2B821002D664C /* asn_internal.h */; }; - 15B0380B22B2B822002D664C /* NativeInteger.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B037A022B2B821002D664C /* NativeInteger.c */; }; - 15B0380C22B2B822002D664C /* BOOLEAN.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B037A122B2B821002D664C /* BOOLEAN.c */; }; - 15B0380D22B2B822002D664C /* CommitReject.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B037A222B2B822002D664C /* CommitReject.c */; }; - 15B0380E22B2B822002D664C /* PrintableString.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B037A322B2B822002D664C /* PrintableString.c */; }; - 15B0380F22B2B823002D664C /* Sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B037A422B2B822002D664C /* Sync.h */; }; - 15B0381022B2B823002D664C /* CommitAcceptRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B037A522B2B822002D664C /* CommitAcceptRequester.h */; }; - 15B0381122B2B823002D664C /* CommitAcceptForGroup.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B037A622B2B822002D664C /* CommitAcceptForGroup.c */; }; - 15B0381222B2B823002D664C /* OwnKeysOfferer.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B037A722B2B822002D664C /* OwnKeysOfferer.h */; }; - 15B0381322B2B823002D664C /* asn_application.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B037A822B2B822002D664C /* asn_application.h */; }; - 15B0381422B2B823002D664C /* asn_SEQUENCE_OF.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B037A922B2B822002D664C /* asn_SEQUENCE_OF.h */; }; - 15B75BE223FA9F9D00DAE976 /* SynchronizeGroupKeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B75BDC23FA9F9D00DAE976 /* SynchronizeGroupKeys.c */; }; - 15B75BE323FA9F9D00DAE976 /* SynchronizeGroupKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B75BE123FA9F9D00DAE976 /* SynchronizeGroupKeys.h */; }; + 15A3233E260E0D2A009D07EB /* libpEpASN1_iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 15A322F7260E0B75009D07EB /* libpEpASN1_iOS.a */; }; + 15A32429260E1873009D07EB /* libpEpASN1_macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 15A322F5260E0B75009D07EB /* libpEpASN1_macOS.a */; }; + 15A326E326120AB0009D07EB /* libPEPSQLITE3_iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 15A3266426120618009D07EB /* libPEPSQLITE3_iOS.a */; }; + 15A326E826120AB6009D07EB /* libPEPSQLITE3_macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 15A3266626120618009D07EB /* libPEPSQLITE3_macOS.a */; }; 430BCC482015EE800077E998 /* pEp_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 430BCC462015EE800077E998 /* pEp_string.h */; }; 430BCC492015EE800077E998 /* pEp_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 430BCC472015EE800077E998 /* pEp_string.c */; }; 430D258B1C9ED75A00B94535 /* blacklist.c in Sources */ = {isa = PBXBuildFile; fileRef = 430D258A1C9ED75A00B94535 /* blacklist.c */; }; @@ -158,25 +121,13 @@ 43188A9F23C4B2DE008EF79C /* Sync_actions.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188A9223C4B2DE008EF79C /* Sync_actions.c */; }; 43188AA823C4B4B3008EF79C /* keyreset_command.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188AA223C4B4B3008EF79C /* keyreset_command.c */; }; 43188AA923C4B4B3008EF79C /* keyreset_command.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188AA723C4B4B3008EF79C /* keyreset_command.h */; }; - 43188AAC23C4B549008EF79C /* Commands.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188AAA23C4B549008EF79C /* Commands.c */; }; - 43188AAD23C4B549008EF79C /* Commands.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188AAB23C4B549008EF79C /* Commands.h */; }; - 43188AB623C4B6B9008EF79C /* Command.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188AB023C4B6B9008EF79C /* Command.c */; }; - 43188AB723C4B6B9008EF79C /* Command.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188AB523C4B6B9008EF79C /* Command.h */; }; 43188AC023C4BBDE008EF79C /* distribution_codec.c in Sources */ = {isa = PBXBuildFile; fileRef = 43188ABE23C4BBDD008EF79C /* distribution_codec.c */; }; 43188AC123C4BBDE008EF79C /* distribution_codec.h in Headers */ = {isa = PBXBuildFile; fileRef = 43188ABF23C4BBDE008EF79C /* distribution_codec.h */; }; 431F04B722733A7E00CCE960 /* key_reset.h in Headers */ = {isa = PBXBuildFile; fileRef = 431F04B222733A7E00CCE960 /* key_reset.h */; }; - 432713B023A10B07007EAD4A /* GroupKeysForNewMember.c in Sources */ = {isa = PBXBuildFile; fileRef = 432713AF23A10B07007EAD4A /* GroupKeysForNewMember.c */; }; - 432714AB23A10B3B007EAD4A /* GroupKeysUpdate.c in Sources */ = {isa = PBXBuildFile; fileRef = 432714AA23A10B3B007EAD4A /* GroupKeysUpdate.c */; }; - 43370833203C075A004E6547 /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = 4337082D203C075A004E6547 /* sqlite3.c */; }; - 43370834203C075A004E6547 /* sqlite3.h in Headers */ = {isa = PBXBuildFile; fileRef = 43370832203C075A004E6547 /* sqlite3.h */; }; - 4378C79123D1AF1700D1AF3F /* ElectGroupKeyResetLeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4378C78B23D1AF1700D1AF3F /* ElectGroupKeyResetLeader.h */; }; - 4378C79223D1AF1700D1AF3F /* ElectGroupKeyResetLeader.c in Sources */ = {isa = PBXBuildFile; fileRef = 4378C79023D1AF1700D1AF3F /* ElectGroupKeyResetLeader.c */; }; 438C43B52167752C00C7425B /* labeled_int_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 438C43AF2167752C00C7425B /* labeled_int_list.h */; }; 438C43B62167752C00C7425B /* labeled_int_list.c in Sources */ = {isa = PBXBuildFile; fileRef = 438C43B42167752C00C7425B /* labeled_int_list.c */; }; 43C3778E246A8C0300962D22 /* internal_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C37788246A8C0300962D22 /* internal_format.h */; }; 43C3778F246A8C0300962D22 /* internal_format.c in Sources */ = {isa = PBXBuildFile; fileRef = 43C3778D246A8C0300962D22 /* internal_format.c */; }; - 43E4FBB22362C05600BC01F4 /* NegotiationRequestGrouped.c in Sources */ = {isa = PBXBuildFile; fileRef = 43E4FBAD2362C05600BC01F4 /* NegotiationRequestGrouped.c */; }; - 43E4FBB42362C29100BC01F4 /* GroupHandshake.c in Sources */ = {isa = PBXBuildFile; fileRef = 43E4FBB32362C29100BC01F4 /* GroupHandshake.c */; }; 43F6921D1F164A47009418F5 /* resource_id.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F6921C1F164A47009418F5 /* resource_id.c */; }; 43F73C0B2166282C00AB4524 /* openpgp_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F73C032166282C00AB4524 /* openpgp_compat.c */; }; 43F73C0D2166282C00AB4524 /* key_reset.c in Sources */ = {isa = PBXBuildFile; fileRef = 43F73C052166282C00AB4524 /* key_reset.c */; }; @@ -210,6 +161,83 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ + 1508460625F24D1100D46DA6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 64796A371B455AA5004B1C24 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 644297BE1BE11C65002BC73B; + remoteInfo = pEpTrustWords; + }; + 15A322F4260E0B75009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3203B260E030B009D07EB /* pEpASN1.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 15A3204F260E0330009D07EB; + remoteInfo = pEpASN1_macOS; + }; + 15A322F6260E0B75009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3203B260E030B009D07EB /* pEpASN1.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 15A3205E260E0345009D07EB; + remoteInfo = pEpASN1_iOS; + }; + 15A32304260E0C6F009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3203B260E030B009D07EB /* pEpASN1.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 15A3204E260E0330009D07EB; + remoteInfo = pEpASN1_macOS; + }; + 15A323ED260E167D009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3203B260E030B009D07EB /* pEpASN1.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 15A3205D260E0345009D07EB; + remoteInfo = pEpASN1_iOS; + }; + 15A3265F26120618009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3261C2611F6B5009D07EB /* PEPSQLITE3.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 15A326322612055F009D07EB; + remoteInfo = PEPSQLITE3_iOS; + }; + 15A3266326120618009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3261C2611F6B5009D07EB /* PEPSQLITE3.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 15A326332612055F009D07EB; + remoteInfo = PEPSQLITE3_iOS; + }; + 15A3266526120618009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3261C2611F6B5009D07EB /* PEPSQLITE3.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 15A32653261205E7009D07EB; + remoteInfo = PEPSQLITE3_macOS; + }; + 15A3266726120623009D07EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 15A3261C2611F6B5009D07EB /* PEPSQLITE3.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 15A32652261205E7009D07EB; + remoteInfo = PEPSQLITE3_macOS; + }; + 15B21C3525FB8DD10097927A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 64796A371B455AA5004B1C24 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 150845DE25F13CE700D46DA6; + remoteInfo = generate_code; + }; + 15B21C3E25FB8E160097927A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 64796A371B455AA5004B1C24 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 150845DE25F13CE700D46DA6; + remoteInfo = generate_code; + }; 43D47AA0225CC82400E97C5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 64796A371B455AA5004B1C24 /* Project object */; @@ -260,16 +288,12 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 15147EE8237E9EA7003989FE /* NegotiationRequestGrouped.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NegotiationRequestGrouped.h; path = ../asn.1/NegotiationRequestGrouped.h; sourceTree = ""; }; - 15147EED237E9EA7003989FE /* GroupHandshake.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupHandshake.h; path = ../asn.1/GroupHandshake.h; sourceTree = ""; }; - 15147EEE237E9EA7003989FE /* GroupKeysAndClose.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupKeysAndClose.c; path = ../asn.1/GroupKeysAndClose.c; sourceTree = ""; }; - 15147EEF237E9EA7003989FE /* GroupKeysAndClose.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupKeysAndClose.h; path = ../asn.1/GroupKeysAndClose.h; sourceTree = ""; }; + 1508458825F101FB00D46DA6 /* libetpan.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libetpan.a; path = ../../local/lib/libetpan.a; sourceTree = ""; }; 154917F922B9266F0091B6D6 /* libnettle.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libnettle.a; path = ../../sequoia4ios/build/lib/libnettle.a; sourceTree = ""; }; 154917FA22B926700091B6D6 /* libsequoia_openpgp_ffi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libsequoia_openpgp_ffi.a; path = ../../sequoia4ios/build/lib/libsequoia_openpgp_ffi.a; sourceTree = ""; }; 154917FB22B926700091B6D6 /* libhogweed.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libhogweed.a; path = ../../sequoia4ios/build/lib/libhogweed.a; sourceTree = ""; }; 154917FC22B926700091B6D6 /* libgmp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgmp.a; path = ../../sequoia4ios/build/lib/libgmp.a; sourceTree = ""; }; 1549180D22B92EA20091B6D6 /* libiconv.2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.2.tbd; path = usr/lib/libiconv.2.tbd; sourceTree = SDKROOT; }; - 1549181322B92EA50091B6D6 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; }; 1549189222B9401D0091B6D6 /* fsm_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fsm_common.h; path = ../src/fsm_common.h; sourceTree = ""; }; 1549189322B9401E0091B6D6 /* status_to_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status_to_string.h; path = ../src/status_to_string.h; sourceTree = ""; }; 1549189922B9401E0091B6D6 /* aux_mime_msg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = aux_mime_msg.h; path = ../src/aux_mime_msg.h; sourceTree = ""; }; @@ -278,124 +302,14 @@ 154918A322B9401F0091B6D6 /* openpgp_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = openpgp_compat.h; path = ../src/openpgp_compat.h; sourceTree = ""; }; 154918A422B9401F0091B6D6 /* growing_buf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = growing_buf.h; path = ../src/growing_buf.h; sourceTree = ""; }; 154918AA22B940200091B6D6 /* blacklist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = blacklist.h; path = ../src/blacklist.h; sourceTree = ""; }; - 158FF95223C49ED500CB1016 /* KeyReset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = KeyReset.c; path = ../asn.1/KeyReset.c; sourceTree = ""; }; - 158FF95323C49ED500CB1016 /* KeyReset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KeyReset.h; path = ../asn.1/KeyReset.h; sourceTree = ""; }; - 158FF95423C49ED500CB1016 /* InitUnledGroupKeyReset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InitUnledGroupKeyReset.h; path = ../asn.1/InitUnledGroupKeyReset.h; sourceTree = ""; }; - 158FF95523C49ED600CB1016 /* Distribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Distribution.h; path = ../asn.1/Distribution.h; sourceTree = ""; }; - 158FF95623C49ED600CB1016 /* GroupKeysUpdate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupKeysUpdate.h; path = ../asn.1/GroupKeysUpdate.h; sourceTree = ""; }; - 158FF95823C49ED600CB1016 /* Distribution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Distribution.c; path = ../asn.1/Distribution.c; sourceTree = ""; }; - 158FF95923C49ED600CB1016 /* GroupKeysForNewMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupKeysForNewMember.h; path = ../asn.1/GroupKeysForNewMember.h; sourceTree = ""; }; - 158FF95A23C49ED600CB1016 /* InitUnledGroupKeyReset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = InitUnledGroupKeyReset.c; path = ../asn.1/InitUnledGroupKeyReset.c; sourceTree = ""; }; + 1552DB112577D4F100A92F71 /* libpEpEngine_macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libpEpEngine_macOS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1552DB132577D4F100A92F71 /* pEpEngine_macOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pEpEngine_macOS.h; sourceTree = ""; }; + 1552DB152577D4F100A92F71 /* pEpEngine_macOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = pEpEngine_macOS.m; sourceTree = ""; }; 159EF42422B6D3E900149C0C /* pgp_sequoia.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pgp_sequoia.c; path = ../src/pgp_sequoia.c; sourceTree = ""; }; 159EF42522B6D3E900149C0C /* pgp_sequoia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pgp_sequoia.h; path = ../src/pgp_sequoia.h; sourceTree = ""; }; 159EF42622B6D3E900149C0C /* pgp_sequoia_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pgp_sequoia_internal.h; path = ../src/pgp_sequoia_internal.h; sourceTree = ""; }; - 15B0373F22B2B816002D664C /* ber_tlv_length.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ber_tlv_length.c; path = ../asn.1/ber_tlv_length.c; sourceTree = ""; }; - 15B0374122B2B817002D664C /* CommitAccept.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAccept.c; path = ../asn.1/CommitAccept.c; sourceTree = ""; }; - 15B0374222B2B817002D664C /* Rollback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Rollback.h; path = ../asn.1/Rollback.h; sourceTree = ""; }; - 15B0374322B2B817002D664C /* NegotiationOpen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NegotiationOpen.c; path = ../asn.1/NegotiationOpen.c; sourceTree = ""; }; - 15B0374422B2B817002D664C /* constr_SEQUENCE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_SEQUENCE.c; path = ../asn.1/constr_SEQUENCE.c; sourceTree = ""; }; - 15B0374522B2B817002D664C /* UTF8String.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = UTF8String.c; path = ../asn.1/UTF8String.c; sourceTree = ""; }; - 15B0374622B2B817002D664C /* NegotiationRequest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NegotiationRequest.c; path = ../asn.1/NegotiationRequest.c; sourceTree = ""; }; - 15B0374722B2B817002D664C /* Identity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Identity.h; path = ../asn.1/Identity.h; sourceTree = ""; }; - 15B0374822B2B817002D664C /* Beacon.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Beacon.c; path = ../asn.1/Beacon.c; sourceTree = ""; }; - 15B0374922B2B817002D664C /* PString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PString.h; path = ../asn.1/PString.h; sourceTree = ""; }; - 15B0374A22B2B817002D664C /* OCTET_STRING.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = OCTET_STRING.c; path = ../asn.1/OCTET_STRING.c; sourceTree = ""; }; - 15B0374B22B2B817002D664C /* IdentityList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IdentityList.h; path = ../asn.1/IdentityList.h; sourceTree = ""; }; - 15B0374C22B2B818002D664C /* Sync.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Sync.c; path = ../asn.1/Sync.c; sourceTree = ""; }; - 15B0374D22B2B818002D664C /* NativeInteger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeInteger.h; path = ../asn.1/NativeInteger.h; sourceTree = ""; }; - 15B0374E22B2B818002D664C /* NativeEnumerated.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NativeEnumerated.c; path = ../asn.1/NativeEnumerated.c; sourceTree = ""; }; - 15B0374F22B2B818002D664C /* asn_system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_system.h; path = ../asn.1/asn_system.h; sourceTree = ""; }; - 15B0375022B2B818002D664C /* der_encoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = der_encoder.c; path = ../asn.1/der_encoder.c; sourceTree = ""; }; - 15B0375122B2B818002D664C /* OwnKeysRequester.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = OwnKeysRequester.c; path = ../asn.1/OwnKeysRequester.c; sourceTree = ""; }; - 15B0375222B2B818002D664C /* CommitAcceptOfferer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAcceptOfferer.h; path = ../asn.1/CommitAcceptOfferer.h; sourceTree = ""; }; - 15B0375322B2B818002D664C /* ber_tlv_tag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ber_tlv_tag.c; path = ../asn.1/ber_tlv_tag.c; sourceTree = ""; }; - 15B0375422B2B818002D664C /* BOOLEAN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BOOLEAN.h; path = ../asn.1/BOOLEAN.h; sourceTree = ""; }; - 15B0375522B2B819002D664C /* per_opentype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_opentype.h; path = ../asn.1/per_opentype.h; sourceTree = ""; }; - 15B0375622B2B819002D664C /* Identity.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Identity.c; path = ../asn.1/Identity.c; sourceTree = ""; }; - 15B0375722B2B819002D664C /* asn_SEQUENCE_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asn_SEQUENCE_OF.c; path = ../asn.1/asn_SEQUENCE_OF.c; sourceTree = ""; }; - 15B0375822B2B819002D664C /* constr_SEQUENCE_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_SEQUENCE_OF.c; path = ../asn.1/constr_SEQUENCE_OF.c; sourceTree = ""; }; - 15B0375922B2B819002D664C /* pdu_collection.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pdu_collection.c; path = ../asn.1/pdu_collection.c; sourceTree = ""; }; - 15B0375A22B2B819002D664C /* Beacon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Beacon.h; path = ../asn.1/Beacon.h; sourceTree = ""; }; - 15B0375B22B2B819002D664C /* xer_support.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = xer_support.c; path = ../asn.1/xer_support.c; sourceTree = ""; }; - 15B0375C22B2B819002D664C /* per_decoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_decoder.c; path = ../asn.1/per_decoder.c; sourceTree = ""; }; - 15B0375D22B2B819002D664C /* ISO639-1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "ISO639-1.h"; path = "../asn.1/ISO639-1.h"; sourceTree = ""; }; - 15B0375E22B2B81A002D664C /* xer_decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xer_decoder.h; path = ../asn.1/xer_decoder.h; sourceTree = ""; }; - 15B0375F22B2B81A002D664C /* PrintableString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PrintableString.h; path = ../asn.1/PrintableString.h; sourceTree = ""; }; - 15B0376022B2B81A002D664C /* ISO639-1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "ISO639-1.c"; path = "../asn.1/ISO639-1.c"; sourceTree = ""; }; - 15B0376122B2B81A002D664C /* ber_tlv_tag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ber_tlv_tag.h; path = ../asn.1/ber_tlv_tag.h; sourceTree = ""; }; - 15B0376222B2B81A002D664C /* PString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = PString.c; path = ../asn.1/PString.c; sourceTree = ""; }; - 15B0376322B2B81A002D664C /* Hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = ../asn.1/Hash.h; sourceTree = ""; }; - 15B0376422B2B81A002D664C /* NativeEnumerated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeEnumerated.h; path = ../asn.1/NativeEnumerated.h; sourceTree = ""; }; - 15B0376522B2B81A002D664C /* constr_TYPE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_TYPE.h; path = ../asn.1/constr_TYPE.h; sourceTree = ""; }; - 15B0376622B2B81B002D664C /* per_encoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_encoder.c; path = ../asn.1/per_encoder.c; sourceTree = ""; }; - 15B0376722B2B81B002D664C /* CommitAcceptRequester.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAcceptRequester.c; path = ../asn.1/CommitAcceptRequester.c; sourceTree = ""; }; - 15B0376822B2B81B002D664C /* CommitReject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitReject.h; path = ../asn.1/CommitReject.h; sourceTree = ""; }; - 15B0376922B2B81B002D664C /* NegotiationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NegotiationRequest.h; path = ../asn.1/NegotiationRequest.h; sourceTree = ""; }; - 15B0376A22B2B81B002D664C /* TID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TID.h; path = ../asn.1/TID.h; sourceTree = ""; }; - 15B0376B22B2B81B002D664C /* KeySync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KeySync.h; path = ../asn.1/KeySync.h; sourceTree = ""; }; - 15B0376C22B2B81B002D664C /* UTF8String.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = ../asn.1/UTF8String.h; sourceTree = ""; }; - 15B0376D22B2B81C002D664C /* Version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Version.h; path = ../asn.1/Version.h; sourceTree = ""; }; - 15B0376E22B2B81C002D664C /* xer_encoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xer_encoder.h; path = ../asn.1/xer_encoder.h; sourceTree = ""; }; - 15B0376F22B2B81C002D664C /* asn_SET_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_SET_OF.h; path = ../asn.1/asn_SET_OF.h; sourceTree = ""; }; - 15B0377022B2B81C002D664C /* asn_codecs_prim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_codecs_prim.h; path = ../asn.1/asn_codecs_prim.h; sourceTree = ""; }; - 15B0377122B2B81C002D664C /* constraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constraints.h; path = ../asn.1/constraints.h; sourceTree = ""; }; - 15B0377222B2B81C002D664C /* Rollback.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Rollback.c; path = ../asn.1/Rollback.c; sourceTree = ""; }; - 15B0377322B2B81C002D664C /* KeySync.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = KeySync.c; path = ../asn.1/KeySync.c; sourceTree = ""; }; - 15B0377422B2B81C002D664C /* IdentityList.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = IdentityList.c; path = ../asn.1/IdentityList.c; sourceTree = ""; }; - 15B0377522B2B81D002D664C /* TID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = TID.c; path = ../asn.1/TID.c; sourceTree = ""; }; - 15B0377622B2B81D002D664C /* GroupTrustThisKey.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupTrustThisKey.c; path = ../asn.1/GroupTrustThisKey.c; sourceTree = ""; }; - 15B0377722B2B81D002D664C /* per_encoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_encoder.h; path = ../asn.1/per_encoder.h; sourceTree = ""; }; - 15B0377922B2B81D002D664C /* xer_decoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = xer_decoder.c; path = ../asn.1/xer_decoder.c; sourceTree = ""; }; - 15B0377A22B2B81D002D664C /* constr_SEQUENCE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_SEQUENCE.h; path = ../asn.1/constr_SEQUENCE.h; sourceTree = ""; }; - 15B0377B22B2B81D002D664C /* constr_CHOICE.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_CHOICE.h; path = ../asn.1/constr_CHOICE.h; sourceTree = ""; }; - 15B0377C22B2B81D002D664C /* GroupTrustThisKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupTrustThisKey.h; path = ../asn.1/GroupTrustThisKey.h; sourceTree = ""; }; - 15B0377D22B2B81D002D664C /* constr_TYPE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_TYPE.c; path = ../asn.1/constr_TYPE.c; sourceTree = ""; }; - 15B0377E22B2B81D002D664C /* CommitAcceptOfferer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAcceptOfferer.c; path = ../asn.1/CommitAcceptOfferer.c; sourceTree = ""; }; - 15B0377F22B2B81E002D664C /* BIT_STRING.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = BIT_STRING.c; path = ../asn.1/BIT_STRING.c; sourceTree = ""; }; - 15B0378022B2B81E002D664C /* constr_SET_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_SET_OF.c; path = ../asn.1/constr_SET_OF.c; sourceTree = ""; }; - 15B0378122B2B81E002D664C /* constraints.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constraints.c; path = ../asn.1/constraints.c; sourceTree = ""; }; - 15B0378222B2B81E002D664C /* BIT_STRING.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BIT_STRING.h; path = ../asn.1/BIT_STRING.h; sourceTree = ""; }; - 15B0378322B2B81E002D664C /* der_encoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = der_encoder.h; path = ../asn.1/der_encoder.h; sourceTree = ""; }; - 15B0378422B2B81E002D664C /* ber_decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ber_decoder.h; path = ../asn.1/ber_decoder.h; sourceTree = ""; }; - 15B0378522B2B81E002D664C /* NegotiationOpen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NegotiationOpen.h; path = ../asn.1/NegotiationOpen.h; sourceTree = ""; }; - 15B0378622B2B81E002D664C /* OCTET_STRING.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OCTET_STRING.h; path = ../asn.1/OCTET_STRING.h; sourceTree = ""; }; - 15B0378722B2B81E002D664C /* constr_SEQUENCE_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_SEQUENCE_OF.h; path = ../asn.1/constr_SEQUENCE_OF.h; sourceTree = ""; }; - 15B0378822B2B81F002D664C /* CommitAccept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAccept.h; path = ../asn.1/CommitAccept.h; sourceTree = ""; }; - 15B0378922B2B81F002D664C /* ber_decoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ber_decoder.c; path = ../asn.1/ber_decoder.c; sourceTree = ""; }; - 15B0378A22B2B81F002D664C /* INTEGER.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = INTEGER.c; path = ../asn.1/INTEGER.c; sourceTree = ""; }; - 15B0378B22B2B81F002D664C /* Version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Version.c; path = ../asn.1/Version.c; sourceTree = ""; }; - 15B0378C22B2B81F002D664C /* per_decoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_decoder.h; path = ../asn.1/per_decoder.h; sourceTree = ""; }; - 15B0378D22B2B81F002D664C /* OwnKeysOfferer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = OwnKeysOfferer.c; path = ../asn.1/OwnKeysOfferer.c; sourceTree = ""; }; - 15B0378E22B2B81F002D664C /* per_support.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = per_support.h; path = ../asn.1/per_support.h; sourceTree = ""; }; - 15B0378F22B2B81F002D664C /* INTEGER.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = INTEGER.h; path = ../asn.1/INTEGER.h; sourceTree = ""; }; - 15B0379022B2B81F002D664C /* Hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Hash.c; path = ../asn.1/Hash.c; sourceTree = ""; }; - 15B0379122B2B820002D664C /* Hex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Hex.c; path = ../asn.1/Hex.c; sourceTree = ""; }; - 15B0379222B2B820002D664C /* Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Hex.h; path = ../asn.1/Hex.h; sourceTree = ""; }; - 15B0379322B2B820002D664C /* xer_encoder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = xer_encoder.c; path = ../asn.1/xer_encoder.c; sourceTree = ""; }; - 15B0379422B2B820002D664C /* per_opentype.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_opentype.c; path = ../asn.1/per_opentype.c; sourceTree = ""; }; - 15B0379522B2B820002D664C /* xer_support.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xer_support.h; path = ../asn.1/xer_support.h; sourceTree = ""; }; - 15B0379622B2B820002D664C /* asn_SET_OF.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asn_SET_OF.c; path = ../asn.1/asn_SET_OF.c; sourceTree = ""; }; - 15B0379722B2B820002D664C /* ber_tlv_length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ber_tlv_length.h; path = ../asn.1/ber_tlv_length.h; sourceTree = ""; }; - 15B0379822B2B820002D664C /* OwnKeysRequester.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OwnKeysRequester.h; path = ../asn.1/OwnKeysRequester.h; sourceTree = ""; }; - 15B0379922B2B821002D664C /* constr_SET_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = constr_SET_OF.h; path = ../asn.1/constr_SET_OF.h; sourceTree = ""; }; - 15B0379A22B2B821002D664C /* asn_codecs_prim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asn_codecs_prim.c; path = ../asn.1/asn_codecs_prim.c; sourceTree = ""; }; - 15B0379B22B2B821002D664C /* CommitAcceptForGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAcceptForGroup.h; path = ../asn.1/CommitAcceptForGroup.h; sourceTree = ""; }; - 15B0379C22B2B821002D664C /* constr_CHOICE.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = constr_CHOICE.c; path = ../asn.1/constr_CHOICE.c; sourceTree = ""; }; - 15B0379D22B2B821002D664C /* asn_codecs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_codecs.h; path = ../asn.1/asn_codecs.h; sourceTree = ""; }; - 15B0379E22B2B821002D664C /* per_support.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = per_support.c; path = ../asn.1/per_support.c; sourceTree = ""; }; - 15B0379F22B2B821002D664C /* asn_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_internal.h; path = ../asn.1/asn_internal.h; sourceTree = ""; }; - 15B037A022B2B821002D664C /* NativeInteger.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NativeInteger.c; path = ../asn.1/NativeInteger.c; sourceTree = ""; }; - 15B037A122B2B821002D664C /* BOOLEAN.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = BOOLEAN.c; path = ../asn.1/BOOLEAN.c; sourceTree = ""; }; - 15B037A222B2B822002D664C /* CommitReject.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitReject.c; path = ../asn.1/CommitReject.c; sourceTree = ""; }; - 15B037A322B2B822002D664C /* PrintableString.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = PrintableString.c; path = ../asn.1/PrintableString.c; sourceTree = ""; }; - 15B037A422B2B822002D664C /* Sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Sync.h; path = ../asn.1/Sync.h; sourceTree = ""; }; - 15B037A522B2B822002D664C /* CommitAcceptRequester.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommitAcceptRequester.h; path = ../asn.1/CommitAcceptRequester.h; sourceTree = ""; }; - 15B037A622B2B822002D664C /* CommitAcceptForGroup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CommitAcceptForGroup.c; path = ../asn.1/CommitAcceptForGroup.c; sourceTree = ""; }; - 15B037A722B2B822002D664C /* OwnKeysOfferer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OwnKeysOfferer.h; path = ../asn.1/OwnKeysOfferer.h; sourceTree = ""; }; - 15B037A822B2B822002D664C /* asn_application.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_application.h; path = ../asn.1/asn_application.h; sourceTree = ""; }; - 15B037A922B2B822002D664C /* asn_SEQUENCE_OF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_SEQUENCE_OF.h; path = ../asn.1/asn_SEQUENCE_OF.h; sourceTree = ""; }; - 15B75BDC23FA9F9D00DAE976 /* SynchronizeGroupKeys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SynchronizeGroupKeys.c; path = ../asn.1/SynchronizeGroupKeys.c; sourceTree = ""; }; - 15B75BE123FA9F9D00DAE976 /* SynchronizeGroupKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SynchronizeGroupKeys.h; path = ../asn.1/SynchronizeGroupKeys.h; sourceTree = ""; }; + 15A3203B260E030B009D07EB /* pEpASN1.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = pEpASN1.xcodeproj; path = Subprojects/pEpASN1/pEpASN1.xcodeproj; sourceTree = ""; }; + 15A3261C2611F6B5009D07EB /* PEPSQLITE3.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = PEPSQLITE3.xcodeproj; path = Subprojects/PEPSQLITE3/PEPSQLITE3.xcodeproj; sourceTree = ""; }; 430BCC462015EE800077E998 /* pEp_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pEp_string.h; path = ../src/pEp_string.h; sourceTree = ""; }; 430BCC472015EE800077E998 /* pEp_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pEp_string.c; path = ../src/pEp_string.c; sourceTree = ""; }; 430D258A1C9ED75A00B94535 /* blacklist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = blacklist.c; path = ../src/blacklist.c; sourceTree = ""; }; @@ -412,27 +326,14 @@ 43188A9223C4B2DE008EF79C /* Sync_actions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Sync_actions.c; path = ../src/Sync_actions.c; sourceTree = ""; }; 43188AA223C4B4B3008EF79C /* keyreset_command.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = keyreset_command.c; path = ../src/keyreset_command.c; sourceTree = ""; }; 43188AA723C4B4B3008EF79C /* keyreset_command.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keyreset_command.h; path = ../src/keyreset_command.h; sourceTree = ""; }; - 43188AAA23C4B549008EF79C /* Commands.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Commands.c; path = ../asn.1/Commands.c; sourceTree = ""; }; - 43188AAB23C4B549008EF79C /* Commands.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Commands.h; path = ../asn.1/Commands.h; sourceTree = ""; }; - 43188AB023C4B6B9008EF79C /* Command.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = Command.c; path = ../asn.1/Command.c; sourceTree = ""; }; - 43188AB523C4B6B9008EF79C /* Command.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Command.h; path = ../asn.1/Command.h; sourceTree = ""; }; 43188ABE23C4BBDD008EF79C /* distribution_codec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = distribution_codec.c; path = ../src/distribution_codec.c; sourceTree = ""; }; 43188ABF23C4BBDE008EF79C /* distribution_codec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = distribution_codec.h; path = ../src/distribution_codec.h; sourceTree = ""; }; 431F04B222733A7E00CCE960 /* key_reset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = key_reset.h; path = ../src/key_reset.h; sourceTree = ""; }; - 432713AF23A10B07007EAD4A /* GroupKeysForNewMember.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupKeysForNewMember.c; path = ../asn.1/GroupKeysForNewMember.c; sourceTree = ""; }; - 432714AA23A10B3B007EAD4A /* GroupKeysUpdate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupKeysUpdate.c; path = ../asn.1/GroupKeysUpdate.c; sourceTree = ""; }; - 4337082D203C075A004E6547 /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sqlite3.c; path = ../src/sqlite3.c; sourceTree = ""; }; - 43370832203C075A004E6547 /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = ../src/sqlite3.h; sourceTree = ""; }; - 4378C78B23D1AF1700D1AF3F /* ElectGroupKeyResetLeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ElectGroupKeyResetLeader.h; path = ../asn.1/ElectGroupKeyResetLeader.h; sourceTree = ""; }; - 4378C79023D1AF1700D1AF3F /* ElectGroupKeyResetLeader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ElectGroupKeyResetLeader.c; path = ../asn.1/ElectGroupKeyResetLeader.c; sourceTree = ""; }; 438C43962167582400C7425B /* sync_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sync_api.h; path = ../src/sync_api.h; sourceTree = ""; }; 438C43AF2167752C00C7425B /* labeled_int_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = labeled_int_list.h; path = ../src/labeled_int_list.h; sourceTree = ""; }; 438C43B42167752C00C7425B /* labeled_int_list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = labeled_int_list.c; path = ../src/labeled_int_list.c; sourceTree = ""; }; 43C37788246A8C0300962D22 /* internal_format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = internal_format.h; path = ../src/internal_format.h; sourceTree = ""; }; 43C3778D246A8C0300962D22 /* internal_format.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = internal_format.c; path = ../src/internal_format.c; sourceTree = ""; }; - 43D47A8A225CC60600E97C5B /* pEpTrustWords-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "pEpTrustWords-Info.plist"; path = "/Users/dirk/projects/pEp/pEpEngine/build-mac/pEpTrustWords-Info.plist"; sourceTree = ""; }; - 43E4FBAD2362C05600BC01F4 /* NegotiationRequestGrouped.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = NegotiationRequestGrouped.c; path = ../asn.1/NegotiationRequestGrouped.c; sourceTree = ""; }; - 43E4FBB32362C29100BC01F4 /* GroupHandshake.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = GroupHandshake.c; path = ../asn.1/GroupHandshake.c; sourceTree = ""; }; 43F6921C1F164A47009418F5 /* resource_id.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = resource_id.c; path = ../src/resource_id.c; sourceTree = ""; }; 43F73C032166282C00AB4524 /* openpgp_compat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = openpgp_compat.c; path = ../src/openpgp_compat.c; sourceTree = ""; }; 43F73C052166282C00AB4524 /* key_reset.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = key_reset.c; path = ../src/key_reset.c; sourceTree = ""; }; @@ -489,6 +390,15 @@ /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 1552DB0F2577D4F100A92F71 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 15A326E826120AB6009D07EB /* libPEPSQLITE3_macOS.a in Frameworks */, + 15A32429260E1873009D07EB /* libpEpASN1_macOS.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 644297BC1BE11C65002BC73B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -501,6 +411,8 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 15A326E326120AB0009D07EB /* libPEPSQLITE3_iOS.a in Frameworks */, + 15A3233E260E0D2A009D07EB /* libpEpASN1_iOS.a in Frameworks */, 6400FB8B1B8CA1CF005221E3 /* libetpan-ios.a in Frameworks */, 1549180022B926700091B6D6 /* libgmp.a in Frameworks */, 154917FF22B926700091B6D6 /* libhogweed.a in Frameworks */, @@ -515,6 +427,7 @@ 154917EB22B926080091B6D6 /* Frameworks */ = { isa = PBXGroup; children = ( + 1508458825F101FB00D46DA6 /* libetpan.a */, 154917F422B926420091B6D6 /* sequoia4ios */, ); name = Frameworks; @@ -531,6 +444,33 @@ name = sequoia4ios; sourceTree = ""; }; + 1552DB122577D4F100A92F71 /* pEpEngine_macOS */ = { + isa = PBXGroup; + children = ( + 1552DB132577D4F100A92F71 /* pEpEngine_macOS.h */, + 1552DB152577D4F100A92F71 /* pEpEngine_macOS.m */, + ); + path = pEpEngine_macOS; + sourceTree = ""; + }; + 15A3203C260E030B009D07EB /* Products */ = { + isa = PBXGroup; + children = ( + 15A322F5260E0B75009D07EB /* libpEpASN1_macOS.a */, + 15A322F7260E0B75009D07EB /* libpEpASN1_iOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 15A3261D2611F6B5009D07EB /* Products */ = { + isa = PBXGroup; + children = ( + 15A3266426120618009D07EB /* libPEPSQLITE3_iOS.a */, + 15A3266626120618009D07EB /* libPEPSQLITE3_macOS.a */, + ); + name = Products; + sourceTree = ""; + }; 43188A5523C4A7F8008EF79C /* sync-generated */ = { isa = PBXGroup; children = ( @@ -549,142 +489,6 @@ name = "sync-generated"; sourceTree = ""; }; - 6406CE811CE382F400C14D77 /* asn.1 */ = { - isa = PBXGroup; - children = ( - 15B75BDC23FA9F9D00DAE976 /* SynchronizeGroupKeys.c */, - 15B75BE123FA9F9D00DAE976 /* SynchronizeGroupKeys.h */, - 4378C79023D1AF1700D1AF3F /* ElectGroupKeyResetLeader.c */, - 4378C78B23D1AF1700D1AF3F /* ElectGroupKeyResetLeader.h */, - 43188AB023C4B6B9008EF79C /* Command.c */, - 43188AB523C4B6B9008EF79C /* Command.h */, - 43188AAA23C4B549008EF79C /* Commands.c */, - 43188AAB23C4B549008EF79C /* Commands.h */, - 158FF95823C49ED600CB1016 /* Distribution.c */, - 158FF95523C49ED600CB1016 /* Distribution.h */, - 158FF95923C49ED600CB1016 /* GroupKeysForNewMember.h */, - 158FF95623C49ED600CB1016 /* GroupKeysUpdate.h */, - 158FF95A23C49ED600CB1016 /* InitUnledGroupKeyReset.c */, - 158FF95423C49ED500CB1016 /* InitUnledGroupKeyReset.h */, - 158FF95223C49ED500CB1016 /* KeyReset.c */, - 158FF95323C49ED500CB1016 /* KeyReset.h */, - 432714AA23A10B3B007EAD4A /* GroupKeysUpdate.c */, - 432713AF23A10B07007EAD4A /* GroupKeysForNewMember.c */, - 15147EED237E9EA7003989FE /* GroupHandshake.h */, - 15147EEE237E9EA7003989FE /* GroupKeysAndClose.c */, - 15147EEF237E9EA7003989FE /* GroupKeysAndClose.h */, - 15147EE8237E9EA7003989FE /* NegotiationRequestGrouped.h */, - 43E4FBB32362C29100BC01F4 /* GroupHandshake.c */, - 43E4FBAD2362C05600BC01F4 /* NegotiationRequestGrouped.c */, - 15B037A822B2B822002D664C /* asn_application.h */, - 15B0379A22B2B821002D664C /* asn_codecs_prim.c */, - 15B0377022B2B81C002D664C /* asn_codecs_prim.h */, - 15B0379D22B2B821002D664C /* asn_codecs.h */, - 15B0379F22B2B821002D664C /* asn_internal.h */, - 15B0375722B2B819002D664C /* asn_SEQUENCE_OF.c */, - 15B037A922B2B822002D664C /* asn_SEQUENCE_OF.h */, - 15B0379622B2B820002D664C /* asn_SET_OF.c */, - 15B0376F22B2B81C002D664C /* asn_SET_OF.h */, - 15B0374F22B2B818002D664C /* asn_system.h */, - 15B0374822B2B817002D664C /* Beacon.c */, - 15B0375A22B2B819002D664C /* Beacon.h */, - 15B0378922B2B81F002D664C /* ber_decoder.c */, - 15B0378422B2B81E002D664C /* ber_decoder.h */, - 15B0373F22B2B816002D664C /* ber_tlv_length.c */, - 15B0379722B2B820002D664C /* ber_tlv_length.h */, - 15B0375322B2B818002D664C /* ber_tlv_tag.c */, - 15B0376122B2B81A002D664C /* ber_tlv_tag.h */, - 15B0377F22B2B81E002D664C /* BIT_STRING.c */, - 15B0378222B2B81E002D664C /* BIT_STRING.h */, - 15B037A122B2B821002D664C /* BOOLEAN.c */, - 15B0375422B2B818002D664C /* BOOLEAN.h */, - 15B0374122B2B817002D664C /* CommitAccept.c */, - 15B0378822B2B81F002D664C /* CommitAccept.h */, - 15B037A622B2B822002D664C /* CommitAcceptForGroup.c */, - 15B0379B22B2B821002D664C /* CommitAcceptForGroup.h */, - 15B0377E22B2B81D002D664C /* CommitAcceptOfferer.c */, - 15B0375222B2B818002D664C /* CommitAcceptOfferer.h */, - 15B0376722B2B81B002D664C /* CommitAcceptRequester.c */, - 15B037A522B2B822002D664C /* CommitAcceptRequester.h */, - 15B037A222B2B822002D664C /* CommitReject.c */, - 15B0376822B2B81B002D664C /* CommitReject.h */, - 15B0379C22B2B821002D664C /* constr_CHOICE.c */, - 15B0377B22B2B81D002D664C /* constr_CHOICE.h */, - 15B0375822B2B819002D664C /* constr_SEQUENCE_OF.c */, - 15B0378722B2B81E002D664C /* constr_SEQUENCE_OF.h */, - 15B0374422B2B817002D664C /* constr_SEQUENCE.c */, - 15B0377A22B2B81D002D664C /* constr_SEQUENCE.h */, - 15B0378022B2B81E002D664C /* constr_SET_OF.c */, - 15B0379922B2B821002D664C /* constr_SET_OF.h */, - 15B0377D22B2B81D002D664C /* constr_TYPE.c */, - 15B0376522B2B81A002D664C /* constr_TYPE.h */, - 15B0378122B2B81E002D664C /* constraints.c */, - 15B0377122B2B81C002D664C /* constraints.h */, - 15B0375022B2B818002D664C /* der_encoder.c */, - 15B0378322B2B81E002D664C /* der_encoder.h */, - 15B0377622B2B81D002D664C /* GroupTrustThisKey.c */, - 15B0377C22B2B81D002D664C /* GroupTrustThisKey.h */, - 15B0379022B2B81F002D664C /* Hash.c */, - 15B0376322B2B81A002D664C /* Hash.h */, - 15B0379122B2B820002D664C /* Hex.c */, - 15B0379222B2B820002D664C /* Hex.h */, - 15B0375622B2B819002D664C /* Identity.c */, - 15B0374722B2B817002D664C /* Identity.h */, - 15B0377422B2B81C002D664C /* IdentityList.c */, - 15B0374B22B2B817002D664C /* IdentityList.h */, - 15B0378A22B2B81F002D664C /* INTEGER.c */, - 15B0378F22B2B81F002D664C /* INTEGER.h */, - 15B0376022B2B81A002D664C /* ISO639-1.c */, - 15B0375D22B2B819002D664C /* ISO639-1.h */, - 15B0377322B2B81C002D664C /* KeySync.c */, - 15B0376B22B2B81B002D664C /* KeySync.h */, - 15B0374E22B2B818002D664C /* NativeEnumerated.c */, - 15B0376422B2B81A002D664C /* NativeEnumerated.h */, - 15B037A022B2B821002D664C /* NativeInteger.c */, - 15B0374D22B2B818002D664C /* NativeInteger.h */, - 15B0374322B2B817002D664C /* NegotiationOpen.c */, - 15B0378522B2B81E002D664C /* NegotiationOpen.h */, - 15B0374622B2B817002D664C /* NegotiationRequest.c */, - 15B0376922B2B81B002D664C /* NegotiationRequest.h */, - 15B0374A22B2B817002D664C /* OCTET_STRING.c */, - 15B0378622B2B81E002D664C /* OCTET_STRING.h */, - 15B0378D22B2B81F002D664C /* OwnKeysOfferer.c */, - 15B037A722B2B822002D664C /* OwnKeysOfferer.h */, - 15B0375122B2B818002D664C /* OwnKeysRequester.c */, - 15B0379822B2B820002D664C /* OwnKeysRequester.h */, - 15B0375922B2B819002D664C /* pdu_collection.c */, - 15B0375C22B2B819002D664C /* per_decoder.c */, - 15B0378C22B2B81F002D664C /* per_decoder.h */, - 15B0376622B2B81B002D664C /* per_encoder.c */, - 15B0377722B2B81D002D664C /* per_encoder.h */, - 15B0379422B2B820002D664C /* per_opentype.c */, - 15B0375522B2B819002D664C /* per_opentype.h */, - 15B0379E22B2B821002D664C /* per_support.c */, - 15B0378E22B2B81F002D664C /* per_support.h */, - 15B037A322B2B822002D664C /* PrintableString.c */, - 15B0375F22B2B81A002D664C /* PrintableString.h */, - 15B0376222B2B81A002D664C /* PString.c */, - 15B0374922B2B817002D664C /* PString.h */, - 15B0377222B2B81C002D664C /* Rollback.c */, - 15B0374222B2B817002D664C /* Rollback.h */, - 15B0374C22B2B818002D664C /* Sync.c */, - 15B037A422B2B822002D664C /* Sync.h */, - 15B0377522B2B81D002D664C /* TID.c */, - 15B0376A22B2B81B002D664C /* TID.h */, - 15B0374522B2B817002D664C /* UTF8String.c */, - 15B0376C22B2B81B002D664C /* UTF8String.h */, - 15B0378B22B2B81F002D664C /* Version.c */, - 15B0376D22B2B81C002D664C /* Version.h */, - 15B0377922B2B81D002D664C /* xer_decoder.c */, - 15B0375E22B2B81A002D664C /* xer_decoder.h */, - 15B0379322B2B820002D664C /* xer_encoder.c */, - 15B0376E22B2B81C002D664C /* xer_encoder.h */, - 15B0375B22B2B819002D664C /* xer_support.c */, - 15B0379522B2B820002D664C /* xer_support.h */, - ); - name = asn.1; - sourceTree = ""; - }; 64289E2B1B8B630200FC617B /* Products */ = { isa = PBXGroup; children = ( @@ -706,16 +510,16 @@ 64796A361B455AA5004B1C24 = { isa = PBXGroup; children = ( + 15A3261C2611F6B5009D07EB /* PEPSQLITE3.xcodeproj */, + 15A3203B260E030B009D07EB /* pEpASN1.xcodeproj */, 1549180D22B92EA20091B6D6 /* libiconv.2.tbd */, - 1549181322B92EA50091B6D6 /* libz.dylib */, 64951A1B1BE0FCD800B10E71 /* system.db */, 64DA24121B832EBA000BEE80 /* libetpan.xcodeproj */, 43188A5523C4A7F8008EF79C /* sync-generated */, - 6406CE811CE382F400C14D77 /* asn.1 */, 64A8264B1B455C5600EECAF0 /* srcref */, 644297C01BE11C65002BC73B /* pEpTrustWords */, + 1552DB122577D4F100A92F71 /* pEpEngine_macOS */, 64796A401B455AA5004B1C24 /* Products */, - 43D47A8A225CC60600E97C5B /* pEpTrustWords-Info.plist */, 154917EB22B926080091B6D6 /* Frameworks */, ); sourceTree = ""; @@ -725,6 +529,7 @@ children = ( 64796A3F1B455AA5004B1C24 /* libpEpEngine.a */, 644297BF1BE11C65002BC73B /* pEpTrustWords.bundle */, + 1552DB112577D4F100A92F71 /* libpEpEngine_macOS.a */, ); name = Products; sourceTree = ""; @@ -759,8 +564,6 @@ 43F73C052166282C00AB4524 /* key_reset.c */, 43F73C032166282C00AB4524 /* openpgp_compat.c */, 43F73C092166282C00AB4524 /* sync_api.c */, - 4337082D203C075A004E6547 /* sqlite3.c */, - 43370832203C075A004E6547 /* sqlite3.h */, 430BCC472015EE800077E998 /* pEp_string.c */, 430BCC462015EE800077E998 /* pEp_string.h */, 43F6921C1F164A47009418F5 /* resource_id.c */, @@ -813,107 +616,94 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ + 1552DB0D2577D4F100A92F71 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1552DC722577D70000A92F71 /* key_reset.h in Headers */, + 1543DA452577F8BE0041EFB5 /* Sync_func.h in Headers */, + 1543DA4B2577F8BE0041EFB5 /* Sync_impl.h in Headers */, + 1552DC492577D6C900A92F71 /* map_asn1.h in Headers */, + 1552DC762577D70400A92F71 /* labeled_int_list.h in Headers */, + 1552DC8A2577D71800A92F71 /* distribution_codec.h in Headers */, + 1552DC872577D71800A92F71 /* growing_buf.h in Headers */, + 1552DC852577D71800A92F71 /* blacklist.h in Headers */, + 1543DA462577F8BE0041EFB5 /* sync_codec.h in Headers */, + 1552DC552577D6D700A92F71 /* pEp_string.h in Headers */, + 1552DC192577D69300A92F71 /* pEpEngine.h in Headers */, + 1543DA492577F8BE0041EFB5 /* KeySync_fsm.h in Headers */, + 1552DB142577D4F100A92F71 /* pEpEngine_macOS.h in Headers */, + 1552DC842577D71800A92F71 /* keyreset_command.h in Headers */, + 1552DC7F2577D71800A92F71 /* pgp_sequoia_internal.h in Headers */, + 1543DA4C2577F8BE0041EFB5 /* Sync_event.h in Headers */, + 1552DC512577D6D000A92F71 /* baseprotocol.h in Headers */, + 1552DC802577D71800A92F71 /* fsm_common.h in Headers */, + 1552DC862577D71800A92F71 /* pgp_sequoia.h in Headers */, + 1552DC832577D71800A92F71 /* openpgp_compat.h in Headers */, + 1552DC822577D71800A92F71 /* resource_id.h in Headers */, + 1552DC882577D71800A92F71 /* internal_format.h in Headers */, + 1552DC892577D71800A92F71 /* status_to_string.h in Headers */, + 1552DC7A2577D70700A92F71 /* base64.h in Headers */, + 1552DC812577D71800A92F71 /* aux_mime_msg.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 64A8268B1B455D8D00EECAF0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 158FF96223C49ED600CB1016 /* GroupKeysForNewMember.h in Headers */, - 15B037D722B2B822002D664C /* UTF8String.h in Headers */, - 15B037EF22B2B822002D664C /* ber_decoder.h in Headers */, - 158FF95E23C49ED600CB1016 /* Distribution.h in Headers */, - 15B037B822B2B822002D664C /* NativeInteger.h in Headers */, 438C43B52167752C00C7425B /* labeled_int_list.h in Headers */, 159EF42822B6D3E900149C0C /* pgp_sequoia.h in Headers */, - 15B037E222B2B822002D664C /* per_encoder.h in Headers */, - 15B0380F22B2B823002D664C /* Sync.h in Headers */, 43C3778E246A8C0300962D22 /* internal_format.h in Headers */, - 15B0380422B2B822002D664C /* constr_SET_OF.h in Headers */, - 15B0381322B2B823002D664C /* asn_application.h in Headers */, - 15B0380322B2B822002D664C /* OwnKeysRequester.h in Headers */, 154918AB22B940200091B6D6 /* fsm_common.h in Headers */, - 15147EF3237E9EA7003989FE /* GroupKeysAndClose.h in Headers */, - 15B037E722B2B822002D664C /* GroupTrustThisKey.h in Headers */, 43188A9523C4B2DE008EF79C /* Sync_event.h in Headers */, - 15B037C522B2B822002D664C /* Beacon.h in Headers */, - 15B0380622B2B822002D664C /* CommitAcceptForGroup.h in Headers */, - 15B037D622B2B822002D664C /* KeySync.h in Headers */, - 15B037FD22B2B822002D664C /* Hex.h in Headers */, - 15B0381222B2B823002D664C /* OwnKeysOfferer.h in Headers */, - 15B037ED22B2B822002D664C /* BIT_STRING.h in Headers */, - 15B037DC22B2B822002D664C /* constraints.h in Headers */, - 15B037F222B2B822002D664C /* constr_SEQUENCE_OF.h in Headers */, - 15B0380022B2B822002D664C /* xer_support.h in Headers */, 43188AC123C4BBDE008EF79C /* distribution_codec.h in Headers */, - 15B037CC22B2B822002D664C /* ber_tlv_tag.h in Headers */, 154918BC22B940200091B6D6 /* openpgp_compat.h in Headers */, 154918B222B940200091B6D6 /* aux_mime_msg.h in Headers */, - 15B0381422B2B823002D664C /* asn_SEQUENCE_OF.h in Headers */, - 4378C79123D1AF1700D1AF3F /* ElectGroupKeyResetLeader.h in Headers */, 43188A9623C4B2DE008EF79C /* KeySync_fsm.h in Headers */, - 158FF95D23C49ED600CB1016 /* InitUnledGroupKeyReset.h in Headers */, - 15B037FA22B2B822002D664C /* INTEGER.h in Headers */, - 15B037F322B2B822002D664C /* CommitAccept.h in Headers */, - 15B037CF22B2B822002D664C /* NativeEnumerated.h in Headers */, - 15B037D822B2B822002D664C /* Version.h in Headers */, - 15B037D022B2B822002D664C /* constr_TYPE.h in Headers */, - 15B037B422B2B822002D664C /* PString.h in Headers */, - 15B037F922B2B822002D664C /* per_support.h in Headers */, - 15B037C022B2B822002D664C /* per_opentype.h in Headers */, - 15B0380222B2B822002D664C /* ber_tlv_length.h in Headers */, - 43188AAD23C4B549008EF79C /* Commands.h in Headers */, - 15B037B622B2B822002D664C /* IdentityList.h in Headers */, - 15B037E622B2B822002D664C /* constr_CHOICE.h in Headers */, 646C414F1D510D8800C63EFF /* baseprotocol.h in Headers */, 43188A9423C4B2DE008EF79C /* Sync_impl.h in Headers */, - 15B0381022B2B823002D664C /* CommitAcceptRequester.h in Headers */, - 15B0380A22B2B822002D664C /* asn_internal.h in Headers */, - 15B037D922B2B822002D664C /* xer_encoder.h in Headers */, 154918C322B940200091B6D6 /* blacklist.h in Headers */, - 158FF95C23C49ED600CB1016 /* KeyReset.h in Headers */, - 15B037BF22B2B822002D664C /* BOOLEAN.h in Headers */, - 43188AB723C4B6B9008EF79C /* Command.h in Headers */, 43188A9E23C4B2DE008EF79C /* sync_codec.h in Headers */, 6467888D1CEB3D120001F54C /* map_asn1.h in Headers */, 154918BA22B940200091B6D6 /* resource_id.h in Headers */, - 15B037BA22B2B822002D664C /* asn_system.h in Headers */, - 15B037E522B2B822002D664C /* constr_SEQUENCE.h in Headers */, - 15B037C822B2B822002D664C /* ISO639-1.h in Headers */, - 15B037C922B2B822002D664C /* xer_decoder.h in Headers */, 43188A9923C4B2DE008EF79C /* Sync_func.h in Headers */, - 43370834203C075A004E6547 /* sqlite3.h in Headers */, - 15147EF1237E9EA7003989FE /* GroupHandshake.h in Headers */, - 15B037D522B2B822002D664C /* TID.h in Headers */, - 15B037AD22B2B822002D664C /* Rollback.h in Headers */, - 15B037DB22B2B822002D664C /* asn_codecs_prim.h in Headers */, 431F04B722733A7E00CCE960 /* key_reset.h in Headers */, 64A8268C1B455D9D00EECAF0 /* pEpEngine.h in Headers */, 154918AC22B940200091B6D6 /* status_to_string.h in Headers */, - 15B037DA22B2B822002D664C /* asn_SET_OF.h in Headers */, - 15147EF0237E9EA7003989FE /* NegotiationRequestGrouped.h in Headers */, - 15B037D422B2B822002D664C /* NegotiationRequest.h in Headers */, 430BCC482015EE800077E998 /* pEp_string.h in Headers */, - 15B037F122B2B822002D664C /* OCTET_STRING.h in Headers */, - 15B037CE22B2B822002D664C /* Hash.h in Headers */, - 15B037EE22B2B822002D664C /* der_encoder.h in Headers */, - 15B75BE323FA9F9D00DAE976 /* SynchronizeGroupKeys.h in Headers */, 159EF42922B6D3E900149C0C /* pgp_sequoia_internal.h in Headers */, - 15B037BD22B2B822002D664C /* CommitAcceptOfferer.h in Headers */, - 15B037CA22B2B822002D664C /* PrintableString.h in Headers */, 43188AA923C4B4B3008EF79C /* keyreset_command.h in Headers */, - 15B037B222B2B822002D664C /* Identity.h in Headers */, 154918BD22B940200091B6D6 /* growing_buf.h in Headers */, - 15B037D322B2B822002D664C /* CommitReject.h in Headers */, - 15B0380822B2B822002D664C /* asn_codecs.h in Headers */, C46EBAEE216E445F0042A6A3 /* base64.h in Headers */, - 15B037F722B2B822002D664C /* per_decoder.h in Headers */, - 158FF95F23C49ED600CB1016 /* GroupKeysUpdate.h in Headers */, - 15B037F022B2B822002D664C /* NegotiationOpen.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ + 1552DB102577D4F100A92F71 /* pEpEngine_macOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1552DB192577D4F100A92F71 /* Build configuration list for PBXNativeTarget "pEpEngine_macOS" */; + buildPhases = ( + 1552DB0D2577D4F100A92F71 /* Headers */, + 1552DB0E2577D4F100A92F71 /* Sources */, + 1552DB0F2577D4F100A92F71 /* Frameworks */, + 1508455925F0E0ED00D46DA6 /* Copy Build Artefacts To Custom Build Dir */, + ); + buildRules = ( + ); + dependencies = ( + 15A3266826120623009D07EB /* PBXTargetDependency */, + 15B21C3F25FB8E160097927A /* PBXTargetDependency */, + 1508460725F24D1100D46DA6 /* PBXTargetDependency */, + 15A32305260E0C6F009D07EB /* PBXTargetDependency */, + ); + name = pEpEngine_macOS; + productName = pEpEngine_macOS; + productReference = 1552DB112577D4F100A92F71 /* libpEpEngine_macOS.a */; + productType = "com.apple.product-type.library.static"; + }; 644297BE1BE11C65002BC73B /* pEpTrustWords */ = { isa = PBXNativeTarget; buildConfigurationList = 644297C21BE11C65002BC73B /* Build configuration list for PBXNativeTarget "pEpTrustWords" */; @@ -936,7 +726,6 @@ isa = PBXNativeTarget; buildConfigurationList = 64796A531B455AA5004B1C24 /* Build configuration list for PBXNativeTarget "pEpEngine" */; buildPhases = ( - 43D47B08225DEBD600E97C5B /* Generate src files */, 64796A3B1B455AA5004B1C24 /* Sources */, 64796A3C1B455AA5004B1C24 /* Frameworks */, 64796A3D1B455AA5004B1C24 /* CopyFiles */, @@ -945,8 +734,11 @@ buildRules = ( ); dependencies = ( + 15A3266026120618009D07EB /* PBXTargetDependency */, + 15B21C3625FB8DD10097927A /* PBXTargetDependency */, 43D47AA1225CC82400E97C5B /* PBXTargetDependency */, 64289E3F1B8B638800FC617B /* PBXTargetDependency */, + 15A323EE260E167D009D07EB /* PBXTargetDependency */, ); name = pEpEngine; productName = pEpEngine; @@ -962,6 +754,12 @@ LastUpgradeCheck = 1020; ORGANIZATIONNAME = "p≡p Security S.A."; TargetAttributes = { + 150845DE25F13CE700D46DA6 = { + CreatedOnToolsVersion = 12.4; + }; + 1552DB102577D4F100A92F71 = { + CreatedOnToolsVersion = 12.2; + }; 644297BE1BE11C65002BC73B = { CreatedOnToolsVersion = 7.1; }; @@ -986,16 +784,54 @@ ProductGroup = 64289E2B1B8B630200FC617B /* Products */; ProjectRef = 64DA24121B832EBA000BEE80 /* libetpan.xcodeproj */; }, + { + ProductGroup = 15A3203C260E030B009D07EB /* Products */; + ProjectRef = 15A3203B260E030B009D07EB /* pEpASN1.xcodeproj */; + }, + { + ProductGroup = 15A3261D2611F6B5009D07EB /* Products */; + ProjectRef = 15A3261C2611F6B5009D07EB /* PEPSQLITE3.xcodeproj */; + }, ); projectRoot = ""; targets = ( 64796A3E1B455AA5004B1C24 /* pEpEngine */, + 1552DB102577D4F100A92F71 /* pEpEngine_macOS */, 644297BE1BE11C65002BC73B /* pEpTrustWords */, + 150845DE25F13CE700D46DA6 /* generate_code */, ); }; /* End PBXProject section */ /* Begin PBXReferenceProxy section */ + 15A322F5260E0B75009D07EB /* libpEpASN1_macOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libpEpASN1_macOS.a; + remoteRef = 15A322F4260E0B75009D07EB /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 15A322F7260E0B75009D07EB /* libpEpASN1_iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libpEpASN1_iOS.a; + remoteRef = 15A322F6260E0B75009D07EB /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 15A3266426120618009D07EB /* libPEPSQLITE3_iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libPEPSQLITE3_iOS.a; + remoteRef = 15A3266326120618009D07EB /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 15A3266626120618009D07EB /* libPEPSQLITE3_macOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libPEPSQLITE3_macOS.a; + remoteRef = 15A3266526120618009D07EB /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; 64289E331B8B630200FC617B /* libetpan.framework */ = { isa = PBXReferenceProxy; fileType = wrapper.framework; @@ -1031,7 +867,25 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 43D47B08225DEBD600E97C5B /* Generate src files */ = { + 1508455925F0E0ED00D46DA6 /* Copy Build Artefacts To Custom Build Dir */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Copy Build Artefacts To Custom Build Dir"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "CUSTOM_BUILD_DIR=${PROJECT_DIR}/build\nmkdir -p ${CUSTOM_BUILD_DIR}\ncp -r \"${BUILD_DIR}/${CONFIGURATION}/libpEpEngine_macOS.a\" ${CUSTOM_BUILD_DIR}\n\n# Copy system.db also\ncp ${PROJECT_DIR}/../db/system.db ${CUSTOM_BUILD_DIR}\n"; + }; + 150845EA25F13CF100D46DA6 /* ShellScript */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -1040,7 +894,6 @@ ); inputPaths = ( ); - name = "Generate src files"; outputFileListPaths = ( "$(SRCROOT)/generated-files-asn1.txt", "$(SRCROOT)/generated-files-sync.txt", @@ -1048,7 +901,7 @@ outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/bash; + shellPath = /bin/sh; shellScript = "export LANG=en_US.UTF-8\n\necho \"***************************************\"\necho \"*** Generate files: ACTION: $ACTION ***\"\necho \"***************************************\"\n\ncd \"$SRCROOT/..\"\n\nbash -l -c \"gmake -C sync\"\nbash -l -c \"make -C asn.1 Sync.c Distribution.c\"\n"; }; 644297C61BE11D00002BC73B /* ShellScript */ = { @@ -1067,6 +920,52 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 1552DB0E2577D4F100A92F71 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1552DC292577D6AA00A92F71 /* message_api.c in Sources */, + 1552DC052577D67D00A92F71 /* trans_auto.c in Sources */, + 1552DC3D2577D6BE00A92F71 /* cryptotech.c in Sources */, + 1552DC452577D6C600A92F71 /* blacklist.c in Sources */, + 1552DC1D2577D69A00A92F71 /* pEpEngine.c in Sources */, + 1543DA432577F8BE0041EFB5 /* Sync_event.c in Sources */, + 1552DC092577D68000A92F71 /* timestamp.c in Sources */, + 1552DC4D2577D6CD00A92F71 /* map_asn1.c in Sources */, + 1552DC312577D6B100A92F71 /* identity_list.c in Sources */, + 1552DC682577D6F900A92F71 /* internal_format.c in Sources */, + 1543DAAD257801A90041EFB5 /* resource_id.c in Sources */, + 1552DC6B2577D6F900A92F71 /* labeled_int_list.c in Sources */, + 1552DC352577D6B500A92F71 /* etpan_mime.c in Sources */, + 1543DAA9257801880041EFB5 /* baseprotocol.c in Sources */, + 1552DC662577D6F900A92F71 /* distribution_codec.c in Sources */, + 1543DA472577F8BE0041EFB5 /* KeySync_fsm.c in Sources */, + 1543DA442577F8BE0041EFB5 /* Sync_func.c in Sources */, + 1552DC652577D6F900A92F71 /* keyreset_command.c in Sources */, + 1552DC412577D6C200A92F71 /* bloblist.c in Sources */, + 1552DC112577D68900A92F71 /* stringlist.c in Sources */, + 1552DC012577D67800A92F71 /* transport.c in Sources */, + 1552DC392577D6B900A92F71 /* email.c in Sources */, + 1543DA482577F8BE0041EFB5 /* sync_codec.c in Sources */, + 1552DC6D2577D6F900A92F71 /* aux_mime_msg.c in Sources */, + 1552DC252577D6A600A92F71 /* message.c in Sources */, + 1552DC6A2577D6F900A92F71 /* pgp_sequoia.c in Sources */, + 1552DB162577D4F100A92F71 /* pEpEngine_macOS.m in Sources */, + 1552DC152577D68F00A92F71 /* platform_unix.c in Sources */, + 1552DC212577D6A000A92F71 /* mime.c in Sources */, + 1552DC0D2577D68500A92F71 /* stringpair.c in Sources */, + 1552DC592577D6DB00A92F71 /* pEp_string.c in Sources */, + 1543DA4A2577F8BE0041EFB5 /* Sync_impl.c in Sources */, + 1552DC6C2577D6F900A92F71 /* key_reset.c in Sources */, + 1552DC5D2577D6DE00A92F71 /* sync_api.c in Sources */, + 1552DC692577D6F900A92F71 /* growing_buf.c in Sources */, + 1552DC612577D6E000A92F71 /* openpgp_compat.c in Sources */, + 1552DC6E2577D6F900A92F71 /* base64.c in Sources */, + 1552DC2D2577D6AE00A92F71 /* keymanagement.c in Sources */, + 1543DA422577F8BE0041EFB5 /* Sync_actions.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 644297BB1BE11C65002BC73B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -1079,105 +978,41 @@ buildActionMask = 2147483647; files = ( 64A826871B455D0800EECAF0 /* stringpair.c in Sources */, - 15B037C122B2B822002D664C /* Identity.c in Sources */, - 15B037B522B2B822002D664C /* OCTET_STRING.c in Sources */, 64A826831B455D0800EECAF0 /* platform_unix.c in Sources */, - 15B0380D22B2B822002D664C /* CommitReject.c in Sources */, - 15B0380B22B2B822002D664C /* NativeInteger.c in Sources */, - 15147EF2237E9EA7003989FE /* GroupKeysAndClose.c in Sources */, - 158FF95B23C49ED600CB1016 /* KeyReset.c in Sources */, - 15B037B122B2B822002D664C /* NegotiationRequest.c in Sources */, - 15B037FC22B2B822002D664C /* Hex.c in Sources */, - 432714AB23A10B3B007EAD4A /* GroupKeysUpdate.c in Sources */, - 43E4FBB22362C05600BC01F4 /* NegotiationRequestGrouped.c in Sources */, - 15B0380722B2B822002D664C /* constr_CHOICE.c in Sources */, - 15B037B922B2B822002D664C /* NativeEnumerated.c in Sources */, - 15B037B022B2B822002D664C /* UTF8String.c in Sources */, - 15B037BE22B2B822002D664C /* ber_tlv_tag.c in Sources */, - 15B037FE22B2B822002D664C /* xer_encoder.c in Sources */, - 158FF96323C49ED600CB1016 /* InitUnledGroupKeyReset.c in Sources */, 159EF42722B6D3E900149C0C /* pgp_sequoia.c in Sources */, 43188A9323C4B2DE008EF79C /* sync_codec.c in Sources */, 43188AA823C4B4B3008EF79C /* keyreset_command.c in Sources */, 64A8267B1B455D0800EECAF0 /* etpan_mime.c in Sources */, - 15B037AC22B2B822002D664C /* CommitAccept.c in Sources */, 64A8267A1B455D0800EECAF0 /* email.c in Sources */, - 15B037C422B2B822002D664C /* pdu_collection.c in Sources */, - 15B037E422B2B822002D664C /* xer_decoder.c in Sources */, - 15B037BC22B2B822002D664C /* OwnKeysRequester.c in Sources */, 438C43B62167752C00C7425B /* labeled_int_list.c in Sources */, - 15B037E822B2B822002D664C /* constr_TYPE.c in Sources */, 64A826861B455D0800EECAF0 /* stringlist.c in Sources */, - 15B037FB22B2B822002D664C /* Hash.c in Sources */, 154918BB22B940200091B6D6 /* aux_mime_msg.c in Sources */, - 15B037CD22B2B822002D664C /* PString.c in Sources */, - 43E4FBB42362C29100BC01F4 /* GroupHandshake.c in Sources */, - 15B037F622B2B822002D664C /* Version.c in Sources */, - 15B037C622B2B822002D664C /* xer_support.c in Sources */, 43188A9B23C4B2DE008EF79C /* Sync_func.c in Sources */, - 15B037EC22B2B822002D664C /* constraints.c in Sources */, - 15B0380522B2B822002D664C /* asn_codecs_prim.c in Sources */, 64A8267E1B455D0800EECAF0 /* message_api.c in Sources */, - 15B037D122B2B822002D664C /* per_encoder.c in Sources */, - 15B037CB22B2B822002D664C /* ISO639-1.c in Sources */, - 15B037AF22B2B822002D664C /* constr_SEQUENCE.c in Sources */, - 15B037B722B2B822002D664C /* Sync.c in Sources */, 64A826891B455D0800EECAF0 /* trans_auto.c in Sources */, - 15B0380922B2B822002D664C /* per_support.c in Sources */, - 15B037D222B2B822002D664C /* CommitAcceptRequester.c in Sources */, - 15B037E122B2B822002D664C /* GroupTrustThisKey.c in Sources */, 43F73C112166282C00AB4524 /* sync_api.c in Sources */, 64A8267D1B455D0800EECAF0 /* keymanagement.c in Sources */, 64A8267C1B455D0800EECAF0 /* identity_list.c in Sources */, 43F73C0D2166282C00AB4524 /* key_reset.c in Sources */, - 43188AAC23C4B549008EF79C /* Commands.c in Sources */, - 15B0380C22B2B822002D664C /* BOOLEAN.c in Sources */, 64A8268A1B455D0800EECAF0 /* transport.c in Sources */, - 15B037EA22B2B822002D664C /* BIT_STRING.c in Sources */, - 15B037F522B2B822002D664C /* INTEGER.c in Sources */, - 15B037C222B2B822002D664C /* asn_SEQUENCE_OF.c in Sources */, 64A826791B455D0800EECAF0 /* cryptotech.c in Sources */, 64A826781B455D0800EECAF0 /* bloblist.c in Sources */, 43188A9F23C4B2DE008EF79C /* Sync_actions.c in Sources */, - 15B0381122B2B823002D664C /* CommitAcceptForGroup.c in Sources */, C46EBAED216E445F0042A6A3 /* base64.c in Sources */, 430BCC492015EE800077E998 /* pEp_string.c in Sources */, - 15B037EB22B2B822002D664C /* constr_SET_OF.c in Sources */, - 15B037DD22B2B822002D664C /* Rollback.c in Sources */, - 158FF96123C49ED600CB1016 /* Distribution.c in Sources */, 43F73C0B2166282C00AB4524 /* openpgp_compat.c in Sources */, - 15B037F422B2B822002D664C /* ber_decoder.c in Sources */, - 43370833203C075A004E6547 /* sqlite3.c in Sources */, - 15B0380122B2B822002D664C /* asn_SET_OF.c in Sources */, - 15B037DE22B2B822002D664C /* KeySync.c in Sources */, - 15B75BE223FA9F9D00DAE976 /* SynchronizeGroupKeys.c in Sources */, - 15B037C322B2B822002D664C /* constr_SEQUENCE_OF.c in Sources */, - 15B037DF22B2B822002D664C /* IdentityList.c in Sources */, - 15B037AE22B2B822002D664C /* NegotiationOpen.c in Sources */, - 15B037B322B2B822002D664C /* Beacon.c in Sources */, 64A826881B455D0800EECAF0 /* timestamp.c in Sources */, - 15B037BB22B2B822002D664C /* der_encoder.c in Sources */, - 15B037E022B2B822002D664C /* TID.c in Sources */, 43F6921D1F164A47009418F5 /* resource_id.c in Sources */, - 15B037AA22B2B822002D664C /* ber_tlv_length.c in Sources */, - 15B037F822B2B822002D664C /* OwnKeysOfferer.c in Sources */, 430D258B1C9ED75A00B94535 /* blacklist.c in Sources */, - 15B0380E22B2B822002D664C /* PrintableString.c in Sources */, - 15B037E922B2B822002D664C /* CommitAcceptOfferer.c in Sources */, 43188AC023C4BBDE008EF79C /* distribution_codec.c in Sources */, - 432713B023A10B07007EAD4A /* GroupKeysForNewMember.c in Sources */, 646C414E1D510D8800C63EFF /* baseprotocol.c in Sources */, - 43188AB623C4B6B9008EF79C /* Command.c in Sources */, - 15B037C722B2B822002D664C /* per_decoder.c in Sources */, 6467888C1CEB3D120001F54C /* map_asn1.c in Sources */, 43188A9C23C4B2DE008EF79C /* Sync_impl.c in Sources */, 43F73C122166282C00AB4524 /* growing_buf.c in Sources */, 64A826801B455D0800EECAF0 /* mime.c in Sources */, - 4378C79223D1AF1700D1AF3F /* ElectGroupKeyResetLeader.c in Sources */, 43188A9D23C4B2DE008EF79C /* Sync_event.c in Sources */, 64A8267F1B455D0800EECAF0 /* message.c in Sources */, 64A826811B455D0800EECAF0 /* pEpEngine.c in Sources */, - 15B037FF22B2B822002D664C /* per_opentype.c in Sources */, 43188A9823C4B2DE008EF79C /* KeySync_fsm.c in Sources */, 43C3778F246A8C0300962D22 /* internal_format.c in Sources */, ); @@ -1186,6 +1021,41 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ + 1508460725F24D1100D46DA6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 644297BE1BE11C65002BC73B /* pEpTrustWords */; + targetProxy = 1508460625F24D1100D46DA6 /* PBXContainerItemProxy */; + }; + 15A32305260E0C6F009D07EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = pEpASN1_macOS; + targetProxy = 15A32304260E0C6F009D07EB /* PBXContainerItemProxy */; + }; + 15A323EE260E167D009D07EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = pEpASN1_iOS; + targetProxy = 15A323ED260E167D009D07EB /* PBXContainerItemProxy */; + }; + 15A3266026120618009D07EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PEPSQLITE3_iOS; + targetProxy = 15A3265F26120618009D07EB /* PBXContainerItemProxy */; + }; + 15A3266826120623009D07EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PEPSQLITE3_macOS; + targetProxy = 15A3266726120623009D07EB /* PBXContainerItemProxy */; + }; + 15B21C3625FB8DD10097927A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 150845DE25F13CE700D46DA6 /* generate_code */; + targetProxy = 15B21C3525FB8DD10097927A /* PBXContainerItemProxy */; + }; + 15B21C3F25FB8E160097927A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 150845DE25F13CE700D46DA6 /* generate_code */; + targetProxy = 15B21C3E25FB8E160097927A /* PBXContainerItemProxy */; + }; 43D47AA1225CC82400E97C5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 644297BE1BE11C65002BC73B /* pEpTrustWords */; @@ -1199,12 +1069,104 @@ /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ + 150845DF25F13CE700D46DA6 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 150845E025F13CE700D46DA6 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; + 1552DB172577D4F100A92F71 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD)"; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_STYLE = Automatic; + DEBUG_INFORMATION_FORMAT = dwarf; + DEVELOPMENT_TEAM = NQLYU6MGPN; + EXECUTABLE_PREFIX = lib; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/../../sequoia4macos/build/include", + "$(PROJECT_DIR)/Subprojects/pEpASN1/build/include", + "$(PROJECT_DIR)/../../local/include", + "$(PROJECT_DIR)/Subprojects/PEPSQLITE3/build/include", + ); + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + OTHER_CFLAGS = ""; + OTHER_LIBTOOLFLAGS = "${PROJECT_DIR}/../../sequoia4macos/build/lib/libnettle.a ${PROJECT_DIR}/../../sequoia4macos/build/lib/libgmp.a ${PROJECT_DIR}/../../sequoia4macos/build/lib/libhogweed.a ${PROJECT_DIR}/../../sequoia4macos/build/lib/libsequoia_openpgp_ffi.a ${PROJECT_DIR}/../../local/lib/libetpan.a"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 1552DB182577D4F100A92F71 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD)"; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NQLYU6MGPN; + EXECUTABLE_PREFIX = lib; + GCC_C_LANGUAGE_STANDARD = gnu11; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/../../sequoia4macos/build/include", + "$(PROJECT_DIR)/Subprojects/pEpASN1/build/include", + "$(PROJECT_DIR)/../../local/include", + "$(PROJECT_DIR)/Subprojects/PEPSQLITE3/build/include", + ); + MACOSX_DEPLOYMENT_TARGET = 10.10; + MTL_FAST_MATH = YES; + OTHER_CFLAGS = ""; + OTHER_LIBTOOLFLAGS = "${PROJECT_DIR}/../../sequoia4macos/build/lib/libnettle.a ${PROJECT_DIR}/../../sequoia4macos/build/lib/libgmp.a ${PROJECT_DIR}/../../sequoia4macos/build/lib/libhogweed.a ${PROJECT_DIR}/../../sequoia4macos/build/lib/libsequoia_openpgp_ffi.a ${PROJECT_DIR}/../../local/lib/libetpan.a"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Release; + }; 644297C31BE11C65002BC73B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + DEVELOPMENT_TEAM = NQLYU6MGPN; INFOPLIST_FILE = pEpTrustWords/Info.plist; PRODUCT_BUNDLE_IDENTIFIER = com.pep.pEpTrustWords; PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; name = Debug; @@ -1212,9 +1174,13 @@ 644297C41BE11C65002BC73B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + DEVELOPMENT_TEAM = NQLYU6MGPN; INFOPLIST_FILE = pEpTrustWords/Info.plist; PRODUCT_BUNDLE_IDENTIFIER = com.pep.pEpTrustWords; PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; + TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; name = Release; @@ -1223,6 +1189,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD)"; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; @@ -1242,6 +1209,7 @@ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; @@ -1265,19 +1233,14 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)", - "$(SRCROOT)/../../OpenSSL-for-iPhone/include", - "$(SRCROOT)/../asn.1/", - "$(PROJECT_DIR)/../../sequoia4ios/build/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + HEADER_SEARCH_PATHS = "$(inherited)"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MACOSX_DEPLOYMENT_TARGET = 10.10; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "-DSQLITE3_FROM_OS"; + OTHER_CFLAGS = ""; SDKROOT = iphoneos; - VALID_ARCHS = "$(VALID_ARCHS) x86_64"; + VALID_ARCHS = "arm64 x86_64"; }; name = Debug; }; @@ -1285,6 +1248,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD)"; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; @@ -1304,6 +1268,7 @@ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; @@ -1327,32 +1292,33 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(SRCROOT)", - "$(SRCROOT)/../../OpenSSL-for-iPhone/include", - "$(SRCROOT)/../asn.1/", - "$(PROJECT_DIR)/../../sequoia4ios/build/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + HEADER_SEARCH_PATHS = "$(inherited)"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MACOSX_DEPLOYMENT_TARGET = 10.10; MTL_ENABLE_DEBUG_INFO = NO; ONLY_ACTIVE_ARCH = NO; - OTHER_CFLAGS = "-DSQLITE3_FROM_OS"; + OTHER_CFLAGS = ""; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; - VALID_ARCHS = "$(VALID_ARCHS) x86_64"; + VALID_ARCHS = "arm64 x86_64"; }; name = Release; }; 64796A541B455AA5004B1C24 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", "DEBUG=1", ); - HEADER_SEARCH_PATHS = "$(inherited)"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/../../sequoia4ios/build/include", + "$(PROJECT_DIR)/Subprojects/pEpASN1/build/include", + "$(PROJECT_DIR)/Subprojects/PEPSQLITE3/build/include", + ); + IPHONEOS_DEPLOYMENT_TARGET = "${inherited}"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/../../Sequoia4iOS/build/lib", @@ -1364,9 +1330,7 @@ SKIP_INSTALL = YES; USER_HEADER_SEARCH_PATHS = ( "$(PROJECT_DIR)/../src", - "$(PROJECT_DIR)", "$(PROJECT_DIR)/../../OpenSSL-for-iPhone/include", - "$(PROJECT_DIR)/../asn.1/", "$(inherited)", ); }; @@ -1375,9 +1339,15 @@ 64796A551B455AA5004B1C24 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO; GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)"; - HEADER_SEARCH_PATHS = "$(inherited)"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/../../sequoia4ios/build/include", + "$(PROJECT_DIR)/Subprojects/pEpASN1/build/include", + "$(PROJECT_DIR)/Subprojects/PEPSQLITE3/build/include", + ); + IPHONEOS_DEPLOYMENT_TARGET = "${inherited}"; LIBRARY_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/../../Sequoia4iOS/build/lib", @@ -1388,9 +1358,7 @@ SKIP_INSTALL = YES; USER_HEADER_SEARCH_PATHS = ( "$(PROJECT_DIR)/../src", - "$(PROJECT_DIR)", "$(PROJECT_DIR)/../../OpenSSL-for-iPhone/include", - "$(PROJECT_DIR)/../asn.1/", "$(inherited)", ); }; @@ -1399,6 +1367,24 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ + 150845E525F13CE700D46DA6 /* Build configuration list for PBXAggregateTarget "generate_code" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 150845DF25F13CE700D46DA6 /* Debug */, + 150845E025F13CE700D46DA6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1552DB192577D4F100A92F71 /* Build configuration list for PBXNativeTarget "pEpEngine_macOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1552DB172577D4F100A92F71 /* Debug */, + 1552DB182577D4F100A92F71 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 644297C21BE11C65002BC73B /* Build configuration list for PBXNativeTarget "pEpTrustWords" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/build-mac/pEpEngine.xcodeproj/xcshareddata/xcschemes/pEpEngine.xcscheme b/build-mac/pEpEngine.xcodeproj/xcshareddata/xcschemes/pEpEngine.xcscheme index 7d604060..7e32f4d1 100644 --- a/build-mac/pEpEngine.xcodeproj/xcshareddata/xcschemes/pEpEngine.xcscheme +++ b/build-mac/pEpEngine.xcodeproj/xcshareddata/xcschemes/pEpEngine.xcscheme @@ -6,20 +6,6 @@ parallelizeBuildables = "NO" buildImplicitDependencies = "YES"> - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build-mac/pEpEngine_macOS/pEpEngine_macOS.h b/build-mac/pEpEngine_macOS/pEpEngine_macOS.h new file mode 100644 index 00000000..8a5dd12e --- /dev/null +++ b/build-mac/pEpEngine_macOS/pEpEngine_macOS.h @@ -0,0 +1,13 @@ +// +// pEpEngine_macOS.h +// pEpEngine_macOS +// +// Created by Andreas Buff on 02.12.20. +// Copyright © 2020 p≡p Security S.A. All rights reserved. +// + +#import + +@interface pEpEngine_macOS : NSObject + +@end diff --git a/build-mac/pEpEngine_macOS/pEpEngine_macOS.m b/build-mac/pEpEngine_macOS/pEpEngine_macOS.m new file mode 100644 index 00000000..15346b03 --- /dev/null +++ b/build-mac/pEpEngine_macOS/pEpEngine_macOS.m @@ -0,0 +1,13 @@ +// +// pEpEngine_macOS.m +// pEpEngine_macOS +// +// Created by Andreas Buff on 02.12.20. +// Copyright © 2020 p≡p Security S.A. All rights reserved. +// + +#import "pEpEngine_macOS.h" + +@implementation pEpEngine_macOS + +@end diff --git a/build-windows/generate_code.cmd b/build-windows/generate_code.cmd index bd1461f1..0f8d3156 100644 --- a/build-windows/generate_code.cmd +++ b/build-windows/generate_code.cmd @@ -1,78 +1,84 @@ @ECHO OFF -PUSHD . -SET pwd=%cd% -CD %pwd%\sync +:: The script is located in ...\pEpForWindowsAdapterSolution\pEpEngine\build-windows\ +SET current_directory=%~dp0 + +:: Engine directory is ...\pEpForWindowsAdapterSolution\pEpEngine\ +SET engine_directory=%current_directory:~0,-14% + +:: YML2 directory is ...\pEpForWindowsAdapterSolution\yml2\ +SET yml2_directory=%engine_directory:~0,-11%\yml2 + +:: Create the system.db +PUSHD %engine_directory%\db +CALL make_systemdb +IF NOT EXIST "%ProgramData%\pEp" "MKDIR %ProgramData%\pEp" +DEL "%ProgramData%\pEp\system.db" +MOVE system.db "%ProgramData%\pEp\system.db" + +:: Generate code in ...\pEpEngine\sync +CD ..\sync + +:: Make sure YML2 is installed +PY -m pip install --upgrade pip +PY -m pip install wheel +PY -m pip install yml2 + +:: Generate the Sync code IF NOT EXIST generated MKDIR generated -ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_actions.ysl2 sync.fsm -py "%YML_PATH%\yml2proc" -E utf-8 -y gen_actions.ysl2 sync.fsm -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) -ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 distribution.fsm -py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 distribution.fsm -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) -ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 sync.fsm -py "%YML_PATH%\yml2proc" -E utf-8 -y gen_codec.ysl2 sync.fsm -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) -ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 sync.fsm -py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 sync.fsm -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) -ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 distribution.fsm -py "%YML_PATH%\yml2proc" -E utf-8 -y gen_messages.ysl2 distribution.fsm -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) -ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_message_func.ysl2 sync.fsm -py "%YML_PATH%\yml2proc" -E utf-8 -y gen_message_func.ysl2 sync.fsm -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) -ECHO py "%YML_PATH%\yml2proc" -E utf-8 -y gen_statemachine.ysl2 sync.fsm -py "%YML_PATH%\yml2proc" -E utf-8 -y gen_statemachine.ysl2 sync.fsm -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) - -xcopy /y generated\*.asn1 ..\asn.1\ -xcopy /y generated\*.c ..\src\ -xcopy /y generated\*.h ..\src\ - -CD %pwd%\asn.1 +ECHO PY -m yml2.yml2proc -E utf-8 -y gen_actions.ysl2 sync.fsm +PY -m yml2.yml2proc -E utf-8 -y gen_actions.ysl2 sync.fsm +IF %ERRORLEVEL% NEQ 0 GOTO end + +ECHO PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 distribution.fsm +PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 distribution.fsm +IF %ERRORLEVEL% NEQ 0 GOTO end + +ECHO PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 sync.fsm +PY -m yml2.yml2proc -E utf-8 -y gen_codec.ysl2 sync.fsm +IF %ERRORLEVEL% NEQ 0 GOTO end + +ECHO PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 sync.fsm +PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 sync.fsm +IF %ERRORLEVEL% NEQ 0 GOTO end + +ECHO PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 distribution.fsm +PY -m yml2.yml2proc -E utf-8 -y gen_messages.ysl2 distribution.fsm +IF %ERRORLEVEL% NEQ 0 GOTO end + +ECHO PY -m yml2.yml2proc -E utf-8 -y gen_message_func.ysl2 sync.fsm +PY -m yml2.yml2proc -E utf-8 -y gen_message_func.ysl2 sync.fsm +IF %ERRORLEVEL% NEQ 0 GOTO end + +ECHO PY -m yml2.yml2proc -E utf-8 -y gen_statemachine.ysl2 sync.fsm +PY -m yml2.yml2proc -E utf-8 -y gen_statemachine.ysl2 sync.fsm +IF %ERRORLEVEL% NEQ 0 GOTO end + +XCOPY /y generated\*.asn1 ..\asn.1\ +XCOPY /y generated\*.c ..\src\ +XCOPY /y generated\*.h ..\src\ + +CD %engine_directory%\asn.1 DEL *.h DEL *.c ..\..\Tools\asn1c\bin\asn1c -S ../../Tools/asn1c/share/asn1c -gen-PER -fincludes-quoted -fcompound-names -pdu=auto pEp.asn1 keysync.asn1 sync.asn1 -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) +IF %ERRORLEVEL% NEQ 0 GOTO end + ..\..\Tools\asn1c\bin\asn1c -S ../../Tools/asn1c/share/asn1c -gen-PER -fincludes-quoted -fcompound-names -pdu=auto pEp.asn1 keyreset.asn1 distribution.asn1 -IF %ERRORLEVEL% NEQ 0 ( - POPD - EXIT /B 1 - ) +IF %ERRORLEVEL% NEQ 0 GOTO end DEL *-sample.c -CD %pwd%\.. -RD /S/Q pEp +CD %engine_directory%\.. MKDIR pEp XCOPY pEpEngine\src\*.h pEp\ /Y/F/I +XCOPY libpEpAdapter\*.hh pEp\ /Y/F/I +XCOPY libpEpAdapter\*.hxx pEp\ /Y/F/I + +:end POPD +EXIT /B %ERRORLEVEL% \ No newline at end of file diff --git a/build-windows/libpEpasn1/libpEpasn1.vcxproj b/build-windows/libpEpasn1/libpEpasn1.vcxproj index 7bd8f91d..d27fb1a4 100644 --- a/build-windows/libpEpasn1/libpEpasn1.vcxproj +++ b/build-windows/libpEpasn1/libpEpasn1.vcxproj @@ -61,8 +61,7 @@ Windows - cd "$(ProjectDir)..\.." && "$(ProjectDir)..\generate_code.cmd" - Generating Code for pEp Sync + IF NOT EXIST "..\..\..\pEp" CALL ..\generate_code.cmd @@ -82,8 +81,7 @@ true - cd "$(ProjectDir)..\.." && "$(ProjectDir)..\generate_code.cmd" - Generating Code for pEp Sync + IF NOT EXIST "..\..\..\pEp" CALL ..\generate_code.cmd @@ -93,138 +91,14 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + \ No newline at end of file diff --git a/build-windows/pEpEngine.vcxproj b/build-windows/pEpEngine.vcxproj index 87747c58..acb09a86 100644 --- a/build-windows/pEpEngine.vcxproj +++ b/build-windows/pEpEngine.vcxproj @@ -86,12 +86,13 @@ false - cargo build --manifest-path="$(SolutionDir)sequoia\Cargo.toml" -p sequoia-openpgp-ffi - - + cargo build --manifest-path="$(SolutionDir)sequoia\Cargo.toml" - xcopy "$(SolutionDir)sequoia\target\debug\sequoia_openpgp_ffi.dll" "$(TargetDir)" /Y + + xcopy "$(SolutionDir)sequoia\target\debug\sequoia_openpgp_ffi.dll" "$(TargetDir)" /Y + xcopy "$(SolutionDir)sequoia\target\debug\sq.exe" "$(TargetDir)" /Y + @@ -120,15 +121,17 @@ $(SolutionDir)sequoia\target\release;C:\msys64\mingw32\lib - cargo build --manifest-path="$(SolutionDir)sequoia\Cargo.toml" --release -p sequoia-openpgp-ffi - - + cargo build --manifest-path="$(SolutionDir)sequoia\Cargo.toml" --release - xcopy "$(SolutionDir)sequoia\target\release\sequoia_openpgp_ffi.dll" "$(TargetDir)" /Y + + xcopy "$(SolutionDir)sequoia\target\release\sequoia_openpgp_ffi.dll" "$(TargetDir)" /Y + xcopy "$(SolutionDir)sequoia\target\release\sq.exe" "$(TargetDir)" /Y + + @@ -155,6 +158,7 @@ + @@ -170,11 +174,13 @@ + + @@ -183,6 +189,7 @@ + @@ -200,7 +207,9 @@ + + diff --git a/build-windows/pEpEngine.vcxproj.filters b/build-windows/pEpEngine.vcxproj.filters index 5246a7c8..4ecc8075 100644 --- a/build-windows/pEpEngine.vcxproj.filters +++ b/build-windows/pEpEngine.vcxproj.filters @@ -129,6 +129,12 @@ Quelldateien + + Quelldateien + + + Quelldateien + @@ -272,13 +278,26 @@ Headerdateien + + Headerdateien + + + Headerdateien + + + Headerdateien + + + Headerdateien + + + Headerdateien + - - Quelldateien - + \ No newline at end of file diff --git a/codegen/Makefile b/codegen/Makefile new file mode 100644 index 00000000..5c679018 --- /dev/null +++ b/codegen/Makefile @@ -0,0 +1,48 @@ +# This file is under GNU General Public License 3.0 +# see LICENSE.txt + +include ../Makefile.conf + +.PHONY: all clean + +all: .copy + +generated: + mkdir -p $@ + +statemachines := $(patsubst %.fsm,%.fsm.gen,$(wildcard *.fsm)) + +actions := $(patsubst %.act,%.act.gen,$(wildcard *.act)) + +dot := $(patsubst %.fsm,%.dot,$(wildcard *.fsm)) + +%.fsm.gen: %.fsm gen_statemachine.ysl2 fsm.yml2 functions.ysl2 | generated + $(YML2_PROC) -y gen_statemachine.ysl2 $< > /dev/null + $(YML2_PROC) -y gen_codec.ysl2 $< > /dev/null + $(YML2_PROC) -y gen_messages.ysl2 $< > /dev/null + $(YML2_PROC) -y gen_message_func.ysl2 $< -o $@ + +%.act.gen: %.act %.fsm gen_actions.ysl2 fsm.yml2 functions.ysl2 | generated + echo 'define actfile = "./$<";' | $(YML2_PROC) - gen_actions.ysl2 | \ + $(YML2_PROC) -X - $(subst .act,.fsm,$<) -o $@ + +clean: + rm -rf generated *.gen + rm -f *.xml *.xsl .copy *.dot *.svg + +.copy: $(actions) $(statemachines) $(dot) + cp -f generated/*.c generated/*.h ../src + cp -f generated/*.asn1 ../asn.1 + touch .copy + +%.xml: %.fsm + $(YML2_PROC) $< -o $@ + +svg: $(patsubst %.dot,%.svg,$(wildcard *.dot)) + +%.dot: %.fsm gen_dot.ysl2 + $(YML2_PROC) -y gen_dot.ysl2 $< -o $@ + +%.svg: %.dot + dot -Tsvg -o $@ $< + diff --git a/codegen/distribution.fsm b/codegen/distribution.fsm new file mode 100644 index 00000000..424c73df --- /dev/null +++ b/codegen/distribution.fsm @@ -0,0 +1,72 @@ +// This file is under BSD License 2.0 + +// Distribution protocol for p≡p +// Copyright (c) 2019-2021, p≡p foundation + +// Written by Volker Birk + +include ./fsm.yml2 + +protocol Distribution 2 { + + // this protocol is stateless + fsm KeyReset 1 { + version 1, 0; + + message Commands 2 { + auto Version version; + list Command commandlist { + field Identity ident; + field Hash newkey; + } + } + } + + // this protocol is stateless + fsm ManagedGroup 2 { + version 1, 0; + + message GroupCreate 2, security=untrusted { + field Identity groupIdentity; + field Identity manager; + } + + message GroupAdopted 3, security=untrusted { + field Identity groupIdentity; + field Identity member; + } + + message GroupDissolve 4, security=untrusted { + field Identity groupIdentity; + field Identity manager; + } + } + + fsm Exploration 3 { + version 1, 0; + + message ExploreRequest 2, security=unencrypted { + field TID challenge; + field Identity forward; + } + + message ExploreAnswer 3, security=untrusted { + field TID challenge; + field Identity forward; + field Identity back; + } + + message ExploreChallenge 4, security=untrusted { + field TID challenge; + field Identity forward; + field Identity back; + } + + message ExploreResponse 5, security=untrusted { + field TID challenge; + field Identity forward; + field Identity back; + } + } +} + diff --git a/sync/fsm.yml2 b/codegen/fsm.yml2 similarity index 94% rename from sync/fsm.yml2 rename to codegen/fsm.yml2 index b37bfa80..c14553fb 100644 --- a/sync/fsm.yml2 +++ b/codegen/fsm.yml2 @@ -66,3 +66,7 @@ decl auto < field >; decl list < field >; +// emped message from other state machine + +decl embed @protocol @type @name; + diff --git a/sync/functions.ysl2 b/codegen/functions.ysl2 similarity index 100% rename from sync/functions.ysl2 rename to codegen/functions.ysl2 diff --git a/sync/gen_actions.ysl2 b/codegen/gen_actions.ysl2 similarity index 59% rename from sync/gen_actions.ysl2 rename to codegen/gen_actions.ysl2 index ce1c52c4..be22b45b 100644 --- a/sync/gen_actions.ysl2 +++ b/codegen/gen_actions.ysl2 @@ -23,13 +23,19 @@ tstylesheet { include standardlib.ysl2 include ./functions.ysl2 - include ./cond_act_*.yml2 + include from *actfile template "/protocol" { document "generated/{@name}_actions.c", "text" { || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + /** + * @file «@name»_actions.c + * @brief Implementation of «@name» conditions, actions, and timeout handlers defined in «@name»_impl.h, + * with supporting static (internal) functions + * @generated from ../sync/gen_actions.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ #include "pEp_internal.h" #include "map_asn1.h" @@ -37,6 +43,20 @@ tstylesheet { #include "«@name»_impl.h" `` for "fsm" | #include "«@name»_fsm.h" + /** + * + * + * @internal + * + * @brief Compare two traffic identifiers and see if the first is greater than the second + * + * @param[in] t1 pointer to the first TID + * @param[in] t2 pointer to the second TID + * + * @retval true if t2 is NULL and t1 is not, or the size of t1 is greater than t2, or + * the first non-matching byte of t1 is greater than that of t2 + * false otherwise + */ static bool _TID_greater(TID_t *t1, TID_t *t2) { assert(t1 && t2); @@ -53,6 +73,20 @@ tstylesheet { return memcmp(t1->buf, t2->buf, t1->size) > 0; } + /** + * + * + * @internal + * + * @brief Determine if two identity refer to the same identity (by comparing the unique identifier + * of user_id + address) + * + * @param[in] ident1 pointer to the first identity + * @param[in] ident2 pointer to the second identity + * + * @retval true if user_id and address match on both identities + * false otherwise + */ static bool _same_identity(pEp_identity *ident1, pEp_identity *ident2) { if (!(ident1 && ident1->user_id && ident1->address && ident2 && ident2->user_id && ident2->address)) @@ -62,10 +96,26 @@ tstylesheet { && strcmp(ident1->address, ident2->address) == 0; } + /** + * + * + * @internal + * + * @brief Given an identity list and an identity, determine if there is an identity in + * the list that refers to the same identity as the identity struct. + * + * @param[in] il pointer to the identity list + * @param[in] ident pointer to the identity to search for + * @param[out] found true if an identity with matching unique identifiers is in the list, else false + * + * @retval PEP_ILLEGAL_VALUE any of the input pointers are NULL + * PEP_OUT_OF_MEMORY if memory problems occur + * PEP_STATUS_OK otherwise + */ static PEP_STATUS _have_identity_in(identity_list *il, pEp_identity *ident, bool *found) { - assert(il && ident); - if (!(il && ident)) + assert(il && ident && found); + if (!(il && ident && found)) return PEP_ILLEGAL_VALUE; bool _found = false; diff --git a/sync/gen_codec.ysl2 b/codegen/gen_codec.ysl2 similarity index 63% rename from sync/gen_codec.ysl2 rename to codegen/gen_codec.ysl2 index d83e3606..8aae0382 100644 --- a/sync/gen_codec.ysl2 +++ b/codegen/gen_codec.ysl2 @@ -15,11 +15,20 @@ tstylesheet { template "/protocol" { document "generated/{yml:lcase(@name)}_codec.h", "text" || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt - - #pragma once - + /** + * @file «@name»_codec.h + * @brief Definitions for «@name» encode and decode functions which transform message payloads to + * and from PER-encoded data, and XER text to and from PER + * @generated from ../sync/gen_codec.ysl2 + * + * @see https://www.itu.int/en/ITU-T/asn1/Pages/introduction.aspx + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ + + + #ifndef «yml:ucase(@name)»_CODEC_H + #define «yml:ucase(@name)»_CODEC_H #include "pEpEngine.h" @@ -31,33 +40,38 @@ tstylesheet { struct «@name»; - // decode_«@name»_message() - decode PER encoded «@name» message - // - // parameters: - // data (in) PER encoded data - // size (in) size of PER encoded data - // msg (out) «@name» message - // - // caveat: - // msg goes into the ownership of the caller - + /** + * + * + * @brief decode PER encoded «@name» message + * + * @param[in] data PER encoded data + * @param[in] size size of PER encoded data + * @param[out] msg decoded «@name» message + * + * @retval status + * + * @ownership msg goes into the ownership of the caller + */ DYNAMIC_API PEP_STATUS decode_«@name»_message( const char *data, size_t size, struct «@name» **msg ); - - // encode_«@name»_message() - encode «@name» message into PER encoded data - // - // parameters: - // msg (in) «@name» message - // data (out) PER encoded data - // size (out) size of PER encoded data - // - // caveat: - // data goes to the ownership of the caller - + /** + * + * + * @brief decode PER encoded «@name» message + * + * @param[in] msg «@name» message to encode + * @param[out] data PER encoded data + * @param[out] size size of PER encoded data + * + * @retval status + * + * @ownership msg goes into the ownership of the caller + */ DYNAMIC_API PEP_STATUS encode_«@name»_message( struct «@name» *msg, char **data, @@ -65,27 +79,34 @@ tstylesheet { ); - // PER_to_XER_«@name»_msg() - decode «@name» message from PER into XER - // - // parameters: - // data (in) PER encoded data - // size (in) size of PER encoded data - // text (out) XER text of the same «@name» message - + /** + * + * + * @brief decode «@name» message from PER into XER + * + * @param[in] data PER encoded data + * @param[in] size size of PER encoded data + * @param[out] text XER text of the same «@name» message + * + * @retval status + */ DYNAMIC_API PEP_STATUS PER_to_XER_«@name»_msg( const char *data, size_t size, char **text ); - - // XER_to_PER_«@name»_msg() - encode «@name» message from XER into PER - // - // parameters: - // text (in) string with XER text of the «@name» message - // data (out) PER encoded data - // size (out) size of PER encoded data - + /** + * + * + * @brief encode «@name» message from XER into PER + * + * @param[in] text string text with XER text of the «@name» message + * @param[out] data PER encoded data + * @param[out] size size of PER encoded data + * + * @retval status + */ DYNAMIC_API PEP_STATUS XER_to_PER_«@name»_msg( const char *text, char **data, @@ -96,12 +117,21 @@ tstylesheet { #ifdef __cplusplus } #endif + #endif || document "generated/{yml:lcase(@name)}_codec.c", "text" || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + /** + * @file «@name»_codec.c + * @brief Implementation for «@name» encode and decode functions which transform message payloads to + * and from PER-encoded data, and XER text to and from PER + * @generated from ../sync/gen_codec.ysl2 + * + * @see https://www.itu.int/en/ITU-T/asn1/Pages/introduction.aspx + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ #include "platform.h" diff --git a/sync/gen_doc.yml2 b/codegen/gen_doc.yml2 similarity index 100% rename from sync/gen_doc.yml2 rename to codegen/gen_doc.yml2 diff --git a/sync/gen_dot.ysl2 b/codegen/gen_dot.ysl2 similarity index 91% rename from sync/gen_dot.ysl2 rename to codegen/gen_dot.ysl2 index 2392dd44..03b785de 100644 --- a/sync/gen_dot.ysl2 +++ b/codegen/gen_dot.ysl2 @@ -4,7 +4,7 @@ include yslt.yml2 tstylesheet { - template "protocol/fsm" document "{@name}.dot", "text" + template "protocol/fsm[count(state)>0]" document "{@name}.dot", "text" || digraph finite_state_machine { rankdir=LR; diff --git a/sync/gen_message_func.ysl2 b/codegen/gen_message_func.ysl2 similarity index 66% rename from sync/gen_message_func.ysl2 rename to codegen/gen_message_func.ysl2 index 657f2748..0c9f56e2 100644 --- a/sync/gen_message_func.ysl2 +++ b/codegen/gen_message_func.ysl2 @@ -20,12 +20,18 @@ template "/" { } template "protocol", mode=header - document "generated/{@name}_func.h", "text" + if "fsm[count(state)]" document "generated/{@name}_func.h", "text" || -// This file is under GNU General Public License 3.0 -// see LICENSE.txt +/** + * @file «@name»_func.h + * @brief State storage and retrieval, and associated «@name» message generation and processing, for the «@name» protocol. + * @generated from ../sync/gen_message_func.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ -#pragma once +#ifndef «yml:ucase(@name)»_FUNC_H +#define «yml:ucase(@name)»_FUNC_H #ifdef __cplusplus extern "C" { @@ -36,77 +42,169 @@ extern "C" { #include "../asn.1/«@name».h" `` for "func:distinctType(fsm/message/field[not(func:basicType())])" | #include "../asn.1/«@type».h" -// state - +/** + * State information and associated stored data for all «@name» state machines + */ struct «@name»_state_s { - // own state + /** + * @struct «@name»_state_s::own_«@name»_state_s + * @brief Own state storage. + */ struct own_«@name»_state_s { - stringlist_t *keys; - stringlist_t *backup; - identity_list *identities; - `` for "fsm/message[@ratelimit>0]" |>> time_t last_«../@name»_«@name»; + stringlist_t *keys; //!< own keys + stringlist_t *backup; //!< ???? + identity_list *identities; //!< own identities + `` for "fsm/message[@ratelimit>0]" |>> time_t last_«../@name»_«@name»; //!< Timestamp of last «../@name» «@name» message accepted // TIDs we're using ourselves - `` for "func:distinctName(fsm/message/field[@type='TID'])" |>> «func:ctype()» «@name»; - } own; - - // state we learned about our communication partner + `` for "func:distinctName(fsm/message/field[@type='TID'])" |>> «func:ctype()» «@name»; //!< own «@name» TID + } own; /*!< Own state storage */ + /** + * @struct «@name»_state_s::comm_partner_state_s + * @brief State acquired from our communications partner + */ struct comm_partner_state_s { // transport data we expect - char *sender_fpr; - pEp_identity *identity; + char *sender_fpr; //!< sender fpr for comm partner that we expect all sender messages to be signed by + pEp_identity *identity; //!< comm partner identity // TIDs our comm partner wants to have - `` for "func:distinctName(fsm/message/field[@type='TID'])" |>> «func:ctype()» «@name»; - } comm_partner; - - // input buffer for actual transport data coming in + `` for "func:distinctName(fsm/message/field[@type='TID'])" |>> «func:ctype()» «@name»; //!< sender's «@name» TID + } comm_partner; /*!< Received comm partner state storage */ + /** + * @struct «@name»_state_s::transport_data_s + * @brief Input buffer for actual transport data coming in + */ struct transport_data_s { // transport data we got - pEp_identity *from; - char *sender_fpr; - } transport; + pEp_identity *from; //!< identity of the sender of incoming transport data + char *sender_fpr; //!< sender fpr for sender of incoming transport data + } transport; /*!< transport input buffer */ + `` apply "fsm", mode=state }; +/** + * + * + * @brief free and reset all «@name» state associated with this session + * + * @param[in] session the session + * + */ void free_«@name»_state(PEP_SESSION session); // functions for protocol «@name» +/** + * + * + * @brief Generate new «@name»_t message structure of the given message type + * for the input finite state machine type + * + * @param[in] fsm current state machine type (??) + * @param[in] message_type the type of «@name» message struct to be created (with empty data) + * + * @return message the message struct desired + * @return NULL if the message_type is unknown + * + * @TODO This description comes entirely from code inspection, but is probably + * better optimised by the author. Caveat lector - I may have gotten it wrong. + */ «@name»_t *new_«@name»_message(«@name»_PR fsm, int message_type); + +/** + * + * + * @brief free a/an «@name»_t asn.1 message struct + * + * @param[in] msg the «@name»_t message struct to free + * + * @TODO This description comes entirely from code inspection, but is probably + * better optimised by the author. Caveat lector - I may have gotten it wrong. + */ void free_«@name»_message(«@name»_t *msg); +/** + * + * + * @brief Given a/an «@name» message and its corresponding finite state machine, + * update the session's state for its «@name» state machine given the information + * decoded from the message. + * + * This function takes a «@name» message and, depending on the type of «@name» message it is, + * (determined during parsing), copies the relevant data from the message struct into the + * corresponding session state structures as a utf8 string. + * + * @param[in] session session associated with the «@name» finite state machine + * @param[in] msg the message struct containing «@name» data (asn.1 - XER?) + * @param[out] fsm present finite state machine type indicated by the message + * @param[out] message_type the type of the message that was sent in + * + * @retval status + * + * @TODO This description comes entirely from code inspection, but is probably + * better optimised by the author. Caveat lector - I may have gotten it wrong. + * + */ PEP_STATUS update_«@name»_state(PEP_SESSION session, «@name»_t *msg, «@name»_PR *fsm, int *message_type); +/** + * + * + * @brief Given a «@name»_t message struct, fill in the relevant data for that message type and + * the state machine type indicated in the message from the current information contained + * in the session according to the message type indicated on the message struct + * + * @param[in] session the session from which to take the «@name» data + * @param[in] msg the «@name»_t message structure + * + * @retval status + * + * @TODO This description comes entirely from code inspection, but is probably + * better optimised by the author. Caveat lector - I may have gotten it wrong. + */ PEP_STATUS update_«@name»_message(PEP_SESSION session, «@name»_t *msg); #ifdef __cplusplus } #endif +#endif || template "fsm", mode=state || -// input/output buffer for «@name» messages +/** +* @struct «../@name»::_«@name»_state_s +* @brief Input/output buffer for «@name» messages +* +* @note Can't find a good way to generate documentation for the fields here. +*/ struct _«@name»_state_s { - int state; + int state; //!< current «@name» state `` for "func:distinctName(message/field)" |> «func:ctype()» «@name»; -} «yml:lcase(@name)»; +} «yml:lcase(@name)»; /*!< «@name» message Input/output buffer */ || template "protocol", mode=impl - document "generated/{@name}_func.c", "text" { + if "fsm[count(state)]" document "generated/{@name}_func.c", "text" { || -// This file is under GNU General Public License 3.0 -// see LICENSE.txt +/** + * @file «@name»_func.c + * @brief Implementation of tate storage and retrieval, and associated «@name» message + * generation and processing, for the «@name» protocol. + * @generated from ../sync/gen_message_func.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ #include #include @@ -296,7 +394,7 @@ template "field", mode=update_message { const "state" > «yml:lcase(ancestor::protocol/@name)»_state.«yml:lcase(ancestor::fsm/@name)» choose { - when "func:basicType()" // copyable + when "func:basicType() or @type='Rating'" // copyable || msg->choice.«yml:lcase(../../@name)».choice.«$message_name».«@name» = session->«$state».«@name»; @@ -380,7 +478,7 @@ template "message", mode=update_state { template "field", mode=update_state { param "message_name"; choose { - when "func:basicType()" // copyable + when "func:basicType() or @type='Rating'" // copyable || session->«yml:lcase(../../../@name)»_state.«yml:lcase(../../@name)».«@name» = msg->choice.«yml:lcase(../../@name)» .choice.«$message_name».«@name»; diff --git a/sync/gen_messages.ysl2 b/codegen/gen_messages.ysl2 similarity index 76% rename from sync/gen_messages.ysl2 rename to codegen/gen_messages.ysl2 index 1ddd0e46..c9d0124b 100644 --- a/sync/gen_messages.ysl2 +++ b/codegen/gen_messages.ysl2 @@ -15,7 +15,7 @@ tstylesheet { include ./functions.ysl2 function "pEp_imports" - | IMPORTS Version, Identity, IdentityList, TID, Hash FROM PEP; + | IMPORTS Version, Identity, IdentityList, TID, Hash, Rating FROM PEP function "header" || @@ -45,10 +45,14 @@ tstylesheet { BEGIN - `` for "fsm" | IMPORTS «@name» FROM «yml:ucase(@name)»; + IMPORTS + `` for "fsm" |> «@name» FROM «yml:ucase(@name)» + ; «@name» ::= CHOICE { - `` for "fsm" |> «yml:lcase(@name)» [APPLICATION «@id»] «@name»`if "position()!=last()" > , ` + «yml:lcase(fsm[1]/@name)» [APPLICATION «fsm[1]/@id»] «fsm[1]/@name»`if "count(fsm)>1" > ,` + `` if "count(fsm)>1" |> ..., + `` for "fsm[position()>1]" |> «yml:lcase(@name)» [APPLICATION «@id»] «@name»`if "position()!=last()" > ,` } END @@ -70,6 +74,8 @@ tstylesheet { EXPORTS «@name»; `` call "pEp_imports" + `` apply "message/embed", mode=import + ; `` apply "message//list|message", 0, mode=impl; «@name» ::= CHOICE { @@ -84,7 +90,7 @@ tstylesheet { template "message", mode=impl || «@name» ::= SEQUENCE { - `` apply "field|auto|list", mode=direct + `` apply "field|auto|list|embed", mode=direct } || @@ -97,10 +103,13 @@ tstylesheet { || - template "field|auto", mode=direct + template "field|auto|embed", mode=direct | «func:asn1name()» «func:asn1type()»`if "position()!=last()" > ,` template "list", mode=direct | «func:asn1name()» SEQUENCE OF «func:asn1type()»`if "position()!=last()" > ,` + + template "embed", mode=import + | «@type» FROM «yml:ucase(@protocol)» } diff --git a/sync/gen_statemachine.ysl2 b/codegen/gen_statemachine.ysl2 similarity index 71% rename from sync/gen_statemachine.ysl2 rename to codegen/gen_statemachine.ysl2 index 6295ba91..bc206dff 100644 --- a/sync/gen_statemachine.ysl2 +++ b/codegen/gen_statemachine.ysl2 @@ -14,12 +14,18 @@ tstylesheet { include ./functions.ysl2 template "/protocol" { - document "generated/{@name}_event.h", "text" + if "count(fsm/state)>0" document "generated/{@name}_event.h", "text" || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + /** + * @file «@name»_event.h + * @brief Structures and functions for «@name» events. + * @generated from ../sync/gen_statemachine.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ - #pragma once + #ifndef «yml:ucase(@name)»_EVENT_H + #define «yml:ucase(@name)»_EVENT_H #include "pEpEngine.h" @@ -27,60 +33,76 @@ tstylesheet { extern "C" { #endif + /** + * «@name» is also defined as «yml:ucase(@name)» for ASN.1 reasons and + * forward declaration to avoid the need for header inclusion everywhere. + * @see struct «@name» in «@name».h + */ typedef struct «@name» «yml:ucase(@name)»; + /** forward declaration - @see enum «@name»_PR in «@name».h */ typedef int «yml:ucase(@name)»_PR; + /** + * Data for an event related to a message + */ typedef struct «@name»_event { // state machine data - «yml:ucase(@name)»_PR fsm; - int event; - «yml:ucase(@name)» *msg; + «yml:ucase(@name)»_PR fsm; /*!< state machine type associated with this event */ + int event; /*!< type of event */ + «yml:ucase(@name)» *msg; /*!< the «@name» messaged caused by (or causing???) this event */ // transport data - pEp_identity *from; - char *sender_fpr; + pEp_identity *from; /*!< identity of the message sender */ + char *sender_fpr; /*!< fpr of key used by the message sender */ - identity_list *own_identities; + identity_list *own_identities; /*!< List of our own identities */ } «@name»_event_t; - - // new_«@name»_event() - allocate a new «@name»_event - // - // parameters: - // fsm (in) finite state machine the event is for - // event (in) event or None - // msg (in) message to compute event from - // - // return value: - // pointer to new event or NULL in case of failure - // - // caveat: - // event must be valid for fsm or None - // in case msg is given event will be calculated out of message - + /** + * + * + * @brief allocate a new «@name»_event + * + * @param[in] fsm finite state machine the event is for + * @param[in] event event or None + * @param[in] msg message to compute event from + * + * @retval pointer to new event + * @retval NULL in case of failure + * + */ DYNAMIC_API «@name»_event_t *new_«@name»_event(«yml:ucase(@name)»_PR fsm, int event, «yml:ucase(@name)» *msg); #define «yml:ucase(@name)»_TIMEOUT_EVENT new_«@name»_event(«@name»_PR_NOTHING, 0, NULL); - - // free_«@name»_event() - free memory occupied by event - // - // parameters: - // ev (in) event to free - + /** + * + * + * @brief free memory occupied by event + * + * @param[in] ev event to free + * + */ DYNAMIC_API void free_«@name»_event(«@name»_event_t *ev); #ifdef __cplusplus } #endif + #endif || - document "generated/{@name}_event.c", "text" + if "count(fsm/state)>0" document "generated/{@name}_event.c", "text" || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + + /** + * @file «@name»_event.c + * @brief Allocation, fsm drivers, and handling for «@name» events. + * @generated from ../sync/gen_statemachine.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ #include "platform.h" @@ -126,12 +148,18 @@ tstylesheet { || - document "generated/{@name}_impl.h", "text" { + if "count(fsm/state)>0" document "generated/{@name}_impl.h", "text" { || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + /** + * @file «@name»_impl.h + * @brief «@name» protocol implementation declarations + * @generated from ../sync/gen_statemachine.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ - #pragma once + #ifndef «yml:ucase(@name)»_IMPL_H + #define «yml:ucase(@name)»_IMPL_H #include "fsm_common.h" #include "«@name»_event.h" @@ -139,74 +167,162 @@ tstylesheet { #include "../asn.1/«@name».h" #define «yml:ucase(@name)»_THRESHOLD «@threshold» - `` for "fsm" | #define «yml:ucase(@name)»_THRESHOLD «@threshold» + `` for "fsm[count(state)>0]" | #define «yml:ucase(@name)»_THRESHOLD «@threshold» #ifdef __cplusplus extern "C" { #endif + ///////////////////////////////////////////////////////////////////// // conditions + ///////////////////////////////////////////////////////////////////// || - for "func:distinctName(*//condition)" - | PEP_STATUS «@name»(PEP_SESSION session, bool *result); + for "func:distinctName(*//condition)" { + | /** + | * @brief Evaluate condition: Is «@name» true? + | * @param[in] session the session + | * @param[out] result true if «@name», else false + | * @retval status + | */ + | PEP_STATUS «@name»(PEP_SESSION session, bool * result); + } || + ///////////////////////////////////////////////////////////////////// // actions + ///////////////////////////////////////////////////////////////////// || - for "func:distinctName(*//action)" + for "func:distinctName(*//action)" { + | /** + | * @brief Action: Do «@name» + | * @param[in] session the session + | * @retval status + | */ | PEP_STATUS «@name»(PEP_SESSION session); + } || - // timeout handler - + ///////////////////////////////////////////////////////////////////// + // timeout handlers + ///////////////////////////////////////////////////////////////////// + || - for "fsm[@threshold > 0]" + for "fsm[@threshold > 0]" { + | /** + | * + | * + | * @brief Handle timeouts for «@name» state machine + | * + | * @param[in] session the session + | * @retval status + | */ | PEP_STATUS «@name»TimeoutHandler(PEP_SESSION session); + } || - // send message about an event to communication partners using state + ///////////////////////////////////////////////////////////////////// + // «@name» state machine driver, message sending, and event receipt + ///////////////////////////////////////////////////////////////////// + + /** + * + * + * @brief send message about «@name» event to communication partners using state + * + * @param[in] session the session + * @param[in] fsm the finite state machine from which to get state + * @param[in] message_type type of message to send + * + * @retval status of message send + * + */ PEP_STATUS send_«@name»_message( - PEP_SESSION session, - «@name»_PR fsm, - int message_type - ); - - // receive message and store it in state + PEP_SESSION session, + «@name»_PR fsm, + int message_type + ); + /** + * + * + * @brief receive «@name» message and store it in state + * + * @param[in] session the session + * @param[in] ev the event to process + * + * @retval status of event processing/storage + * + */ PEP_STATUS recv_«@name»_event( PEP_SESSION session, «@name»_event_t *ev ); - - // state machine driver - // if fsm or event set to 0 use fields in src if present + /** + * + * + * @brief «@name» state machine driver + * + * @param[in] session the session + * @param[in] fsm finite state machine to drive + * @param[in] ev the event to process??? + * + * @retval ??? + * + * @note if fsm or event set to 0 use fields in src if present + * + */ PEP_STATUS «@name»_driver( PEP_SESSION session, «@name»_PR fsm, int event ); - // API being used by the engine internally - - // call this if you need to signal an external event - // caveat: the ownership of own_identities goes to the callee - + ///////////////////////////////////////////////////////////////////////////// + // API used by the engine internally // + ///////////////////////////////////////////////////////////////////////////// + + /** + * + * + * @brief Internal engine API: call this if you need to signal an external «@name» event + * + * @param[in] session the session + * @param[in] fsm finite state machine + * @param[in] event event type + * @param[out] own_identities list of own identities + * + * @retval status + * + * @ownership the ownership of own_identities goes to the callee + * + */ PEP_STATUS signal_«@name»_event( - PEP_SESSION session, + PEP_SESSION session, «@name»_PR fsm, int event, identity_list *own_identities ); - - // call this if you are a transport and are receiving - // a «@name» message + /** + * + * + * @brief Internal engine API: to be called by transports receiving a «@name» message + * + * @param[in] session the session + * @param[in] rating rating of the decrypted «@name» message + * @param[out] data payload of «@name» message + * @param[out] from identity of the message sender + * @param[out] fpr fingerprint of the sender key used to sign the message + * + * @retval status + * + */ PEP_STATUS signal_«@name»_message( - PEP_SESSION session, + PEP_SESSION session, PEP_rating rating, const char *data, size_t size, @@ -217,14 +333,20 @@ tstylesheet { #ifdef __cplusplus } #endif + #endif || } - document "generated/{@name}_impl.c", "text" { + if "count(fsm/state)>0" document "generated/{@name}_impl.c", "text" { || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + /** + * @file «@name»_impl.c + * @brief «@name» protocol implementation: driver, event handling, message signalling/sending/receipt, etc. + * @generated from ../sync/gen_statemachine.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ #include "«@name»_impl.h" #include "pEp_internal.h" @@ -232,9 +354,9 @@ tstylesheet { #include "«yml:lcase(@name)»_codec.h" #include "baseprotocol.h" #include "security_checks.h" - `` for "fsm" | #include "«@name»_fsm.h" + `` for "fsm[count(state)>0]" | #include "«@name»_fsm.h" - `` apply "fsm", 0, mode=timeout + `` apply "fsm[count(state)>0]", 0, mode=timeout PEP_STATUS «@name»_driver( PEP_SESSION session, «@name»_PR fsm, @@ -249,12 +371,12 @@ tstylesheet { case None: if (!event) { // timeout occured - `` for "fsm" |>>>> «../@name»_driver(session, «../@name»_PR_«yml:lcase(@name)», None); + `` for "fsm[count(state)>0]" |>>>> «../@name»_driver(session, «../@name»_PR_«yml:lcase(@name)», None); return PEP_STATUS_OK; } return PEP_ILLEGAL_VALUE; - `` apply "fsm", mode=reset_state_machine; + `` apply "fsm[count(state)>0]", mode=reset_state_machine; default: return PEP_ILLEGAL_VALUE; } @@ -262,7 +384,7 @@ tstylesheet { int next_state = None; do { switch (fsm) { - `` apply "fsm", 3, mode=driver + `` apply "fsm[count(state)>0]", 3, mode=driver default: return PEP_ILLEGAL_VALUE; } @@ -291,7 +413,9 @@ tstylesheet { return PEP_«yml:ucase(@name)»_NO_INJECT_CALLBACK; if (event < Extra) { - msg = new_«@name»_message(fsm, event); + // FIXME: there should be a mapping between event and message type + // with current implementation they've got an offset of 1 + msg = new_«@name»_message(fsm, event - 1); if (!msg) { status = PEP_OUT_OF_MEMORY; goto the_end; @@ -356,7 +480,7 @@ tstylesheet { bool is_own_key = false; switch (fsm) { - `` apply "fsm", 2, mode=signal_message + `` apply "fsm[count(state)>0]", 2, mode=signal_message default: status = PEP_«yml:ucase(@name)»_ILLEGAL_MESSAGE; goto the_end; @@ -412,40 +536,13 @@ tstylesheet { assert(session && fsm > None && message_type > None); if (!(session && fsm > None && message_type > None)) return PEP_ILLEGAL_VALUE; - || - if "fsm/message[@ratelimit>0]" { - || - // test if a message with a rate limit was just sent; in case drop time_t now = time(NULL); switch (fsm) { || - for "fsm[message/@ratelimit>0]" { - || - case Sync_PR_«yml:lcase(@name)»: - switch (message_type) { - || - for "message[@ratelimit>0]" - || - case «../@name»_PR_«yml:mixedCase(@name)»: - if (now < session->«yml:lcase(../../@name)»_state.own.last_«../@name»_«@name» + «@ratelimit») - return PEP_STATUS_OK; - break; + apply "fsm[count(state)>0]", 2, mode=send; || - || - default: - break; - } - break; - || - } - || - default: - break; } - || - } - || «@name»_t *msg = new_«@name»_message(fsm, message_type); if (!msg) @@ -487,76 +584,18 @@ tstylesheet { } } - switch (message_type) { - // these messages are being broadcasted - `` for "fsm/message[@type='broadcast']" |>> case «../@name»_PR_«yml:mixedCase(@name)»: - status = _own_identities_retrieve(session, &channels, PEP_idf_not_for_«yml:lcase(@name)»); - if (status) - goto the_end; - - if (!(channels && channels->ident)) { - // status = PEP_«yml:ucase(@name)»_NO_CHANNEL; - // we don't check for having a channel, because if - // this is initial setup before having an own - // identity we're fine - goto the_end; - } - break; - - // these go anycast; previously used address is sticky (unicast) - `` for "fsm/message[@type='anycast']" |>> case «../@name»_PR_«yml:mixedCase(@name)»: - // if we have a comm_partner fixed send it there - if (session->«yml:lcase(@name)»_state.comm_partner.identity) { - pEp_identity *channel = identity_dup(session->«yml:lcase(@name)»_state.comm_partner.identity); - if (!channel) { - status = PEP_OUT_OF_MEMORY; - goto the_end; - } - - channels = new_identity_list(channel); - if (!channels) { - status = PEP_OUT_OF_MEMORY; - goto the_end; - } - } - // if we can reply just do - else if (session->«yml:lcase(@name)»_state.transport.from) { - pEp_identity *channel = identity_dup(session->«yml:lcase(@name)»_state.transport.from); - if (!channel) { - status = PEP_OUT_OF_MEMORY; - goto the_end; - } - - channels = new_identity_list(channel); - if (!channels) { - status = PEP_OUT_OF_MEMORY; - goto the_end; - } - } - // real anycast, send it to the first matching - else { - status = _own_identities_retrieve(session, &channels, PEP_idf_not_for_«yml:lcase(@name)»); - if (status) - goto the_end; - if (!channels) - goto the_end; - - if (channels->next) { - free_identity_list(channels->next); - channels->next = NULL; - } - } - break; - + switch (fsm) { + || + apply "fsm[count(state)>0]", 2, mode=send2; + || default: - status = PEP_«yml:ucase(@name)»_ILLEGAL_MESSAGE; - goto the_end; + break; } for (identity_list *li = channels; li && li->ident ; li = li->next) { message *_m = NULL; char *_data = NULL; - + _data = malloc(size); assert(_data); if (!_data) { @@ -580,21 +619,21 @@ tstylesheet { ); if (status) { free(_data); - goto the_end; + if (status == PEP_OUT_OF_MEMORY) + goto the_end; + continue; } attach_own_key(session, _m); - decorate_message(_m, PEP_rating_undefined, NULL, true, true); + decorate_message(session, _m, PEP_rating_undefined, NULL, true, true); m = _m; break; - `` for "fsm/message[@security='untrusted' and ../@name!='KeySync']" | #error untrusted only allowed with KeySync - `` for "fsm/message[@security='untrusted' and ../@name='KeySync']" |>>> case «../@name»_PR_«yml:mixedCase(@name)»: + `` for "fsm/message[@security='untrusted']" |>>> case «../@name»_PR_«yml:mixedCase(@name)»: // add fpr of key of comm partner - assert(session->«yml:lcase(@name)»_state.transport.sender_fpr); if (!session->«yml:lcase(@name)»_state.transport.sender_fpr) { status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + continue; } extra = new_stringlist(session->«yml:lcase(@name)»_state.transport.sender_fpr); @@ -614,14 +653,18 @@ tstylesheet { &_m ); if (status) { + if (status == PEP_OUT_OF_MEMORY) + goto the_end; free(_data); - goto the_end; + continue; } status = try_encrypt_message(session, _m, extra, &m, PEP_enc_PEP, 0); if (status) { + if (status == PEP_OUT_OF_MEMORY) + goto the_end; status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + continue; } add_opt_field(m, "pEp-auto-consume", "yes"); m->in_reply_to = stringlist_add(m->in_reply_to, "pEp-auto-consume@pEp.foundation"); @@ -647,15 +690,12 @@ tstylesheet { // secret keys if (transaction) { - assert(session->«yml:lcase(@name)»_state.comm_partner.sender_fpr && - session->«yml:lcase(@name)»_state.transport.from && - session->«yml:lcase(@name)»_state.transport.from->user_id); if (!(session->«yml:lcase(@name)»_state.comm_partner.sender_fpr && session->«yml:lcase(@name)»_state.transport.from && session->«yml:lcase(@name)»_state.transport.from->user_id)) { status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + continue; } // test if this is a green channel @@ -678,7 +718,7 @@ tstylesheet { if (ident->comm_type != PEP_ct_pEp) { free_identity(ident); status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + continue; } free_identity(ident); @@ -691,10 +731,9 @@ tstylesheet { assert(!status); if (status) goto the_end; - assert(is_own_key); if (!is_own_key) { status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + continue; } // if so add key of comm partner to extra keys @@ -718,7 +757,9 @@ tstylesheet { ); if (status) { free(_data); - goto the_end; + if (status == PEP_OUT_OF_MEMORY) + goto the_end; + continue; } // export secret keys into memory @@ -801,8 +842,10 @@ tstylesheet { status = try_encrypt_message(session, _m, extra, &m, PEP_enc_PEP, 0); if (status) { + if (status == PEP_OUT_OF_MEMORY) + goto the_end; status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + continue; } add_opt_field(m, "pEp-auto-consume", "yes"); m->in_reply_to = stringlist_add(m->in_reply_to, "pEp-auto-consume@pEp.foundation"); @@ -823,7 +866,9 @@ tstylesheet { ); if (status) { free(_data); - goto the_end; + if (status == PEP_OUT_OF_MEMORY) + goto the_end; + continue; } // export secret keys into memory @@ -907,8 +952,10 @@ tstylesheet { // we do not support extra keys here and will only encrypt to ourselves status = try_encrypt_message(session, _m, NULL, &m, PEP_enc_PEP, 0); if (status) { + if (status == PEP_OUT_OF_MEMORY) + goto the_end; status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + continue; } add_opt_field(m, "pEp-auto-consume", "yes"); m->in_reply_to = stringlist_add(m->in_reply_to, "pEp-auto-consume@pEp.foundation"); @@ -928,13 +975,17 @@ tstylesheet { ); if (status) { free(_data); - goto the_end; + if (status == PEP_OUT_OF_MEMORY) + goto the_end; + continue; } status = try_encrypt_message(session, _m, NULL, &m, PEP_enc_PEP, 0); if (status) { status = PEP_«yml:ucase(@name)»_CANNOT_ENCRYPT; - goto the_end; + if (status == PEP_OUT_OF_MEMORY) + goto the_end; + continue; } add_opt_field(m, "pEp-auto-consume", "yes"); m->in_reply_to = stringlist_add(m->in_reply_to, "pEp-auto-consume@pEp.foundation"); @@ -966,6 +1017,7 @@ tstylesheet { break; } break; + || } || @@ -1077,8 +1129,150 @@ tstylesheet { apply "fsm", 0, mode=gen; } + template "fsm", mode=send2 { + || + case Sync_PR_«yml:lcase(@name)»: { + switch (message_type) { + || + if "message[@type='broadcast']" + || + // these messages are being broadcasted + `` for "message[@type='broadcast']" |>> case «../@name»_PR_«yml:mixedCase(@name)»: + status = _own_identities_retrieve(session, &channels, PEP_idf_not_for_«yml:lcase(../@name)»); + if (status) + goto the_end; + + if (!(channels && channels->ident)) { + // status = PEP_«yml:ucase(../@name)»_NO_CHANNEL; + // we don't check for having a channel, because if + // this is initial setup before having an own + // identity we're fine + goto the_end; + } + break; + + || + || + // these go anycast; previously used address is sticky (unicast) + `` for "message[@type='anycast' and @security!='ignore']" |>> case «../@name»_PR_«yml:mixedCase(@name)»: + // if we have a comm_partner fixed send it there + if (session->«yml:lcase(../@name)»_state.comm_partner.identity) { + pEp_identity *channel = identity_dup(session->«yml:lcase(../@name)»_state.comm_partner.identity); + if (!channel) { + status = PEP_OUT_OF_MEMORY; + goto the_end; + } + + channels = new_identity_list(channel); + if (!channels) { + status = PEP_OUT_OF_MEMORY; + goto the_end; + } + } + // if we can reply just do + else if (session->«yml:lcase(../@name)»_state.transport.from) { + pEp_identity *channel = identity_dup(session->«yml:lcase(../@name)»_state.transport.from); + if (!channel) { + status = PEP_OUT_OF_MEMORY; + goto the_end; + } + + channels = new_identity_list(channel); + if (!channels) { + status = PEP_OUT_OF_MEMORY; + goto the_end; + } + } + // real anycast, send it to the first matching + else { + status = _own_identities_retrieve(session, &channels, PEP_idf_not_for_«yml:lcase(../@name)»); + if (status) + goto the_end; + if (!channels) + goto the_end; + + if (channels->next) { + free_identity_list(channels->next); + channels->next = NULL; + } + } + break; + + default: + status = PEP_«yml:ucase(../@name)»_ILLEGAL_MESSAGE; + goto the_end; + } + } + break; + + || + } + + template "fsm[message/@security='ignore' or message/@ratelimit>0]", mode=send { + || + case Sync_PR_«yml:lcase(@name)»: { + || + if "message[@security='ignore']" { + || + // ignore + switch (message_type) { + || + for "message[@security='ignore']" { + |>> case «../@name»_PR_«yml:mixedCase(@name)»: + |>>> return PEP_STATUS_OK; + } + || + default: + break; + } + || + } + if "message[@ratelimit>0]" { + || + + // test if a message with a rate limit was just sent; in case drop + switch (message_type) { + || + for "message[@ratelimit>0]" + || + case «../@name»_PR_«yml:mixedCase(@name)»: + if (now < session->«yml:lcase(../../@name)»_state.own.last_«../@name»_«@name» + «@ratelimit») + return PEP_STATUS_OK; + break; + + || + if "message[@ratelimit>0]" + || + default: + break; + } + break; + + || + || + default: + break; + } + || + } + } + template "fsm", mode=timeout || + /** + * + * + * @internal + * + * @brief Determine if «@name» state machine has timed out + * (by hanging in the same state too long, + * exceeding «yml:ucase(@name)»_THRESHOLD) + * + * @param[in] state current state + * + * @retval true if wait has exceeded «yml:ucase(@name)»_THRESHOLD + * false otherwise + */ static bool _«@name»_timeout(int state) { static int last_state = None; @@ -1160,7 +1354,7 @@ tstylesheet { || } - for "message[@security!='unencrypted' and @security!='untrusted']" { + for "message[@security!='unencrypted' and @security!='untrusted' and @security!='ignore']" { if "position()=1" |>> // these messages must come through a trusted channel || case «../@name»_PR_«yml:mixedCase(@name)»: @@ -1180,6 +1374,13 @@ tstylesheet { || } + for "message[@security='ignore']" + || + case «../@name»_PR_«yml:mixedCase(@name)»: + free_«../../@name»_message(msg); + return PEP_STATUS_OK; + + || || default: status = PEP_«yml:ucase(ancestor::protocol/@name)»_ILLEGAL_MESSAGE; @@ -1232,12 +1433,18 @@ tstylesheet { || template "fsm", mode=gen { - document "generated/{@name}_fsm.h", "text" { + if "count(state)>0" document "generated/{@name}_fsm.h", "text" { || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + /** + * @file «@name»_fsm.h + * @brief Finite state machine states, definitions, and structs for the «@name» protocol. + * @generated from ../sync/gen_statemachine.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ - #pragma once + #ifndef «yml:ucase(@name)»_FSM_H + #define «yml:ucase(@name)»_FSM_H #include "«../@name»_impl.h" @@ -1245,7 +1452,9 @@ tstylesheet { extern "C" { #endif + /////////////////////////////////////////////////////////////////////////////////////////// // state machine for «@name» + /////////////////////////////////////////////////////////////////////////////////////////// // states @@ -1281,16 +1490,49 @@ tstylesheet { || } «@name»_event; + // state machine #ifndef NDEBUG + /** + * + * + * @brief Convert «@name» state to string + * + * @param[in] state state to convert to string + * + * @retval string representation of state name + * NULL if invalid state + */ const char *«@name»_state_name(int state); + /** + * + * + * @brief Convert «@name» event to string + * + * @param[in] event event to convert to string + * + * @retval string representation of event name + * NULL if invalid event + */ const char *«@name»_event_name(int event); #endif - // the state machine function is returning the next state in case of a - // transition or None for staying - + /** + * + * + * @brief Given the current state of a «@name» state machine, determine if + * a received «@name» event will cause a state transition + * and, if so, return the next state. + * + * @param[in] session session state machine is associated with + * @param[in] state current state + * @param[in] event incoming event to evaluate + * + * @retval next_state if event causes a state transition + * @retval None if state machine should remain in the same state + * + */ «@name»_state fsm_«@name»( PEP_SESSION session, «@name»_state state, @@ -1300,14 +1542,20 @@ tstylesheet { #ifdef __cplusplus } #endif + #endif || } - document "generated/{@name}_fsm.c", "text" { + if "count(state)>0" document "generated/{@name}_fsm.c", "text" { || - // This file is under GNU General Public License 3.0 - // see LICENSE.txt + /** + * @file «@name»_fsm.c + * @brief Finite state machine implementation for the «@name» protocol. + * @generated from ../sync/gen_statemachine.ysl2 + * + * @license GNU General Public License 3.0 - see LICENSE.txt + */ #include "«@name»_fsm.h" #include @@ -1347,7 +1595,7 @@ tstylesheet { case Init: return "Init"; || - for "func:distinctName(state/event[not(@name='Init')])" { + for "func:distinctName(state/event[not(@name='Init')]|message)" { |>> case «@name»: |>>> return "«@name»"; } @@ -1358,7 +1606,20 @@ tstylesheet { } } - + /** + * + * + * @internal + * + * @brief Convert an integer to a string representation + * + * @param[in] n integer to convert + * @param[in] hex true if it should be in hex representation, + * false for decimal + * + * @retval string representation of input + * NULL if out of memory or input invalid + */ static char *_str(int n, bool hex) { char *buf = calloc(1, 24); @@ -1375,6 +1636,23 @@ tstylesheet { #define «@name»_ERR_LOG(t, d) log_event(session, (t), "«@name»", (d), "error") + /** + * + * + * @internal + * + * @brief Write a «@name» error to log with integer input as description + * + * @param[in] session relevant session + * @param[in] t C string event name + * @param[in] n integer to log (e.g. error status) + * @param[in] hex true if integer should be logged in hex format, + * false if decimal + * + * @retval PEP_OUT_OF_MEMORY if out of memory + * @retval PEP_ILLEGAL_VALUE if input error during logging + * @retval PEP_STATUS_OK otherwise + */ static PEP_STATUS _«@name»_ERR_LOG_int(PEP_SESSION session, char *t, int n, bool hex) { char *_buf = _str(n, hex); @@ -1543,3 +1821,4 @@ tstylesheet { | } } } + diff --git a/sync/sql_func.yml2 b/codegen/sql_func.yml2 similarity index 100% rename from sync/sql_func.yml2 rename to codegen/sql_func.yml2 diff --git a/codegen/storage.fsm b/codegen/storage.fsm new file mode 100644 index 00000000..9811c4c6 --- /dev/null +++ b/codegen/storage.fsm @@ -0,0 +1,21 @@ +// This file is under BSD License 2.0 + +// Storage protocol for p≡p +// Copyright (c) 2021, p≡p foundation + +// Written by Volker Birk + +include ./fsm.yml2 + +protocol Storage 3 { + + // this protocol is stateless + fsm MessageStorage 1 { + version 1, 0; + + message ReceiverRating 2, security=ignore { + field Rating rating; + } + } +} + diff --git a/sync/cond_act_sync.yml2 b/codegen/sync.act similarity index 99% rename from sync/cond_act_sync.yml2 rename to codegen/sync.act index 5f2cd58e..24723e48 100644 --- a/sync/cond_act_sync.yml2 +++ b/codegen/sync.act @@ -368,6 +368,9 @@ action showBeingInGroup timeout KeySync call "show_handshake" with "type" > SYNC_NOTIFY_TIMEOUT +timeout TrustSync; +timeout GroupSync; + action prepareOwnKeys || stringlist_t *own_keys; @@ -603,6 +606,7 @@ action disable action resetOwnGroupedKeys || + // Will NOT reset keys with the sticky bit set return key_reset_own_grouped_keys(session); || diff --git a/sync/sync.fsm b/codegen/sync.fsm similarity index 92% rename from sync/sync.fsm rename to codegen/sync.fsm index ee87f97b..d94a61e4 100644 --- a/sync/sync.fsm +++ b/codegen/sync.fsm @@ -19,15 +19,15 @@ protocol Sync 1 { send SynchronizeGroupKeys; go Grouped; } + do newChallengeAndNegotiationBase; + debug > initial Beacon + send Beacon; go Sole; } } state Sole timeout=off { on Init { - do newChallengeAndNegotiationBase; - debug > initial Beacon - send Beacon; do showBeingSole; } @@ -679,5 +679,75 @@ protocol Sync 1 { message SynchronizeGroupKeys 21, ratelimit=60 { } + + // This could be part of TrustSync, but actually it does not matter. + // This message will not be sent by the Sync thread. It is used by + // decrypt_message() to mark a previously computed rating. It is only + // valid when signed with an own key. + + message ReceiverRating 22, security=ignore { + field Rating rating; + } + } + + fsm TrustSync 2, threshold=300 { + version 1, 0; + + state InitState { + on Init { + go WaitForTrustUpdate; + } + + } + state WaitForTrustUpdate { + on TrustUpdate { + + } + } + + // if trust changes send an update to the device group + + message TrustUpdate 2 { + field IdentityList trust; + } + + // if we should know the trust status ask the device group + + message TrustRequest 3 { + field IdentityList trust; + } + } + + fsm GroupSync 3, threshold=300 { + version 1, 0; + + state InitState { + on Init { + go WaitForGroupUpdate; + } + + } + state WaitForGroupUpdate { + on GroupSyncUpdate { + + } + + on RequestUpdate { + + } + } + + // reflect incoming ManagedGroup messages + + message GroupSyncUpdate 2 { + embed Distribution ManagedGroup msg; + } + + // in case a ManagedGroup message arrives for an unknown group ask the + // other devices + + message GroupSyncRequest 3 { + field Identity groupIdentity; + } } } diff --git a/sync/sync.md b/codegen/sync.md similarity index 100% rename from sync/sync.md rename to codegen/sync.md diff --git a/sync/sync_protocol.md b/codegen/sync_protocol.md similarity index 100% rename from sync/sync_protocol.md rename to codegen/sync_protocol.md diff --git a/sync/sync_ux.md b/codegen/sync_ux.md similarity index 100% rename from sync/sync_ux.md rename to codegen/sync_ux.md diff --git a/db/Makefile b/db/Makefile index 0c347bc7..cd8362b9 100644 --- a/db/Makefile +++ b/db/Makefile @@ -18,8 +18,8 @@ system.db: create_system_db.sql $(DICOS) .PHONY: install install: system.db - mkdir -p $(PER_MACHINE_DIRECTORY) - cp system.db $(PER_MACHINE_DIRECTORY) + mkdir -p $(DESTDIR)$(PER_MACHINE_DIRECTORY) + cp system.db $(DESTDIR)$(PER_MACHINE_DIRECTORY) .PHONY: clean clean: diff --git a/engine_doxygen.conf b/engine_doxygen.conf new file mode 100644 index 00000000..84e74554 --- /dev/null +++ b/engine_doxygen.conf @@ -0,0 +1,2525 @@ +# Doxyfile 1.8.18 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = Engine + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = "2.2.0" + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = ./doc/logo.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./doc/doxygen + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = YES + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all generated output in the proper direction. +# Possible values are: None, LTR, RTL and Context. +# The default value is: None. + +OUTPUT_TEXT_DIRECTION = None + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. +# When you need a literal { or } or , in the value part of an alias you have to +# escape them by means of a backslash (\), this can lead to conflicts with the +# commands \{ and \} for these it is advised to use the version @{ and @} or use +# a double escape (\\{ and \\}) + +ALIASES = "license=@par License:^^" \ + "copyleft=@par Copyleft:^^" \ + "ownership=@par Ownership^^" \ + "generated=@par Generated^^" + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, +# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 5 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = YES + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = YES + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = YES + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = YES + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# (including Cygwin) ands Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. If +# EXTRACT_ALL is set to YES then this flag will automatically be disabled. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = "" + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = ./src ./asn.1 + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: https://www.gnu.org/software/libiconv/) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), +# *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen +# C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.markdown \ + *.md \ + *.txt + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = src/sqlite3.c \ + src/sqlite3.h + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = YES + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = NO + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: https://developer.apple.com/xcode/), introduced with OSX +# 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = YES + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png The default and svg Looks nicer but requires the +# pdf2svg tool. +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2 + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /