├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── auto-github-actions.yml │ ├── report-size-deltas.yml │ └── spell-check.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LibraryPatches ├── Ethernet │ └── src │ │ ├── Ethernet.cpp │ │ ├── Ethernet.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── Ethernet2 │ └── src │ │ ├── Ethernet2.cpp │ │ ├── Ethernet2.h │ │ ├── EthernetUdp2.cpp │ │ └── EthernetUdp2.h ├── Ethernet3 │ └── src │ │ ├── Ethernet3.cpp │ │ └── Ethernet3.h ├── EthernetLarge │ └── src │ │ ├── EthernetLarge.cpp │ │ ├── EthernetLarge.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── UIPEthernet-2.0.9 │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h ├── UIPEthernet │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h └── esp32 │ └── cores │ └── esp32 │ └── Server.h ├── Packages_Patches ├── Fab_SAM_Arduino │ └── hardware │ │ └── samd │ │ ├── 1.6.18-alpha2 │ │ └── boards.txt │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.8.0 │ │ └── boards.txt │ │ └── 1.9.0 │ │ └── boards.txt ├── Maixduino │ └── hardware │ │ └── k210 │ │ ├── 0.3.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── Stream.h │ │ └── 0.3.11 │ │ └── cores │ │ └── arduino │ │ └── Stream.h ├── STM32 │ └── hardware │ │ └── stm32 │ │ ├── 1.9.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── NUCLEO_F767ZI │ │ │ └── variant.h │ │ │ └── NUCLEO_L053R8 │ │ │ └── variant.h │ │ ├── 2.0.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ ├── L052R(6-8)H_L053R(6-8)H │ │ │ └── variant_generic.h │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.1.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.2.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ └── 2.3.0 │ │ ├── system │ │ ├── STM32F4xx │ │ │ └── stm32f4xx_hal_conf_default.h │ │ └── STM32F7xx │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ ├── STM32F7xx │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ └── STM32L0xx │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ └── variant_generic.h ├── Seeeduino │ └── hardware │ │ ├── nrf52 │ │ └── 1.0.0 │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ └── platform.txt │ │ ├── rp2040 │ │ ├── 1.9.3 │ │ │ └── variants │ │ │ │ └── rpipico │ │ │ │ └── pins_arduino.h │ │ └── 2.7.2 │ │ │ ├── boards.txt │ │ │ └── variants │ │ │ └── Seeed_XIAO_RP2040 │ │ │ └── pins_arduino.h │ │ └── samd │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.9 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.8.3 │ │ ├── cores │ │ └── arduino │ │ │ ├── Arduino.h │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── SparkFun │ └── hardware │ │ └── samd │ │ └── 1.8.3 │ │ └── cores │ │ ├── arduino │ │ ├── Print.cpp │ │ └── Print.h │ │ └── arduino51 │ │ ├── Print.cpp │ │ └── Print.h ├── adafruit │ └── hardware │ │ ├── nrf52 │ │ ├── 0.19.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.20.1 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.20.5 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.21.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.22.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.22.1 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.23.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.24.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.0.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.1.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.2.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ └── 1.3.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ ├── NINA_B112_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ ├── NINA_B302_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ └── sparkfun_nrf52840_mini │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ └── samd │ │ ├── 1.5.14 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.10 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.11 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.7.9 │ │ ├── cores │ │ └── arduino │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── arduino │ └── hardware │ │ ├── mbed_portenta │ │ ├── 2.4.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.5.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.6.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.7.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.8.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.1.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.3.0 │ │ │ └── portenta_post_install.sh │ │ └── 3.4.1 │ │ │ └── portenta_post_install.sh │ │ ├── sam │ │ └── 1.6.12 │ │ │ └── platform.txt │ │ └── samd │ │ ├── 1.8.10 │ │ └── platform.txt │ │ ├── 1.8.11 │ │ └── platform.txt │ │ ├── 1.8.12 │ │ └── platform.txt │ │ ├── 1.8.13 │ │ └── platform.txt │ │ ├── 1.8.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.8 │ │ ├── cores │ │ │ ├── Arduino.h │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ └── 1.8.9 │ │ ├── cores │ │ └── arduino │ │ │ └── Arduino.h │ │ └── platform.txt ├── hardware │ └── teensy │ │ └── avr │ │ ├── boards.txt │ │ └── cores │ │ ├── teensy │ │ ├── Stream.cpp │ │ └── Stream.h │ │ ├── teensy3 │ │ ├── Stream.cpp │ │ └── Stream.h │ │ └── teensy4 │ │ ├── Stream.cpp │ │ └── Stream.h ├── industrialshields │ └── hardware │ │ └── avr │ │ ├── 1.1.36 │ │ └── cores │ │ │ └── industrialshields │ │ │ └── Udp.h │ │ └── 1.1.37 │ │ └── cores │ │ └── industrialshields │ │ └── Udp.h ├── realtek │ └── hardware │ │ └── AmebaD │ │ ├── 3.0.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.0.8 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.0 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.1 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.2 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.3 │ │ └── cores │ │ │ └── ambd │ │ │ └── avr │ │ │ └── pgmspace.h │ │ └── 3.1.4 │ │ └── cores │ │ └── ambd │ │ └── avr │ │ └── pgmspace.h └── rp2040 │ └── hardware │ └── rp2040 │ ├── 1.2.1 │ └── platform.txt │ ├── 1.2.2 │ └── platform.txt │ ├── 1.3.0 │ └── platform.txt │ ├── 1.3.1 │ ├── cores │ │ └── rp2040 │ │ │ └── Arduino.h │ └── platform.txt │ └── 1.4.0 │ ├── cores │ └── rp2040 │ │ └── Arduino.h │ └── platform.txt ├── README.md ├── TrustAnchors.md ├── changelog.md ├── examples ├── AWS_IoT │ ├── AWS_IoT.ino │ ├── AWS_Root_CA.h │ └── defines.h ├── AdvancedWebServer │ ├── AdvancedWebServer.ino │ └── defines.h ├── AdvancedWebServer_NativeEthernet │ ├── AdvancedWebServer_NativeEthernet.ino │ └── defines.h ├── AdvancedWebServer_RP2040_SPI1 │ ├── AdvancedWebServer_RP2040_SPI1.ino │ └── defines.h ├── AdvancedWebServer_Teensy4x_SPI1 │ ├── AdvancedWebServer_Teensy4x_SPI1.ino │ └── defines.h ├── HTTPClient │ ├── BasicAuthGet │ │ ├── BasicAuthGet.ino │ │ └── defines.h │ ├── CustomHeader │ │ ├── CustomHeader.ino │ │ └── defines.h │ ├── DweetGet │ │ ├── DweetGet.ino │ │ └── defines.h │ ├── DweetPost │ │ ├── DweetPost.ino │ │ └── defines.h │ ├── HueBlink │ │ ├── HueBlink.ino │ │ └── defines.h │ ├── PostWithHeaders │ │ ├── PostWithHeaders.ino │ │ └── defines.h │ ├── SimpleDelete │ │ ├── SimpleDelete.ino │ │ └── defines.h │ ├── SimpleGet │ │ ├── SimpleGet.ino │ │ └── defines.h │ ├── SimpleHTTPExample │ │ ├── SimpleHTTPExample.ino │ │ └── defines.h │ ├── SimplePost │ │ ├── SimplePost.ino │ │ └── defines.h │ ├── SimplePut │ │ ├── SimplePut.ino │ │ └── defines.h │ ├── SimpleWebSocket │ │ ├── SimpleWebSocket.ino │ │ └── defines.h │ └── node_test_server │ │ ├── getPostPutDelete.js │ │ └── package.json ├── HelloServer │ ├── HelloServer.ino │ └── defines.h ├── HelloServer2 │ ├── HelloServer2.ino │ └── defines.h ├── HttpBasicAuth │ ├── HttpBasicAuth.ino │ └── defines.h ├── MQTTClient_Auth │ ├── MQTTClient_Auth.ino │ └── defines.h ├── MQTTClient_Basic │ ├── MQTTClient_Basic.ino │ └── defines.h ├── MQTTClient_SSL │ ├── MQTTClient_SSL.ino │ ├── certificates.h │ └── defines.h ├── MQTTClient_SSL_Auth │ ├── MQTTClient_SSL_Auth.ino │ ├── certificates.h │ └── defines.h ├── MQTTClient_SSL_Complex │ ├── MQTTClient_SSL_Complex.ino │ ├── certificates.h │ └── defines.h ├── MQTTS_ThingStream │ ├── MQTTS_ThingStream.ino │ ├── broker.emqx.io-ca.crt │ ├── certificates.h │ └── defines.h ├── MQTT_ThingStream │ ├── MQTT_ThingStream.ino │ └── defines.h ├── PostServer │ ├── PostServer.ino │ └── defines.h ├── QNEthernet │ ├── AdvancedWebServer_QNEthernet │ │ ├── AdvancedWebServer_QNEthernet.ino │ │ └── defines.h │ ├── MQTTClient_SSL │ │ ├── MQTTClient_SSL.ino │ │ ├── certificates.h │ │ └── defines.h │ ├── MQTTClient_SSL_Auth │ │ ├── MQTTClient_SSL_Auth.ino │ │ ├── certificates.h │ │ └── defines.h │ ├── MQTTClient_SSL_Complex │ │ ├── MQTTClient_SSL_Complex.ino │ │ ├── certificates.h │ │ └── defines.h │ ├── MQTTS_ThingStream │ │ ├── MQTTS_ThingStream.ino │ │ ├── broker.emqx.io-ca.crt │ │ ├── certificates.h │ │ └── defines.h │ ├── WebClientMulti_SSL │ │ ├── WebClientMulti_SSL.ino │ │ ├── defines.h │ │ └── trustanchors.h │ └── WebClient_SSL │ │ ├── WebClient_SSL.ino │ │ ├── defines.h │ │ └── trust_anchors.h ├── SimpleAuthentication │ ├── SimpleAuthentication.ino │ └── defines.h ├── UdpNTPClient │ ├── UdpNTPClient.ino │ └── defines.h ├── UdpSendReceive │ ├── UdpSendReceive.ino │ └── defines.h ├── WebClient │ ├── WebClient.ino │ └── defines.h ├── WebClientMulti_SSL │ ├── WebClientMulti_SSL.ino │ ├── defines.h │ └── trustanchors.h ├── WebClientMulti_SSL_NativeEthernet │ ├── WebClientMulti_SSL_NativeEthernet.ino │ ├── defines.h │ └── trustanchors.h ├── WebClientRepeating │ ├── WebClientRepeating.ino │ └── defines.h ├── WebClientRepeating_ESP │ ├── WebClientRepeating_ESP.ino │ └── defines.h ├── WebClient_ESP │ ├── WebClient_ESP.ino │ └── defines.h ├── WebClient_SSL │ ├── WebClient_SSL.ino │ ├── defines.h │ └── trust_anchors.h ├── WebServer │ ├── WebServer.ino │ └── defines.h └── multiFileProject │ ├── multiFileProject.cpp │ ├── multiFileProject.h │ └── multiFileProject.ino ├── keywords.txt ├── library.json ├── library.properties ├── pics ├── AdvancedWebServer.png ├── AdvancedWebServer_ESP32_SPI2.png ├── AdvancedWebServer_Mbed_RPi_Pico.png ├── AdvancedWebServer_Mbed_RPi_Pico_SPI1.png ├── AdvancedWebServer_PortentaH7.png ├── AdvancedWebServer_QNEthernet.png ├── AdvancedWebServer_RPi_Pico.png ├── AdvancedWebServer_RPi_Pico_SPI1.png ├── AdvancedWebServer_Teensy41_SPI1.png └── Teensy41_pinout.png ├── platformio └── platformio.ini ├── src ├── EthernetHttpClient_SSL.h ├── EthernetWebServer_SSL-impl.h ├── EthernetWebServer_SSL.h ├── EthernetWebServer_SSL.hpp ├── Ethernet_HTTPClient │ ├── Ethernet_HttpClient.cpp │ ├── Ethernet_HttpClient.h │ ├── Ethernet_URLEncoder.cpp │ ├── Ethernet_URLEncoder.h │ ├── Ethernet_WebSocketClient.cpp │ └── Ethernet_WebSocketClient.h ├── Parsing_SSL-impl.h ├── SSLClient │ ├── SSLClient.h │ ├── SSLClientParameters.cpp │ ├── SSLClientParameters.h │ ├── SSLClient_Impl.h │ ├── SSLSession.h │ ├── TLS12_only_profile.c │ ├── bearssl.h │ ├── bearssl │ │ └── src │ │ │ ├── aead │ │ │ ├── ccm.c │ │ │ ├── eax.c │ │ │ └── gcm.c │ │ │ ├── codec │ │ │ ├── ccopy.c │ │ │ ├── dec16be.c │ │ │ ├── dec16le.c │ │ │ ├── dec32be.c │ │ │ ├── dec32le.c │ │ │ ├── dec64be.c │ │ │ ├── dec64le.c │ │ │ ├── enc16be.c │ │ │ ├── enc16le.c │ │ │ ├── enc32be.c │ │ │ ├── enc32le.c │ │ │ ├── enc64be.c │ │ │ ├── enc64le.c │ │ │ ├── pemdec.c │ │ │ ├── pemdec.t0 │ │ │ └── pemenc.c │ │ │ ├── ec │ │ │ ├── ec_all_m15.c │ │ │ ├── ec_all_m31.c │ │ │ ├── ec_c25519_i15.c │ │ │ ├── ec_c25519_i31.c │ │ │ ├── ec_c25519_m15.c │ │ │ ├── ec_c25519_m31.c │ │ │ ├── ec_c25519_m62.c │ │ │ ├── ec_c25519_m64.c │ │ │ ├── ec_curve25519.c │ │ │ ├── ec_default.c │ │ │ ├── ec_keygen.c │ │ │ ├── ec_p256_m15.c │ │ │ ├── ec_p256_m31.c │ │ │ ├── ec_p256_m62.c │ │ │ ├── ec_p256_m64.c │ │ │ ├── ec_prime_i15.c │ │ │ ├── ec_prime_i31.c │ │ │ ├── ec_pubkey.c │ │ │ ├── ec_secp256r1.c │ │ │ ├── ec_secp384r1.c │ │ │ ├── ec_secp521r1.c │ │ │ ├── ecdsa_atr.c │ │ │ ├── ecdsa_default_sign_asn1.c │ │ │ ├── ecdsa_default_sign_raw.c │ │ │ ├── ecdsa_default_vrfy_asn1.c │ │ │ ├── ecdsa_default_vrfy_raw.c │ │ │ ├── ecdsa_i15_bits.c │ │ │ ├── ecdsa_i15_sign_asn1.c │ │ │ ├── ecdsa_i15_sign_raw.c │ │ │ ├── ecdsa_i15_vrfy_asn1.c │ │ │ ├── ecdsa_i15_vrfy_raw.c │ │ │ ├── ecdsa_i31_bits.c │ │ │ ├── ecdsa_i31_sign_asn1.c │ │ │ ├── ecdsa_i31_sign_raw.c │ │ │ ├── ecdsa_i31_vrfy_asn1.c │ │ │ ├── ecdsa_i31_vrfy_raw.c │ │ │ └── ecdsa_rta.c │ │ │ ├── hash │ │ │ ├── dig_oid.c │ │ │ ├── dig_size.c │ │ │ ├── ghash_ctmul.c │ │ │ ├── ghash_ctmul32.c │ │ │ ├── ghash_ctmul64.c │ │ │ ├── ghash_pclmul.c │ │ │ ├── ghash_pwr8.c │ │ │ ├── md5.c │ │ │ ├── md5sha1.c │ │ │ ├── mgf1.c │ │ │ ├── multihash.c │ │ │ ├── sha1.c │ │ │ ├── sha2big.c │ │ │ └── sha2small.c │ │ │ ├── int │ │ │ ├── i15_add.c │ │ │ ├── i15_bitlen.c │ │ │ ├── i15_decmod.c │ │ │ ├── i15_decode.c │ │ │ ├── i15_decred.c │ │ │ ├── i15_encode.c │ │ │ ├── i15_fmont.c │ │ │ ├── i15_iszero.c │ │ │ ├── i15_moddiv.c │ │ │ ├── i15_modpow.c │ │ │ ├── i15_modpow2.c │ │ │ ├── i15_montmul.c │ │ │ ├── i15_mulacc.c │ │ │ ├── i15_muladd.c │ │ │ ├── i15_ninv15.c │ │ │ ├── i15_reduce.c │ │ │ ├── i15_rshift.c │ │ │ ├── i15_sub.c │ │ │ ├── i15_tmont.c │ │ │ ├── i31_add.c │ │ │ ├── i31_bitlen.c │ │ │ ├── i31_decmod.c │ │ │ ├── i31_decode.c │ │ │ ├── i31_decred.c │ │ │ ├── i31_encode.c │ │ │ ├── i31_fmont.c │ │ │ ├── i31_iszero.c │ │ │ ├── i31_moddiv.c │ │ │ ├── i31_modpow.c │ │ │ ├── i31_modpow2.c │ │ │ ├── i31_montmul.c │ │ │ ├── i31_mulacc.c │ │ │ ├── i31_muladd.c │ │ │ ├── i31_ninv31.c │ │ │ ├── i31_reduce.c │ │ │ ├── i31_rshift.c │ │ │ ├── i31_sub.c │ │ │ ├── i31_tmont.c │ │ │ ├── i32_add.c │ │ │ ├── i32_bitlen.c │ │ │ ├── i32_decmod.c │ │ │ ├── i32_decode.c │ │ │ ├── i32_decred.c │ │ │ ├── i32_div32.c │ │ │ ├── i32_encode.c │ │ │ ├── i32_fmont.c │ │ │ ├── i32_iszero.c │ │ │ ├── i32_modpow.c │ │ │ ├── i32_montmul.c │ │ │ ├── i32_mulacc.c │ │ │ ├── i32_muladd.c │ │ │ ├── i32_ninv32.c │ │ │ ├── i32_reduce.c │ │ │ ├── i32_sub.c │ │ │ ├── i32_tmont.c │ │ │ └── i62_modpow2.c │ │ │ ├── kdf │ │ │ ├── hkdf.c │ │ │ └── shake.c │ │ │ ├── mac │ │ │ ├── hmac.c │ │ │ └── hmac_ct.c │ │ │ ├── rand │ │ │ ├── aesctr_drbg.c │ │ │ ├── hmac_drbg.c │ │ │ └── sysrng.c │ │ │ ├── rsa │ │ │ ├── rsa_default_keygen.c │ │ │ ├── rsa_default_modulus.c │ │ │ ├── rsa_default_oaep_decrypt.c │ │ │ ├── rsa_default_oaep_encrypt.c │ │ │ ├── rsa_default_pkcs1_sign.c │ │ │ ├── rsa_default_pkcs1_vrfy.c │ │ │ ├── rsa_default_priv.c │ │ │ ├── rsa_default_privexp.c │ │ │ ├── rsa_default_pss_sign.c │ │ │ ├── rsa_default_pss_vrfy.c │ │ │ ├── rsa_default_pub.c │ │ │ ├── rsa_default_pubexp.c │ │ │ ├── rsa_i15_keygen.c │ │ │ ├── rsa_i15_modulus.c │ │ │ ├── rsa_i15_oaep_decrypt.c │ │ │ ├── rsa_i15_oaep_encrypt.c │ │ │ ├── rsa_i15_pkcs1_sign.c │ │ │ ├── rsa_i15_pkcs1_vrfy.c │ │ │ ├── rsa_i15_priv.c │ │ │ ├── rsa_i15_privexp.c │ │ │ ├── rsa_i15_pss_sign.c │ │ │ ├── rsa_i15_pss_vrfy.c │ │ │ ├── rsa_i15_pub.c │ │ │ ├── rsa_i15_pubexp.c │ │ │ ├── rsa_i31_keygen.c │ │ │ ├── rsa_i31_keygen_inner.c │ │ │ ├── rsa_i31_modulus.c │ │ │ ├── rsa_i31_oaep_decrypt.c │ │ │ ├── rsa_i31_oaep_encrypt.c │ │ │ ├── rsa_i31_pkcs1_sign.c │ │ │ ├── rsa_i31_pkcs1_vrfy.c │ │ │ ├── rsa_i31_priv.c │ │ │ ├── rsa_i31_privexp.c │ │ │ ├── rsa_i31_pss_sign.c │ │ │ ├── rsa_i31_pss_vrfy.c │ │ │ ├── rsa_i31_pub.c │ │ │ ├── rsa_i31_pubexp.c │ │ │ ├── rsa_i32_oaep_decrypt.c │ │ │ ├── rsa_i32_oaep_encrypt.c │ │ │ ├── rsa_i32_pkcs1_sign.c │ │ │ ├── rsa_i32_pkcs1_vrfy.c │ │ │ ├── rsa_i32_priv.c │ │ │ ├── rsa_i32_pss_sign.c │ │ │ ├── rsa_i32_pss_vrfy.c │ │ │ ├── rsa_i32_pub.c │ │ │ ├── rsa_i62_keygen.c │ │ │ ├── rsa_i62_oaep_decrypt.c │ │ │ ├── rsa_i62_oaep_encrypt.c │ │ │ ├── rsa_i62_pkcs1_sign.c │ │ │ ├── rsa_i62_pkcs1_vrfy.c │ │ │ ├── rsa_i62_priv.c │ │ │ ├── rsa_i62_pss_sign.c │ │ │ ├── rsa_i62_pss_vrfy.c │ │ │ ├── rsa_i62_pub.c │ │ │ ├── rsa_oaep_pad.c │ │ │ ├── rsa_oaep_unpad.c │ │ │ ├── rsa_pkcs1_sig_pad.c │ │ │ ├── rsa_pkcs1_sig_unpad.c │ │ │ ├── rsa_pss_sig_pad.c │ │ │ ├── rsa_pss_sig_unpad.c │ │ │ └── rsa_ssl_decrypt.c │ │ │ ├── settings.c │ │ │ ├── ssl │ │ │ ├── prf.c │ │ │ ├── prf_md5sha1.c │ │ │ ├── prf_sha256.c │ │ │ ├── prf_sha384.c │ │ │ ├── ssl_ccert_single_ec.c │ │ │ ├── ssl_ccert_single_rsa.c │ │ │ ├── ssl_client.c │ │ │ ├── ssl_client_default_rsapub.c │ │ │ ├── ssl_client_full.c │ │ │ ├── ssl_engine.c │ │ │ ├── ssl_engine_default_aescbc.c │ │ │ ├── ssl_engine_default_aesccm.c │ │ │ ├── ssl_engine_default_aesgcm.c │ │ │ ├── ssl_engine_default_chapol.c │ │ │ ├── ssl_engine_default_descbc.c │ │ │ ├── ssl_engine_default_ec.c │ │ │ ├── ssl_engine_default_ecdsa.c │ │ │ ├── ssl_engine_default_rsavrfy.c │ │ │ ├── ssl_hashes.c │ │ │ ├── ssl_hs_client.c │ │ │ ├── ssl_hs_client.t0 │ │ │ ├── ssl_hs_common.t0 │ │ │ ├── ssl_hs_server.c │ │ │ ├── ssl_hs_server.t0 │ │ │ ├── ssl_io.c │ │ │ ├── ssl_keyexport.c │ │ │ ├── ssl_lru.c │ │ │ ├── ssl_rec_cbc.c │ │ │ ├── ssl_rec_ccm.c │ │ │ ├── ssl_rec_chapol.c │ │ │ ├── ssl_rec_gcm.c │ │ │ ├── ssl_scert_single_ec.c │ │ │ ├── ssl_scert_single_rsa.c │ │ │ ├── ssl_server.c │ │ │ ├── ssl_server_full_ec.c │ │ │ ├── ssl_server_full_rsa.c │ │ │ ├── ssl_server_mine2c.c │ │ │ ├── ssl_server_mine2g.c │ │ │ ├── ssl_server_minf2c.c │ │ │ ├── ssl_server_minf2g.c │ │ │ ├── ssl_server_minr2g.c │ │ │ ├── ssl_server_minu2g.c │ │ │ └── ssl_server_minv2g.c │ │ │ ├── symcipher │ │ │ ├── aes_big_cbcdec.c │ │ │ ├── aes_big_cbcenc.c │ │ │ ├── aes_big_ctr.c │ │ │ ├── aes_big_ctrcbc.c │ │ │ ├── aes_big_dec.c │ │ │ ├── aes_big_enc.c │ │ │ ├── aes_common.c │ │ │ ├── aes_ct.c │ │ │ ├── aes_ct64.c │ │ │ ├── aes_ct64_cbcdec.c │ │ │ ├── aes_ct64_cbcenc.c │ │ │ ├── aes_ct64_ctr.c │ │ │ ├── aes_ct64_ctrcbc.c │ │ │ ├── aes_ct64_dec.c │ │ │ ├── aes_ct64_enc.c │ │ │ ├── aes_ct_cbcdec.c │ │ │ ├── aes_ct_cbcenc.c │ │ │ ├── aes_ct_ctr.c │ │ │ ├── aes_ct_ctrcbc.c │ │ │ ├── aes_ct_dec.c │ │ │ ├── aes_ct_enc.c │ │ │ ├── aes_pwr8.c │ │ │ ├── aes_pwr8_cbcdec.c │ │ │ ├── aes_pwr8_cbcenc.c │ │ │ ├── aes_pwr8_ctr.c │ │ │ ├── aes_pwr8_ctrcbc.c │ │ │ ├── aes_small_cbcdec.c │ │ │ ├── aes_small_cbcenc.c │ │ │ ├── aes_small_ctr.c │ │ │ ├── aes_small_ctrcbc.c │ │ │ ├── aes_small_dec.c │ │ │ ├── aes_small_enc.c │ │ │ ├── aes_x86ni.c │ │ │ ├── aes_x86ni_cbcdec.c │ │ │ ├── aes_x86ni_cbcenc.c │ │ │ ├── aes_x86ni_ctr.c │ │ │ ├── aes_x86ni_ctrcbc.c │ │ │ ├── chacha20_ct.c │ │ │ ├── chacha20_sse2.c │ │ │ ├── des_ct.c │ │ │ ├── des_ct_cbcdec.c │ │ │ ├── des_ct_cbcenc.c │ │ │ ├── des_support.c │ │ │ ├── des_tab.c │ │ │ ├── des_tab_cbcdec.c │ │ │ ├── des_tab_cbcenc.c │ │ │ ├── poly1305_ctmul.c │ │ │ ├── poly1305_ctmul32.c │ │ │ ├── poly1305_ctmulq.c │ │ │ └── poly1305_i15.c │ │ │ └── x509 │ │ │ ├── asn1.t0 │ │ │ ├── asn1enc.c │ │ │ ├── encode_ec_pk8der.c │ │ │ ├── encode_ec_rawder.c │ │ │ ├── encode_rsa_pk8der.c │ │ │ ├── encode_rsa_rawder.c │ │ │ ├── skey_decoder.c │ │ │ ├── skey_decoder.t0 │ │ │ ├── x509_decoder.c │ │ │ ├── x509_decoder.t0 │ │ │ ├── x509_knownkey.c │ │ │ ├── x509_minimal.c │ │ │ ├── x509_minimal.t0 │ │ │ └── x509_minimal_full.c │ ├── bearssl_aead.h │ ├── bearssl_block.h │ ├── bearssl_ec.h │ ├── bearssl_hash.h │ ├── bearssl_hmac.h │ ├── bearssl_kdf.h │ ├── bearssl_pem.h │ ├── bearssl_prf.h │ ├── bearssl_rand.h │ ├── bearssl_rsa.h │ ├── bearssl_ssl.h │ ├── bearssl_x509.h │ ├── config.h │ ├── ec_prime_fast_256.c │ ├── inner.h │ └── time_macros.h ├── detail │ ├── Debug.h │ ├── ESP_RequestHandlersImpl.h │ ├── RequestHandler.h │ ├── RequestHandlersImpl.h │ ├── esp_detail │ │ ├── mimetable.cpp │ │ └── mimetable.h │ └── mimetable.h ├── inner.h ├── libb64 │ ├── base64.cpp │ ├── base64.h │ ├── cdecode.c │ ├── cdecode.h │ ├── cencode.c │ └── cencode.h └── time_macros.h ├── tools └── pycert_bearssl │ ├── cert_util.py │ └── pycert_bearssl.py └── utils ├── astyle_library.conf └── restyle.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LICENSE -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet/src/Ethernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet/src/Ethernet.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/EthernetLarge/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/esp32/cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/LibraryPatches/esp32/cores/esp32/Server.h -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Maixduino/hardware/k210/0.3.10/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Maixduino/hardware/k210/0.3.10/cores/arduino/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/Maixduino/hardware/k210/0.3.11/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Maixduino/hardware/k210/0.3.11/cores/arduino/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_F767ZI/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_F767ZI/variant.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_L053R8/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_L053R8/variant.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/rp2040/1.9.3/variants/rpipico/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/rp2040/1.9.3/variants/rpipico/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/rp2040/2.7.2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/rp2040/2.7.2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.7.2/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.7.2/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.8.0/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.8.0/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.0.0/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.0.0/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.0.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.0.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.1.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.1.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.3.0/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.3.0/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.4.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.4.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/sam/1.6.12/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/sam/1.6.12/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.10/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.11/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.11/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.12/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.12/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.13/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.13/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.6/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.6/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.7/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.7/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/cores/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/cores/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.9/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.9/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/arduino/hardware/samd/1.8.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/hardware/teensy/avr/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.cpp -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.cpp -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.cpp -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.0.10/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.0.10/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.0.8/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.0.8/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.0/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.0/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.1/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.1/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.2/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.2/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.3/cores/ambd/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.3/cores/ambd/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.4/cores/ambd/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.4/cores/ambd/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.2.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.2.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.2.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.2.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.3.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.3.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.3.1/cores/rp2040/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.3.1/cores/rp2040/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.3.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.3.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.4.0/cores/rp2040/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.4.0/cores/rp2040/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.4.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.4.0/platform.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/README.md -------------------------------------------------------------------------------- /TrustAnchors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/TrustAnchors.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/AWS_IoT/AWS_IoT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AWS_IoT/AWS_IoT.ino -------------------------------------------------------------------------------- /examples/AWS_IoT/AWS_Root_CA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AWS_IoT/AWS_Root_CA.h -------------------------------------------------------------------------------- /examples/AWS_IoT/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AWS_IoT/defines.h -------------------------------------------------------------------------------- /examples/AdvancedWebServer/AdvancedWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer/AdvancedWebServer.ino -------------------------------------------------------------------------------- /examples/AdvancedWebServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer/defines.h -------------------------------------------------------------------------------- /examples/AdvancedWebServer_NativeEthernet/AdvancedWebServer_NativeEthernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer_NativeEthernet/AdvancedWebServer_NativeEthernet.ino -------------------------------------------------------------------------------- /examples/AdvancedWebServer_NativeEthernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer_NativeEthernet/defines.h -------------------------------------------------------------------------------- /examples/AdvancedWebServer_RP2040_SPI1/AdvancedWebServer_RP2040_SPI1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer_RP2040_SPI1/AdvancedWebServer_RP2040_SPI1.ino -------------------------------------------------------------------------------- /examples/AdvancedWebServer_RP2040_SPI1/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer_RP2040_SPI1/defines.h -------------------------------------------------------------------------------- /examples/AdvancedWebServer_Teensy4x_SPI1/AdvancedWebServer_Teensy4x_SPI1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer_Teensy4x_SPI1/AdvancedWebServer_Teensy4x_SPI1.ino -------------------------------------------------------------------------------- /examples/AdvancedWebServer_Teensy4x_SPI1/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/AdvancedWebServer_Teensy4x_SPI1/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/BasicAuthGet/BasicAuthGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/BasicAuthGet/BasicAuthGet.ino -------------------------------------------------------------------------------- /examples/HTTPClient/BasicAuthGet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/BasicAuthGet/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/CustomHeader/CustomHeader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/CustomHeader/CustomHeader.ino -------------------------------------------------------------------------------- /examples/HTTPClient/CustomHeader/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/CustomHeader/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/DweetGet/DweetGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/DweetGet/DweetGet.ino -------------------------------------------------------------------------------- /examples/HTTPClient/DweetGet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/DweetGet/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/DweetPost/DweetPost.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/DweetPost/DweetPost.ino -------------------------------------------------------------------------------- /examples/HTTPClient/DweetPost/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/DweetPost/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/HueBlink/HueBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/HueBlink/HueBlink.ino -------------------------------------------------------------------------------- /examples/HTTPClient/HueBlink/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/HueBlink/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/PostWithHeaders/PostWithHeaders.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/PostWithHeaders/PostWithHeaders.ino -------------------------------------------------------------------------------- /examples/HTTPClient/PostWithHeaders/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/PostWithHeaders/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleDelete/SimpleDelete.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleDelete/SimpleDelete.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleDelete/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleDelete/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleGet/SimpleGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleGet/SimpleGet.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleGet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleGet/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleHTTPExample/SimpleHTTPExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleHTTPExample/SimpleHTTPExample.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleHTTPExample/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleHTTPExample/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePost/SimplePost.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimplePost/SimplePost.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePost/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimplePost/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePut/SimplePut.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimplePut/SimplePut.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePut/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimplePut/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleWebSocket/SimpleWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleWebSocket/SimpleWebSocket.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleWebSocket/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/SimpleWebSocket/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/node_test_server/getPostPutDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/node_test_server/getPostPutDelete.js -------------------------------------------------------------------------------- /examples/HTTPClient/node_test_server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HTTPClient/node_test_server/package.json -------------------------------------------------------------------------------- /examples/HelloServer/HelloServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HelloServer/HelloServer.ino -------------------------------------------------------------------------------- /examples/HelloServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HelloServer/defines.h -------------------------------------------------------------------------------- /examples/HelloServer2/HelloServer2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HelloServer2/HelloServer2.ino -------------------------------------------------------------------------------- /examples/HelloServer2/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HelloServer2/defines.h -------------------------------------------------------------------------------- /examples/HttpBasicAuth/HttpBasicAuth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HttpBasicAuth/HttpBasicAuth.ino -------------------------------------------------------------------------------- /examples/HttpBasicAuth/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/HttpBasicAuth/defines.h -------------------------------------------------------------------------------- /examples/MQTTClient_Auth/MQTTClient_Auth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_Auth/MQTTClient_Auth.ino -------------------------------------------------------------------------------- /examples/MQTTClient_Auth/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_Auth/defines.h -------------------------------------------------------------------------------- /examples/MQTTClient_Basic/MQTTClient_Basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_Basic/MQTTClient_Basic.ino -------------------------------------------------------------------------------- /examples/MQTTClient_Basic/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_Basic/defines.h -------------------------------------------------------------------------------- /examples/MQTTClient_SSL/MQTTClient_SSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL/MQTTClient_SSL.ino -------------------------------------------------------------------------------- /examples/MQTTClient_SSL/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL/certificates.h -------------------------------------------------------------------------------- /examples/MQTTClient_SSL/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL/defines.h -------------------------------------------------------------------------------- /examples/MQTTClient_SSL_Auth/MQTTClient_SSL_Auth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL_Auth/MQTTClient_SSL_Auth.ino -------------------------------------------------------------------------------- /examples/MQTTClient_SSL_Auth/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL_Auth/certificates.h -------------------------------------------------------------------------------- /examples/MQTTClient_SSL_Auth/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL_Auth/defines.h -------------------------------------------------------------------------------- /examples/MQTTClient_SSL_Complex/MQTTClient_SSL_Complex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL_Complex/MQTTClient_SSL_Complex.ino -------------------------------------------------------------------------------- /examples/MQTTClient_SSL_Complex/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL_Complex/certificates.h -------------------------------------------------------------------------------- /examples/MQTTClient_SSL_Complex/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTClient_SSL_Complex/defines.h -------------------------------------------------------------------------------- /examples/MQTTS_ThingStream/MQTTS_ThingStream.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTS_ThingStream/MQTTS_ThingStream.ino -------------------------------------------------------------------------------- /examples/MQTTS_ThingStream/broker.emqx.io-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTS_ThingStream/broker.emqx.io-ca.crt -------------------------------------------------------------------------------- /examples/MQTTS_ThingStream/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTS_ThingStream/certificates.h -------------------------------------------------------------------------------- /examples/MQTTS_ThingStream/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTTS_ThingStream/defines.h -------------------------------------------------------------------------------- /examples/MQTT_ThingStream/MQTT_ThingStream.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTT_ThingStream/MQTT_ThingStream.ino -------------------------------------------------------------------------------- /examples/MQTT_ThingStream/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/MQTT_ThingStream/defines.h -------------------------------------------------------------------------------- /examples/PostServer/PostServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/PostServer/PostServer.ino -------------------------------------------------------------------------------- /examples/PostServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/PostServer/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/AdvancedWebServer_QNEthernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/AdvancedWebServer_QNEthernet/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL/MQTTClient_SSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL/MQTTClient_SSL.ino -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL/certificates.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL_Auth/MQTTClient_SSL_Auth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL_Auth/MQTTClient_SSL_Auth.ino -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL_Auth/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL_Auth/certificates.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL_Auth/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL_Auth/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL_Complex/MQTTClient_SSL_Complex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL_Complex/MQTTClient_SSL_Complex.ino -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL_Complex/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL_Complex/certificates.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTClient_SSL_Complex/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTClient_SSL_Complex/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTS_ThingStream/MQTTS_ThingStream.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTS_ThingStream/MQTTS_ThingStream.ino -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTS_ThingStream/broker.emqx.io-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTS_ThingStream/broker.emqx.io-ca.crt -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTS_ThingStream/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTS_ThingStream/certificates.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTTS_ThingStream/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/MQTTS_ThingStream/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/WebClientMulti_SSL/WebClientMulti_SSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/WebClientMulti_SSL/WebClientMulti_SSL.ino -------------------------------------------------------------------------------- /examples/QNEthernet/WebClientMulti_SSL/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/WebClientMulti_SSL/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/WebClientMulti_SSL/trustanchors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/WebClientMulti_SSL/trustanchors.h -------------------------------------------------------------------------------- /examples/QNEthernet/WebClient_SSL/WebClient_SSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/WebClient_SSL/WebClient_SSL.ino -------------------------------------------------------------------------------- /examples/QNEthernet/WebClient_SSL/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/WebClient_SSL/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/WebClient_SSL/trust_anchors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/QNEthernet/WebClient_SSL/trust_anchors.h -------------------------------------------------------------------------------- /examples/SimpleAuthentication/SimpleAuthentication.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/SimpleAuthentication/SimpleAuthentication.ino -------------------------------------------------------------------------------- /examples/SimpleAuthentication/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/SimpleAuthentication/defines.h -------------------------------------------------------------------------------- /examples/UdpNTPClient/UdpNTPClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/UdpNTPClient/UdpNTPClient.ino -------------------------------------------------------------------------------- /examples/UdpNTPClient/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/UdpNTPClient/defines.h -------------------------------------------------------------------------------- /examples/UdpSendReceive/UdpSendReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/UdpSendReceive/UdpSendReceive.ino -------------------------------------------------------------------------------- /examples/UdpSendReceive/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/UdpSendReceive/defines.h -------------------------------------------------------------------------------- /examples/WebClient/WebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClient/WebClient.ino -------------------------------------------------------------------------------- /examples/WebClient/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClient/defines.h -------------------------------------------------------------------------------- /examples/WebClientMulti_SSL/WebClientMulti_SSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientMulti_SSL/WebClientMulti_SSL.ino -------------------------------------------------------------------------------- /examples/WebClientMulti_SSL/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientMulti_SSL/defines.h -------------------------------------------------------------------------------- /examples/WebClientMulti_SSL/trustanchors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientMulti_SSL/trustanchors.h -------------------------------------------------------------------------------- /examples/WebClientMulti_SSL_NativeEthernet/WebClientMulti_SSL_NativeEthernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientMulti_SSL_NativeEthernet/WebClientMulti_SSL_NativeEthernet.ino -------------------------------------------------------------------------------- /examples/WebClientMulti_SSL_NativeEthernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientMulti_SSL_NativeEthernet/defines.h -------------------------------------------------------------------------------- /examples/WebClientMulti_SSL_NativeEthernet/trustanchors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientMulti_SSL_NativeEthernet/trustanchors.h -------------------------------------------------------------------------------- /examples/WebClientRepeating/WebClientRepeating.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientRepeating/WebClientRepeating.ino -------------------------------------------------------------------------------- /examples/WebClientRepeating/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientRepeating/defines.h -------------------------------------------------------------------------------- /examples/WebClientRepeating_ESP/WebClientRepeating_ESP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientRepeating_ESP/WebClientRepeating_ESP.ino -------------------------------------------------------------------------------- /examples/WebClientRepeating_ESP/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClientRepeating_ESP/defines.h -------------------------------------------------------------------------------- /examples/WebClient_ESP/WebClient_ESP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClient_ESP/WebClient_ESP.ino -------------------------------------------------------------------------------- /examples/WebClient_ESP/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClient_ESP/defines.h -------------------------------------------------------------------------------- /examples/WebClient_SSL/WebClient_SSL.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClient_SSL/WebClient_SSL.ino -------------------------------------------------------------------------------- /examples/WebClient_SSL/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClient_SSL/defines.h -------------------------------------------------------------------------------- /examples/WebClient_SSL/trust_anchors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebClient_SSL/trust_anchors.h -------------------------------------------------------------------------------- /examples/WebServer/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebServer/WebServer.ino -------------------------------------------------------------------------------- /examples/WebServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/WebServer/defines.h -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/multiFileProject/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/multiFileProject/multiFileProject.h -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/examples/multiFileProject/multiFileProject.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/library.properties -------------------------------------------------------------------------------- /pics/AdvancedWebServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_ESP32_SPI2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_ESP32_SPI2.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_Mbed_RPi_Pico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_Mbed_RPi_Pico.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_Mbed_RPi_Pico_SPI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_Mbed_RPi_Pico_SPI1.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_PortentaH7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_PortentaH7.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_QNEthernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_QNEthernet.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_RPi_Pico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_RPi_Pico.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_RPi_Pico_SPI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_RPi_Pico_SPI1.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_Teensy41_SPI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/AdvancedWebServer_Teensy41_SPI1.png -------------------------------------------------------------------------------- /pics/Teensy41_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/pics/Teensy41_pinout.png -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/EthernetHttpClient_SSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/EthernetHttpClient_SSL.h -------------------------------------------------------------------------------- /src/EthernetWebServer_SSL-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/EthernetWebServer_SSL-impl.h -------------------------------------------------------------------------------- /src/EthernetWebServer_SSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/EthernetWebServer_SSL.h -------------------------------------------------------------------------------- /src/EthernetWebServer_SSL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/EthernetWebServer_SSL.hpp -------------------------------------------------------------------------------- /src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp -------------------------------------------------------------------------------- /src/Ethernet_HTTPClient/Ethernet_HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/Ethernet_HTTPClient/Ethernet_HttpClient.h -------------------------------------------------------------------------------- /src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp -------------------------------------------------------------------------------- /src/Ethernet_HTTPClient/Ethernet_URLEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/Ethernet_HTTPClient/Ethernet_URLEncoder.h -------------------------------------------------------------------------------- /src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp -------------------------------------------------------------------------------- /src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h -------------------------------------------------------------------------------- /src/Parsing_SSL-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/Parsing_SSL-impl.h -------------------------------------------------------------------------------- /src/SSLClient/SSLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/SSLClient.h -------------------------------------------------------------------------------- /src/SSLClient/SSLClientParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/SSLClientParameters.cpp -------------------------------------------------------------------------------- /src/SSLClient/SSLClientParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/SSLClientParameters.h -------------------------------------------------------------------------------- /src/SSLClient/SSLClient_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/SSLClient_Impl.h -------------------------------------------------------------------------------- /src/SSLClient/SSLSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/SSLSession.h -------------------------------------------------------------------------------- /src/SSLClient/TLS12_only_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/TLS12_only_profile.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/aead/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/aead/ccm.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/aead/eax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/aead/eax.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/aead/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/aead/gcm.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/ccopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/ccopy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/dec16be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/dec16be.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/dec16le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/dec16le.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/dec32be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/dec32be.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/dec32le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/dec32le.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/dec64be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/dec64be.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/dec64le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/dec64le.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/enc16be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/enc16be.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/enc16le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/enc16le.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/enc32be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/enc32be.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/enc32le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/enc32le.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/enc64be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/enc64be.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/enc64le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/enc64le.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/pemdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/pemdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/pemdec.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/pemdec.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/codec/pemenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/codec/pemenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_all_m15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_all_m15.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_all_m31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_all_m31.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_c25519_i15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_c25519_i15.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_c25519_i31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_c25519_i31.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_c25519_m15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_c25519_m15.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_c25519_m31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_c25519_m31.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_c25519_m62.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_c25519_m62.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_c25519_m64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_c25519_m64.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_curve25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_curve25519.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_default.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_keygen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_p256_m15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_p256_m15.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_p256_m31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_p256_m31.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_p256_m62.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_p256_m62.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_p256_m64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_p256_m64.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_prime_i15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_prime_i15.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_prime_i31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_prime_i31.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_pubkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_pubkey.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_secp256r1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_secp256r1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_secp384r1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_secp384r1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ec_secp521r1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ec_secp521r1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_atr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_atr.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_default_sign_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_default_sign_asn1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_default_sign_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_default_sign_raw.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_default_vrfy_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_default_vrfy_asn1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_default_vrfy_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_default_vrfy_raw.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i15_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i15_bits.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i15_sign_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i15_sign_asn1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i15_sign_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i15_sign_raw.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i15_vrfy_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i15_vrfy_asn1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i15_vrfy_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i15_vrfy_raw.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i31_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i31_bits.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i31_sign_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i31_sign_asn1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i31_sign_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i31_sign_raw.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i31_vrfy_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i31_vrfy_asn1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_i31_vrfy_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_i31_vrfy_raw.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ec/ecdsa_rta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ec/ecdsa_rta.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/dig_oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/dig_oid.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/dig_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/dig_size.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/ghash_ctmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/ghash_ctmul.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/ghash_ctmul32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/ghash_ctmul32.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/ghash_ctmul64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/ghash_ctmul64.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/ghash_pclmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/ghash_pclmul.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/ghash_pwr8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/ghash_pwr8.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/md5.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/md5sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/md5sha1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/mgf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/mgf1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/multihash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/multihash.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/sha1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/sha2big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/sha2big.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/hash/sha2small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/hash/sha2small.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_add.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_bitlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_bitlen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_decmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_decmod.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_decode.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_decred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_decred.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_encode.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_fmont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_fmont.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_iszero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_iszero.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_moddiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_moddiv.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_modpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_modpow.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_modpow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_modpow2.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_montmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_montmul.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_mulacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_mulacc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_muladd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_muladd.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_ninv15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_ninv15.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_reduce.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_rshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_rshift.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_sub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i15_tmont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i15_tmont.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_add.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_bitlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_bitlen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_decmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_decmod.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_decode.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_decred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_decred.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_encode.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_fmont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_fmont.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_iszero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_iszero.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_moddiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_moddiv.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_modpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_modpow.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_modpow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_modpow2.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_montmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_montmul.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_mulacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_mulacc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_muladd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_muladd.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_ninv31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_ninv31.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_reduce.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_rshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_rshift.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_sub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i31_tmont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i31_tmont.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_add.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_bitlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_bitlen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_decmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_decmod.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_decode.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_decred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_decred.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_div32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_div32.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_encode.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_fmont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_fmont.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_iszero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_iszero.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_modpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_modpow.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_montmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_montmul.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_mulacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_mulacc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_muladd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_muladd.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_ninv32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_ninv32.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_reduce.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_sub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i32_tmont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i32_tmont.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/int/i62_modpow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/int/i62_modpow2.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/kdf/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/kdf/hkdf.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/kdf/shake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/kdf/shake.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/mac/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/mac/hmac.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/mac/hmac_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/mac/hmac_ct.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rand/aesctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rand/aesctr_drbg.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rand/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rand/hmac_drbg.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rand/sysrng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rand/sysrng.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_keygen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_modulus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_modulus.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_oaep_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_oaep_decrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_oaep_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_oaep_encrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_pkcs1_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_pkcs1_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_pkcs1_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_pkcs1_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_priv.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_privexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_privexp.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_pss_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_pss_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_pss_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_pss_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_pub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_default_pubexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_default_pubexp.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_keygen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_modulus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_modulus.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_oaep_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_oaep_decrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_oaep_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_oaep_encrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_pkcs1_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_pkcs1_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_pkcs1_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_pkcs1_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_priv.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_privexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_privexp.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_pss_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_pss_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_pss_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_pss_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_pub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i15_pubexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i15_pubexp.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_keygen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_keygen_inner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_keygen_inner.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_modulus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_modulus.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_oaep_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_oaep_decrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_oaep_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_oaep_encrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_pkcs1_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_pkcs1_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_pkcs1_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_pkcs1_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_priv.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_privexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_privexp.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_pss_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_pss_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_pss_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_pss_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_pub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i31_pubexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i31_pubexp.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_oaep_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_oaep_decrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_oaep_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_oaep_encrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_pkcs1_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_pkcs1_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_pkcs1_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_pkcs1_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_priv.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_pss_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_pss_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_pss_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_pss_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i32_pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i32_pub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_keygen.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_oaep_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_oaep_decrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_oaep_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_oaep_encrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_pkcs1_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_pkcs1_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_pkcs1_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_pkcs1_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_priv.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_pss_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_pss_sign.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_pss_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_pss_vrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_i62_pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_i62_pub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_oaep_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_oaep_pad.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_oaep_unpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_oaep_unpad.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_pkcs1_sig_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_pkcs1_sig_pad.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_pkcs1_sig_unpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_pkcs1_sig_unpad.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_pss_sig_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_pss_sig_pad.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_pss_sig_unpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_pss_sig_unpad.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/rsa/rsa_ssl_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/rsa/rsa_ssl_decrypt.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/settings.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/prf.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/prf_md5sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/prf_md5sha1.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/prf_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/prf_sha256.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/prf_sha384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/prf_sha384.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_ccert_single_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_ccert_single_ec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_ccert_single_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_ccert_single_rsa.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_client.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_client_default_rsapub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_client_default_rsapub.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_client_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_client_full.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_aescbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_aescbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_aesccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_aesccm.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_aesgcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_aesgcm.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_chapol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_chapol.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_descbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_descbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_ec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_ecdsa.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_engine_default_rsavrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_engine_default_rsavrfy.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_hashes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_hashes.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_hs_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_hs_client.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_hs_client.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_hs_client.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_hs_common.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_hs_common.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_hs_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_hs_server.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_hs_server.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_hs_server.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_io.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_keyexport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_keyexport.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_lru.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_rec_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_rec_cbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_rec_ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_rec_ccm.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_rec_chapol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_rec_chapol.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_rec_gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_rec_gcm.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_scert_single_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_scert_single_ec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_scert_single_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_scert_single_rsa.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_full_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_full_ec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_full_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_full_rsa.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_mine2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_mine2c.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_mine2g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_mine2g.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_minf2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_minf2c.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_minf2g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_minf2g.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_minr2g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_minr2g.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_minu2g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_minu2g.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/ssl/ssl_server_minv2g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/ssl/ssl_server_minv2g.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_big_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_big_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_big_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_big_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_big_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_big_ctr.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_big_ctrcbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_big_ctrcbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_big_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_big_dec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_big_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_big_enc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_common.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct64.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct64_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct64_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct64_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct64_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct64_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct64_ctr.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct64_ctrcbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct64_ctrcbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct64_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct64_dec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct64_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct64_enc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct_ctr.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct_ctrcbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct_ctrcbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct_dec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_ct_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_ct_enc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_pwr8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_pwr8.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_pwr8_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_pwr8_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_pwr8_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_pwr8_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_pwr8_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_pwr8_ctr.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_pwr8_ctrcbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_pwr8_ctrcbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_small_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_small_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_small_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_small_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_small_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_small_ctr.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_small_ctrcbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_small_ctrcbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_small_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_small_dec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_small_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_small_enc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_x86ni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_x86ni.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_x86ni_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_x86ni_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_x86ni_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_x86ni_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_x86ni_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_x86ni_ctr.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/aes_x86ni_ctrcbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/aes_x86ni_ctrcbc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/chacha20_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/chacha20_ct.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/chacha20_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/chacha20_sse2.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/des_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/des_ct.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/des_ct_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/des_ct_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/des_ct_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/des_ct_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/des_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/des_support.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/des_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/des_tab.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/des_tab_cbcdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/des_tab_cbcdec.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/des_tab_cbcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/des_tab_cbcenc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/poly1305_ctmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/poly1305_ctmul.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/poly1305_ctmul32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/poly1305_ctmul32.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/poly1305_ctmulq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/poly1305_ctmulq.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/symcipher/poly1305_i15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/symcipher/poly1305_i15.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/asn1.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/asn1.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/asn1enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/asn1enc.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/encode_ec_pk8der.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/encode_ec_pk8der.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/encode_ec_rawder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/encode_ec_rawder.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/encode_rsa_pk8der.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/encode_rsa_pk8der.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/encode_rsa_rawder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/encode_rsa_rawder.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/skey_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/skey_decoder.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/skey_decoder.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/skey_decoder.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/x509_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/x509_decoder.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/x509_decoder.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/x509_decoder.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/x509_knownkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/x509_knownkey.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/x509_minimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/x509_minimal.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/x509_minimal.t0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/x509_minimal.t0 -------------------------------------------------------------------------------- /src/SSLClient/bearssl/src/x509/x509_minimal_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl/src/x509/x509_minimal_full.c -------------------------------------------------------------------------------- /src/SSLClient/bearssl_aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_aead.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_block.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_ec.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_hash.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_hmac.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_kdf.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_pem.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_prf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_prf.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_rand.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_rsa.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_ssl.h -------------------------------------------------------------------------------- /src/SSLClient/bearssl_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/bearssl_x509.h -------------------------------------------------------------------------------- /src/SSLClient/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/config.h -------------------------------------------------------------------------------- /src/SSLClient/ec_prime_fast_256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/ec_prime_fast_256.c -------------------------------------------------------------------------------- /src/SSLClient/inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/inner.h -------------------------------------------------------------------------------- /src/SSLClient/time_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/SSLClient/time_macros.h -------------------------------------------------------------------------------- /src/detail/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/detail/Debug.h -------------------------------------------------------------------------------- /src/detail/ESP_RequestHandlersImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/detail/ESP_RequestHandlersImpl.h -------------------------------------------------------------------------------- /src/detail/RequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/detail/RequestHandler.h -------------------------------------------------------------------------------- /src/detail/RequestHandlersImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/detail/RequestHandlersImpl.h -------------------------------------------------------------------------------- /src/detail/esp_detail/mimetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/detail/esp_detail/mimetable.cpp -------------------------------------------------------------------------------- /src/detail/esp_detail/mimetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/detail/esp_detail/mimetable.h -------------------------------------------------------------------------------- /src/detail/mimetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/detail/mimetable.h -------------------------------------------------------------------------------- /src/inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/inner.h -------------------------------------------------------------------------------- /src/libb64/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/libb64/base64.cpp -------------------------------------------------------------------------------- /src/libb64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/libb64/base64.h -------------------------------------------------------------------------------- /src/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/libb64/cdecode.c -------------------------------------------------------------------------------- /src/libb64/cdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/libb64/cdecode.h -------------------------------------------------------------------------------- /src/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/libb64/cencode.c -------------------------------------------------------------------------------- /src/libb64/cencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/libb64/cencode.h -------------------------------------------------------------------------------- /src/time_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/src/time_macros.h -------------------------------------------------------------------------------- /tools/pycert_bearssl/cert_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/tools/pycert_bearssl/cert_util.py -------------------------------------------------------------------------------- /tools/pycert_bearssl/pycert_bearssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/tools/pycert_bearssl/pycert_bearssl.py -------------------------------------------------------------------------------- /utils/astyle_library.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/utils/astyle_library.conf -------------------------------------------------------------------------------- /utils/restyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/EthernetWebServer_SSL/HEAD/utils/restyle.sh --------------------------------------------------------------------------------