reticulum-cpp/platformio.ini
attermann f9e3a22911 WIP update
Implemented AES.
Implemented AES-CBC.
Implemented HKDF.
Implemented HMAC.
Implemented PKCS7.
Implemented Fernet.
Added extensive logging and successfully tested ability to encrypt and
decrypt a packet.
2023-10-08 23:59:43 -06:00

47 lines
923 B
INI

; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
;default_envs = native
[env:avr-test]
platform = atmelavr
board = megaatmega2560
framework = arduino
debug_tool = simavr
[env:native]
platform = native
build_flags =
-std=c++11
-Wall
-Wextra
-Wno-missing-field-initializers
-Wno-format
-Isrc
-DNATIVE
lib_deps =
; rweather/Crypto@^0.4.0
lib_compat_mode = off
[env:ttgo-t-beam]
platform = espressif32
board = ttgo-t-beam
framework = arduino
monitor_speed = 115200
build_flags =
-Wall
-Wextra
-Wno-missing-field-initializers
-Wno-format
-Isrc
lib_deps =
rweather/Crypto@^0.4.0