Lines Matching refs:authentication
5 For most common usage of authentication in gRPC Python, please see our
29 This example focuses on extending gRPC authentication mechanism:
30 1) Customize authentication plugin;
36 Unlike TLS/SSL based authentication, the authentication extension in gRPC Python
41 gRPC Python provides a way to intercept an RPC and append authentication related
44 Those in need of a custom authentication method may simply provide a concrete
49 """A specification for custom authentication."""
52 """Implements authentication by passing metadata to a callback.
76 metadata_plugin: An AuthMetadataPlugin to use for authentication.
114 ## Token-based authentication
116 Instead of `AuthMetadataPlugin`, you can also use token-based authentication