Example #1
0
 static extern Status rsid_detect_spoof(IntPtr rsid_authenticator, ref AuthArgs authArgs);
Example #2
0
 static extern Status rsid_authenticate_loop(IntPtr rsid_authenticator, ref AuthArgs authArgs);
Example #3
0
 public Status AuthenticateLoop(AuthArgs args)
 {
     _authArgs = args;
     return(rsid_authenticate_loop(_handle, ref args));
 }
Example #4
0
 public Status DetectSpoof(AuthArgs args)
 {
     _authArgs = args;
     return(rsid_detect_spoof(_handle, ref args));
 }
Example #5
0
 static extern AuthStatus rsid_authenticate(IntPtr rsid_authenticator, ref AuthArgs authArgs);
Example #6
0
 public AuthStatus Authenticate(AuthArgs args)
 {
     _authArgs = args;
     return(rsid_authenticate(_handle, ref args));
 }