8#ifndef CSRF_PROTECTION_H
9#define CSRF_PROTECTION_H
12#include "esp32_stubs.h"
13#elif defined(ESP32) || defined(ARDUINO)
17#include "esp32_stubs.h"
bool checkCSRFSafety()
Definition csrf_protection.cpp:104
bool validateCSRFToken(const String &token)
Definition csrf_protection.cpp:60
String getCSRFHiddenField()
Definition csrf_protection.cpp:93
String generateCSRFToken()
Definition csrf_protection.cpp:31
void initCSRFProtection()
Definition csrf_protection.cpp:172
String methodToString(HTTPMethod method)
Definition csrf_protection.cpp:145