Greenbone Vulnerability Management Libraries  22.8.0
authutils.h
Go to the documentation of this file.
1 /* SPDX-FileCopyrightText: 2009-2023 Greenbone AG
2  *
3  * SPDX-License-Identifier: GPL-2.0-or-later
4  */
5 
11 #ifndef _GVM_AUTHUTILS_H
12 #define _GVM_AUTHUTILS_H
13 
14 #include <glib.h>
15 
22 {
27 };
28 
32 
33 const gchar *auth_method_name (auth_method_t);
34 
35 int
36 gvm_auth_init (void);
37 
38 int
39 gvm_authenticate_classic (const gchar *, const gchar *, const gchar *);
40 
41 gchar *
42 get_md5_hash_from_string (const gchar *);
43 
44 gchar *
45 get_password_hashes (const gchar *);
46 
47 gchar *
48 digest_hex (int, const guchar *);
49 
50 int
52 
53 int
55 
56 #endif /* not _GVM_AUTHUTILS_H */
gvm_auth_radius_enabled
int gvm_auth_radius_enabled(void)
Return whether libraries has been compiled with RADIUS support.
Definition: authutils.c:56
digest_hex
gchar * digest_hex(int, const guchar *)
Generate a hexadecimal representation of a message digest.
Definition: authutils.c:154
auth_method_name
const gchar * auth_method_name(auth_method_t)
Return name of auth_method_t.
Definition: authutils.c:76
AUTHENTICATION_METHOD_FILE
@ AUTHENTICATION_METHOD_FILE
Definition: authutils.h:23
auth_method_t
enum authentication_method auth_method_t
Type for the numerical representation of the supported authentication methods.
Definition: authutils.h:31
gvm_auth_init
int gvm_auth_init(void)
Initializes Gcrypt.
Definition: authutils.c:89
get_password_hashes
gchar * get_password_hashes(const gchar *)
Generate a pair of md5 hashes to be used in the "auth/hash" file for the user.
Definition: authutils.c:189
authentication_method
authentication_method
Numerical representation of the supported authentication methods. Beware to have it in sync with auth...
Definition: authutils.h:22
AUTHENTICATION_METHOD_LDAP_CONNECT
@ AUTHENTICATION_METHOD_LDAP_CONNECT
Definition: authutils.h:24
get_md5_hash_from_string
gchar * get_md5_hash_from_string(const gchar *)
Calculate the MD5 hash value for a given string.
Definition: authutils.c:228
gvm_auth_ldap_enabled
int gvm_auth_ldap_enabled(void)
Return whether libraries has been compiled with LDAP support.
Definition: authutils.c:41
AUTHENTICATION_METHOD_LAST
@ AUTHENTICATION_METHOD_LAST
Definition: authutils.h:26
AUTHENTICATION_METHOD_RADIUS_CONNECT
@ AUTHENTICATION_METHOD_RADIUS_CONNECT
Definition: authutils.h:25
gvm_authenticate_classic
int gvm_authenticate_classic(const gchar *, const gchar *, const gchar *)
Authenticate a credential pair against user file contents.
Definition: authutils.c:253