1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! SSPI/GSSAPI negotiation trait for integrated authentication.
//!
//! This trait provides a common interface for both Windows SSPI (`SspiAuth`)
//! and Unix GSSAPI (`IntegratedAuth`) authentication providers, enabling
//! the client login flow to handle SSPI token exchange generically.
use crateAuthError;
/// Trait for SSPI/GSSAPI token negotiation during login.
///
/// Both `SspiAuth` (Windows SSPI) and `IntegratedAuth` (Unix GSSAPI)
/// implement this trait, allowing the client connection code to drive
/// the multi-step authentication handshake without knowing which
/// underlying mechanism is in use.