Browse Source

add tiny-AES128-C submodule: AES encryption/decryption

Source: https://github.com/kokke/tiny-AES128-C
License: public domain
QGC4.4
Beat Küng 8 years ago
parent
commit
0b901ca6b8
  1. 3
      .gitmodules
  2. 1
      libs/thirdParty/tiny-AES128-C
  3. 3
      qgroundcontrol.pro

3
.gitmodules vendored

@ -4,3 +4,6 @@ @@ -4,3 +4,6 @@
[submodule "libs/mavlink/include/mavlink/v2.0"]
path = libs/mavlink/include/mavlink/v2.0
url = https://github.com/mavlink/c_library_v2.git
[submodule "libs/thirdParty/tiny-AES128-C"]
path = libs/thirdParty/tiny-AES128-C
url = https://github.com/bkueng/tiny-AES128-C.git

1
libs/thirdParty/tiny-AES128-C vendored

@ -0,0 +1 @@ @@ -0,0 +1 @@
Subproject commit 28fcc570b97aba1f05336a5f7b06e63dc165d962

3
qgroundcontrol.pro

@ -585,6 +585,7 @@ HEADERS += \ @@ -585,6 +585,7 @@ HEADERS += \
src/uas/UASInterface.h \
src/uas/UASMessageHandler.h \
src/AnalyzeView/LogDownloadController.h \
libs/thirdParty/tiny-AES128-C/aes.h \
AndroidBuild {
HEADERS += \
@ -773,6 +774,7 @@ SOURCES += \ @@ -773,6 +774,7 @@ SOURCES += \
src/uas/UAS.cc \
src/uas/UASMessageHandler.cc \
src/AnalyzeView/LogDownloadController.cc \
libs/thirdParty/tiny-AES128-C/aes.c \
DebugBuild {
SOURCES += \
@ -850,6 +852,7 @@ INCLUDEPATH += \ @@ -850,6 +852,7 @@ INCLUDEPATH += \
src/FirmwarePlugin \
src/Vehicle \
src/VehicleSetup \
libs/thirdParty/tiny-AES128-C \
HEADERS+= \
src/AutoPilotPlugins/AutoPilotPlugin.h \

Loading…
Cancel
Save