File: server_types.h

package info (click to toggle)
libisds 0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,348 kB
  • ctags: 1,659
  • sloc: ansic: 24,898; sh: 11,772; makefile: 393; xml: 375; sed: 16
file content (10 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#ifndef __ISDS_SERVER_TYPES_H
#define __ISDS_SERVER_TYPES_H

/* One-time password authentication method */
enum auth_otp_method {
    AUTH_OTP_HMAC = 0,  /* HMAC-based OTP */
    AUTH_OTP_TIME       /* Time-based OTP */
};

#endif