/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * soup-ntlm.h: Microsoft Windows NTLM authentication support * * Authors: * Dan Winship (danw@ximian.com) * * Copyright (C) 2001, Ximian, Inc. */ #ifndef NTLM_H #define NTLM_H 1 #include void soup_ntlm_lanmanager_hash (const char *password, guchar hash[21]); void soup_ntlm_nt_hash (const char *password, guchar hash[21]); char *soup_ntlm_request (void); gboolean soup_ntlm_parse_challenge (const char *challenge, char **nonce, char **default_domain); char *soup_ntlm_response (const char *nonce, const char *user, const char *password, const char *host, const char *domain); #endif /* NTLM_H */