static extern Status rsid_detect_spoof(IntPtr rsid_authenticator, ref AuthArgs authArgs);
static extern Status rsid_authenticate_loop(IntPtr rsid_authenticator, ref AuthArgs authArgs);
public Status AuthenticateLoop(AuthArgs args) { _authArgs = args; return(rsid_authenticate_loop(_handle, ref args)); }
public Status DetectSpoof(AuthArgs args) { _authArgs = args; return(rsid_detect_spoof(_handle, ref args)); }
static extern AuthStatus rsid_authenticate(IntPtr rsid_authenticator, ref AuthArgs authArgs);
public AuthStatus Authenticate(AuthArgs args) { _authArgs = args; return(rsid_authenticate(_handle, ref args)); }