/* * Copyright (C) 1996-2023 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* * Digest helper API details. */ #ifndef SQUID_DIGEST_COMMON_H_ #define SQUID_DIGEST_COMMON_H_ #include "hash.h" #include "rfc2617.h" #include "util.h" #include #include #include #if HAVE_UNISTD_H #include #endif #if HAVE_STRINGS_H #include #endif #if HAVE_SYS_TYPES_H #include #endif #if HAVE_SYS_STAT_H #include #endif #if HAVE_CRYPT_H #include #endif typedef struct _request_data { int channelId; char *user; char *realm; char *password; HASHHEX HHA1; int parsed; int error; } RequestData; /* to use a backend, include your backend.h file * and define thusly: * #define ProcessArguments(A, B) MyHandleArguments(A,B) * #define GetHHA1(A) MyGetHHA1(A) */ typedef void HandleArguments(int, char **); typedef void HHA1Creator(RequestData *); #endif /* SQUID_DIGEST_COMMON_H_ */