pam-eid/auth.h

17 lines
324 B
C
Raw Permalink Normal View History

2024-10-29 13:39:15 +01:00
/*
This software is licensed under GPL-3, as shown in the file LICENSE
Author: Linux Gruppe IRB
Copyright: Linux Gruppe IRB, 2024
*/
#ifndef _AUTH_H
#define _AUTH_H
#include <security/pam_modules.h>
#include <curl/curl.h>
#include <pwd.h>
int auth(pam_handle_t *pamh, struct passwd *passwd, CURL *curl);
#endif