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