try to add tahoma functionality--> RAM overflow -->removed Tahome for now

This commit is contained in:
2025-05-13 19:21:20 +02:00
parent f74fde8d82
commit df516837cc
614 changed files with 77666 additions and 288 deletions
@@ -0,0 +1,23 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright 2016-2025 Hristo Gochkov, Mathieu Carbou, Emil Muratov
#ifndef WEB_AUTHENTICATION_H_
#define WEB_AUTHENTICATION_H_
#include "Arduino.h"
bool checkBasicAuthentication(const char *header, const char *username, const char *password);
bool checkDigestAuthentication(
const char *header, const char *method, const char *username, const char *password, const char *realm, bool passwordIsHash, const char *nonce,
const char *opaque, const char *uri
);
// for storing hashed versions on the device that can be authenticated against
String generateDigestHash(const char *username, const char *password, const char *realm);
String generateBasicHash(const char *username, const char *password);
String genRandomMD5();
#endif