oath_authenticate_usersfile ( char const* usersfile, char const* username, char const* otp, size_t window, char const* passwd, long* last_otp )
6th parameter 'last_otp' (pointer) has base type 'time_t'.
oath_totp_generate ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, unsigned int digits, char* output_otp )
3rd parameter 'now' is of type 'time_t'.
oath_totp_generate2 ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, unsigned int digits, int flags, char* output_otp )
3rd parameter 'now' is of type 'time_t'.
oath_totp_validate ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, size_t window, char const* otp )
3rd parameter 'now' is of type 'time_t'.
oath_totp_validate2 ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, size_t window, int* otp_pos, char const* otp )
3rd parameter 'now' is of type 'time_t'.
oath_totp_validate2_callback ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, unsigned int digits, size_t window, int* otp_pos, oath_validate_strcmp_function strcmp_otp, void* strcmp_handle )
3rd parameter 'now' is of type 'time_t'.
oath_totp_validate3 ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, size_t window, int* otp_pos, uint64_t* otp_counter, char const* otp )
3rd parameter 'now' is of type 'time_t'.
oath_totp_validate3_callback ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, unsigned int digits, size_t window, int* otp_pos, uint64_t* otp_counter, oath_validate_strcmp_function strcmp_otp, void* strcmp_handle )
3rd parameter 'now' is of type 'time_t'.
oath_totp_validate4 ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, size_t window, int* otp_pos, uint64_t* otp_counter, int flags, char const* otp )
3rd parameter 'now' is of type 'time_t'.
oath_totp_validate4_callback ( char const* secret, size_t secret_length, long now, unsigned int time_step_size, long start_offset, unsigned int digits, size_t window, int* otp_pos, uint64_t* otp_counter, int flags, oath_validate_strcmp_function strcmp_otp, void* strcmp_handle )
3rd parameter 'now' is of type 'time_t'.
...